Use a Progression System In-Game
int scoreToSubmit = 100;
LootLockerSDKManager.SubmitXp(scoreToSubmit , (response) =>
{
if (response.success)
{
Debug.Log("Successful");
}
else
{
Debug.Log("Error: " + response.Error);
}
});curl -X POST "https://api.lootlocker.io/game/v1/player/xp" \
-d "{\"points\": 100}" \
-H "Content-Type: application/json"Last updated
Was this helpful?
