Last updated 9 days ago
The following tutorial assumes you have already set up your game and made your first API calls. To learn how to do that, visit the Getting Started guide.
If you want to manually trigger a DLC migration you can use this code:
LootLockerSDKManager.InitiateDLCMigration((response) => { if (response.success) { Debug.Log("Successfully initiated DLC migrations"); } else { Debug.Log("Error initiating DLC migrations"); } });
To see what DLCs the player have already migrated
LootLockerSDKManager.GetDLCMigrated((response) => { if (response.success) { Debug.Log("Successfully received migrated DLCs"); } else { Debug.Log("Error receiving migrated DLCs"); } });