Edit of asset "Steam API" Accepted

Old/Current New/Edit
Title Steam API
Description Steam Integration without rebuilding Godot.

- Supports Windows, Linux & MacOS(x86_64/arm64).
- Supports disabling the integration without needing to change code.
- Supports the following APIs:

# check is steam integration is working and enabled, useful if you publish to multiple stores
Steam.is_init()

# achievements
Steam.set_achievement("gator_god")
Steam.get_achievement("gator_god")
Steam.clear_achievement("gator_god")

# leaderboards
Steam.set_leaderboard_score("High Scores", 1000)
# Get the first 10 global high scores
var top_10_global_scores = yield(Steam.get_leaderboard_scores("High Scores", 0, 10), "done")
# Get just the current user's high score
var players_score = yield(Steam.get_leaderboard_scores("High Scores", 0, 0, Steam.LeaderboardDataRequest.GlobalAroundUser), "done")
# Get the current user's high score and the two scores infront and behind
var player_rivals_score = yield(Steam.get_leaderboard_scores("High Scores", -1, 1, Steam.LeaderboardDataRequest.GlobalAroundUser), "done")

# overlay
Steam.friends.connect("game_overlay_activated", self, "_on_game_overlay_activated")
Steam.friends.activate_game_overlay_to_web_page("https://steamcommunity.com/")
Steam.friends.activate_game_overlay_to_store(1435470, Steam.OverlayToStoreFlag.AddToCart)
Steam API using GDNative.
Supports the following for Windows, Linux & MacOS(x86_64/arm64):

# acheivements
Steam.set_achievement("gator_god")
Steam.get_achievement("gator_god")
Steam.clear_achievement("gator_god")

# leaderboards
Steam.set_leaderboard_score("High Scores", 1000)
var scores = yield(Steam.get_leaderboard_scores("High Scores", 0, 10), "done")

# overlay
Steam.activate_game_overlay_to_web_page("https://steamcommunity.com/")
Steam.activate_game_overlay_to_store(1435470, Steam.OverlayToStoreFlag.AddToCart)
Category Scripts
License MIT
Repository Provider GitHub
Repository Url https://github.com/samsface/godot-steam-api
Issues Url https://github.com/samsface/godot-steam-api/issues
Godot version Godot 3.5
Version String 1.3.1 0.1.1
Download Commit 743b413022e55309c6498b5143a25f8193217baf 85b0de5cd4fd6c27819abf70ca99080e7d9b6765
Download Url (Computed) https://github.com/samsface/godot-steam-api/archive/743b413022e55309c6498b5143a25f8193217baf.zip https://github.com/samsface/godot-steam-api/archive/85b0de5cd4fd6c27819abf70ca99080e7d9b6765.zip
Icon Url https://github.com/samsface/godot-steam-api/raw/master/icon.png
Preview Insert
Type video
Image/Video URL https://www.youtube.com/watch?v=5wAWXb0KtM0
Thumbnail