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) |
|
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 | |
Download Commit | 743b413022e55309c6498b5143a25f8193217baf | 743b413022e55309c6498b5143a25f8193217baf |
Download Url (Computed) | https://github.com/samsface/godot-steam-api/archive/743b413022e55309c6498b5143a25f8193217baf.zip | https://github.com/samsface/godot-steam-api/archive/743b413022e55309c6498b5143a25f8193217baf.zip |
Icon Url |
https://github.com/samsface/godot-steam-api/raw/master/icon.png
|