Progression tracking scoped to a specific asset instance.
◆ AddPointsToAssetInstanceProgression()
Adds points to an asset instance progression.
- Parameters
-
| assetInstanceId | ID of the asset instance |
| progressionKey | Progression key |
| amount | Amount of points to add |
| onComplete | onComplete Action for handling the response of type LootLockerAssetInstanceProgressionWithRewards |
| forPlayerWithUlid | Optional : Execute the request for the specified player. If not supplied, the default player will be used. |
◆ DeleteAssetInstanceProgression()
| static void LootLocker.Requests.LootLockerSDKManager.DeleteAssetInstanceProgression |
( |
int |
assetInstanceId, |
|
|
string |
progressionKey, |
|
|
Action< LootLockerResponse > |
onComplete, |
|
|
string |
forPlayerWithUlid = null |
|
) |
| |
|
inlinestatic |
Deletes an asset instance progression.
- Parameters
-
| assetInstanceId | ID of the asset instance |
| progressionKey | Progression key |
| onComplete | onComplete Action for handling the response of type LootLockerResponse |
| forPlayerWithUlid | Optional : Execute the request for the specified player. If not supplied, the default player will be used. |
◆ GetAssetInstanceProgression()
| static void LootLocker.Requests.LootLockerSDKManager.GetAssetInstanceProgression |
( |
int |
assetInstanceId, |
|
|
string |
progressionKey, |
|
|
Action< LootLockerAssetInstanceProgressionResponse > |
onComplete, |
|
|
string |
forPlayerWithUlid = null |
|
) |
| |
|
inlinestatic |
Returns multiple progressions for an asset instance.
- Parameters
-
| assetInstanceId | ID of the asset instance |
| progressionKey | Progression key |
| onComplete | onComplete Action for handling the response of type LootLockerAssetInstanceProgression |
| forPlayerWithUlid | Optional : Execute the request for the specified player. If not supplied, the default player will be used. |
◆ GetAssetInstanceProgressions() [1/3]
Returns multiple progressions for an asset instance.
- Parameters
-
| assetInstanceId | ID of the asset instance |
| onComplete | onComplete Action for handling the response of type LootLockerPaginatedAssetInstanceProgressions |
| forPlayerWithUlid | Optional : Execute the request for the specified player. If not supplied, the default player will be used. |
◆ GetAssetInstanceProgressions() [2/3]
Returns multiple progressions for an asset instance.
- Parameters
-
| assetInstanceId | ID of the asset instance |
| count | Amount of entries to receive |
| onComplete | onComplete Action for handling the response of type LootLockerPaginatedAssetInstanceProgressions |
| forPlayerWithUlid | Optional : Execute the request for the specified player. If not supplied, the default player will be used. |
◆ GetAssetInstanceProgressions() [3/3]
Returns multiple progressions for an asset instance.
- Parameters
-
| assetInstanceId | ID of the asset instance |
| count | Amount of entries to receive |
| after | Used for pagination, ID of the asset instance progression from which the pagination starts from, use the next_cursor and previous_cursor values |
| onComplete | onComplete Action for handling the response of type LootLockerPaginatedAssetInstanceProgressions |
| forPlayerWithUlid | Optional : Execute the request for the specified player. If not supplied, the default player will be used. |
◆ ResetAssetInstanceProgression()
Resets an asset instance progression.
- Parameters
-
| assetInstanceId | ID of the asset instance |
| progressionKey | Progression key |
| onComplete | onComplete Action for handling the response of type LootLockerAssetInstanceProgressionWithRewards |
| forPlayerWithUlid | Optional : Execute the request for the specified player. If not supplied, the default player will be used. |
◆ SubtractPointsFromAssetInstanceProgression()
| static void LootLocker.Requests.LootLockerSDKManager.SubtractPointsFromAssetInstanceProgression |
( |
int |
assetInstanceId, |
|
|
string |
progressionKey, |
|
|
ulong |
amount, |
|
|
Action< LootLockerAssetInstanceProgressionWithRewardsResponse > |
onComplete, |
|
|
string |
forPlayerWithUlid = null |
|
) |
| |
|
inlinestatic |
Subtracts points from an asset instance progression.
- Parameters
-
| assetInstanceId | ID of the asset instance |
| progressionKey | Progression key |
| amount | Amount of points to subtract |
| onComplete | onComplete Action for handling the response of type LootLockerAssetInstanceProgressionWithRewards |
| forPlayerWithUlid | Optional : Execute the request for the specified player. If not supplied, the default player will be used. |
|
| static void | LootLocker.Requests.LootLockerSDKManager.GetAssetInstanceProgressions (int assetInstanceId, int count, string after, Action< LootLockerPaginatedAssetInstanceProgressionsResponse > onComplete, string forPlayerWithUlid=null) |
| | Returns multiple progressions for an asset instance.
|
| |
| static void | LootLocker.Requests.LootLockerSDKManager.GetAssetInstanceProgressions (int assetInstanceId, int count, Action< LootLockerPaginatedAssetInstanceProgressionsResponse > onComplete, string forPlayerWithUlid=null) |
| | Returns multiple progressions for an asset instance.
|
| |
| static void | LootLocker.Requests.LootLockerSDKManager.GetAssetInstanceProgressions (int assetInstanceId, Action< LootLockerPaginatedAssetInstanceProgressionsResponse > onComplete, string forPlayerWithUlid=null) |
| | Returns multiple progressions for an asset instance.
|
| |
| static void | LootLocker.Requests.LootLockerSDKManager.GetAssetInstanceProgression (int assetInstanceId, string progressionKey, Action< LootLockerAssetInstanceProgressionResponse > onComplete, string forPlayerWithUlid=null) |
| | Returns multiple progressions for an asset instance.
|
| |
| static void | LootLocker.Requests.LootLockerSDKManager.AddPointsToAssetInstanceProgression (int assetInstanceId, string progressionKey, ulong amount, Action< LootLockerAssetInstanceProgressionWithRewardsResponse > onComplete, string forPlayerWithUlid=null) |
| | Adds points to an asset instance progression.
|
| |
| static void | LootLocker.Requests.LootLockerSDKManager.SubtractPointsFromAssetInstanceProgression (int assetInstanceId, string progressionKey, ulong amount, Action< LootLockerAssetInstanceProgressionWithRewardsResponse > onComplete, string forPlayerWithUlid=null) |
| | Subtracts points from an asset instance progression.
|
| |
| static void | LootLocker.Requests.LootLockerSDKManager.ResetAssetInstanceProgression (int assetInstanceId, string progressionKey, Action< LootLockerAssetInstanceProgressionWithRewardsResponse > onComplete, string forPlayerWithUlid=null) |
| | Resets an asset instance progression.
|
| |
| static void | LootLocker.Requests.LootLockerSDKManager.DeleteAssetInstanceProgression (int assetInstanceId, string progressionKey, Action< LootLockerResponse > onComplete, string forPlayerWithUlid=null) |
| | Deletes an asset instance progression.
|
| |