Use DLC In-Game
Initiate DLC Migrations
LootLockerSDKManager.InitiateDLCMigration((response) =>
{
if (response.success)
{
Debug.Log("Successfully initiated DLC migrations");
}
else
{
Debug.Log("Error initiating DLC migrations");
}
});Get DLCs Migrated
LootLockerSDKManager.GetDLCMigrated((response) =>
{
if (response.success)
{
Debug.Log("Successfully received migrated DLCs");
}
else
{
Debug.Log("Error receiving migrated DLCs");
}
});Last updated
Was this helpful?
