Game Progressions

Game progressions are all of the progressions defined for your game in the Web Console.

You can create as many progressions with as many tiers and rewards as your game needs, go wild!

This section shows you how to fetch progressions, tiers and rewards in your game.

Retrieving progressions

Retrieving a single progression using the progression key

string progressionKey = "mage";

LootLockerSDKManager.GetProgression(progressionKey, response =>
{
    if (!response.success) {
        Debug.Log("Failed: " + response.Error);
    }
    
    // Output the name of the fetched progression
    Debug.Log(response.name);
});

Retrieving all progressions

Retrieving all progressions using count

Count can be used to limit the number of entries returned.

Paginating through progressions

You can use "after" parameter to paginate if your game has many progressions.

Retrieving progression tiers

Retrieving all progression tiers

Retrieving all progression tiers using count

Count can be used to limit the number of entries returned.

Paginating through progression tiers

You can use "after" parameter to paginate if your progression has many tiers.

Last updated