All pages
Powered by GitBook
1 of 3

Loading...

Loading...

Loading...

Analytics

Integration guide

Analytics events can be visualized on the developer dashboard.

Unreal

Unreal integration

Coming soon

Unity

Log event

using UnityEngine;
using RGN.Modules.Analytics;

public class AnalyticExamples : MonoBehaviour
{
    private async void LogCustomEvent()
    {
        await AnalyticsModule.I.LogEventAsync("player_purchased_car_01");
    }
}