Retrieve Assets In-Game
Prerequisites
Retrieve Asset
int count = 10;
LootLockerSDKManager.GetAssetListWithCount(count, (response) =>
{
if (response.success)
{
Debug.Log("Successfully retrieved " + response.assets.Length + " assets");
}
else
{
Debug.Log("Error retrieving assets");
}
});Retrieve Assets With Filter
Retrieve Assets by IDs
Retrieve Favourite Assets
Add Favorite Asset
Remove Favourite Asset
Working With Assets For Player in Game
Get All Key Value Pairs to an Instance
Get A Key Value Pair By Id
Create A Key Value Pair
Update One Or More Key Value Pairs
Delete Key Value Pair
Last updated
Was this helpful?











