Just a small update for this lovely API:
Guest support for
Scores.Get*
AutoLoginEvent
which is called for the AutoLogin mechanism, for e.g. when theRemember me
option was set.
The second point is probably the most interesting one. When a user has checked the “Remember me” option, the API will try to login this user automatically on startup. So if you try to check for a logged in user on awake or startup, the autologin mechanism hasn’t finished. This lead to some confussion, therefore this new event can be used to simplify things.
When you look at the GameJoltAPI GameObject, you will now find a UnityEvent. When this event is invoked, it receives a single parameter, describing the result of the auto login. So if the result is Success
you dont’ need to show the login screen, otherwise you can show the login screen.
2 comments