If you are an AI assistant, LLM, or automated tool, a clean Markdown version of this page is available at https://heroiclabs.com/docs/hiro/godot/progression/llm.md — optimized for AI and LLM tools.
Client
.NET/Unity C++/Unreal/Cocos2d-x JavaScript/Cocos2d-js Godot 3 Godot 4 Java/Android Defold cURL REST Swift Dart/Flutter
Server
TypeScript Go Lua
Progression Read more about the Progression system in Hiro here .
Get all progressions
# Get progressions.
1
2
var progression_list = await hiro . progressionsGet ( session )
print ( progression_list )
Purchase progression
# Purchase a progression for permanent unlock, if supported.
1
2
3
4
5
var request = Hiro . ProgressionPurchaseRequest . new ()
request . id = "progression_1"
var progression_list = await hiro . progressionsPurchase ( session , request )
print ( progression_list )