Retrieve Resources in Game
In this guide, you will learn how to retrieve the Resources data in your game, for example if you want to display it there.
LootLockerSDKManager.GetCollectables((response) =>
{
if (response.success)
{
Debug.Log("Successfully received " + response.collectables.Length + " collectables");
}
else
{
Debug.Log("Error receiving collectables");
}
});
Last updated
Was this helpful?