chart-lineAnalytics

CSL (In Development)

Analytics support beyond basic player count and Feedback/Ratings is still under development. If you have a specific request please don't hesitate to reach out and we'll do our best to add features/get information for you!

C# (Legacy)

All Out provides out-of-the-box integration with Game Analyticsarrow-up-right for C# games only. 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.

Last updated