List all Catalogs
Prerequisites
In-game implementation
LootLockerSDKManager.ListCatalogs((response) =>
{
if (!response.success)
{
Debug.Log("Could not List Catalogs");
return;
}
foreach(var catalog in response.catalogs)
{
Debug.Log(catalog.name);
Debug.Log(catalog.key);
Debug.Log(catalog.id);
}
});Conclusion
Last updated
Was this helpful?

