Use Catalogs In-Game
List Catalogs
LootLockerSDKManager.ListCatalogs((response) =>
{
if(!response.success)
{
Debug.Log("error: " + response.errorData.message);
Debug.Log("request ID: " + response.errorData.request_id);
return;
}
});List Catalog Items
LootLockerSDKManager.ListCatalogItems(catalogKey, 10, "", (response) =>
{
if(!response.success)
{
Debug.Log("error: " + response.errorData.message);
Debug.Log("request ID: " + response.errorData.request_id);
return;
}
});Buy Catalog Items
Last updated
Was this helpful?



