Usage
using VoxelBusters.CoreLibrary;
using VoxelBusters.EssentialKit;Overview
Register for Events
private void OnEnable()
{
// register for events
GameServices.OnAuthStatusChange += OnAuthStatusChange;
}
private void OnDisable()
{
base.OnDisable();
// unregister from events
GameServices.OnAuthStatusChange -= OnAuthStatusChange;
}Check Availability
Authenticate Player
On iOS, it may open Game Center login dialog and on Android, it can open a dialog for Game Play Services login.


Achievements
Get all Achievement Details
Get achievements reported
Report Achievement Progress
Show Achievements
Leaderboards
Load details of Leaderboards
Load Scores of a Leaderboard
Loading Top Scores
Loading Player centered scores
Report Score to a leaderboard
Show Leaderboards
Showing All Leaderboards
Showing a specific Leaderboard with Time Scope
Last updated