LootLocker_UnitySDKv3.0.0
Features
- Reward Groups - In leaderboards and catalogs you can now create groups of rewards. Read more here
- Added a method for getting a single item from the entitlement history
- The LootLocker SDK settings now help you in giving the correct domain key as there has been some confusion around domain key and domain url
Bug Fixes
- Fixed a bug that caused crashes if the responses were for some reason not json
Deprecations
- Due to the new feature of groupable rewards in catalogs, how you get information from the details dictionaries has changed. Before you would do for example
var entry = response.entries[0]; //Get the entry you're looking at
if(entry.entity_kind) {
response.asset_details[entry.catalog_listing_id]
}
Now you will instead do
var entry = response.entries[0]; //Get the entry you're looking at
if(entry.entity_kind) {
response.asset_details[entry.GetItemDetailsKey()];
}
Full Changelog: v2.2.0...v3.0.0