Forum Discussion
Anonymous
6 years agoHow to set up Client Achievements in Unity?
I have a box collider that is a trigger with a Script that runs
because my Simple achievement name is "HELLO_WORLD". From what I understand from the documentation, this should work, as this achievement is marked as a Client Authoritative write policy achievement, but nothing happens when I make contact with my box collider. Is there an extra step I need to take?
Platform.Achievements.Unlock("HELLO_WORLD") |
1 Reply
- rh_galaxyHeroic ExplorerThe only thing I do before that Unlock call is
and wait for those callbacks to complete.Core.AsyncInitialize("your_app_id");
Entitlements.IsUserEntitledToApplication().OnComplete(EntitlementCallback);
Users.GetLoggedInUser().OnComplete(LoggedInUserCallback);
Quick Links
- Horizon Developer Support
- Quest User Forums
- Troubleshooting Forum for problems with a game or app
- Quest Support for problems with your device
Other Meta Support
Related Content
- 10 months ago
- 3 years ago
- 5 months ago
- 5 years agoAnonymous