Analytics
All Out provides out-of-the-box integration with Game Analytics. You can use GameAnalytics to track player engagement (daily active users) and retention (how many of your players come back on D1, D7, and D30 intervals).
To get started, create a project on the GameAnalytics site and obtain a game key
and secret key
.
Enable automatic instrumentation by adding a System
to your game (this can be in a "GameManager" file or otherwise)
public class GameManagerSystem : System<GameManagerSystem>
{
public override void Awake()
{
if (!Network.IsServer)
{
Analytics.EnableAutomaticAnalytics("your game key", "your secret key");
}
}
}
Player data will automatically flow into Game Analytics.