Tracking SDK for Unity Editor
Download and setup unity-axie-tracking package at this LINK
Note: We will use the Import Asset Package option in the Unity Engine, follow the steps described in the official documentation.
- Create new App on this
- Fill info, app logo in Information section
- Request
App TrackingonApp Permissionthen wait for approve. - After that you can generate new
API KEYfrom App Tracking/Setting
With this you can see Overview data like DAU, Retention
![]()
AnalyticManager.InitManager(YOUR_API_KEY);
AnalyticManager.IdentifyLocalUser(); //INIT IDENTIFY LOCAL USER
// You can custom user data by use AnalyticManager.IdentifyCustomUserYou can you this for see: how players experience your game, where they stuck,...
![]()
AnalyticManager.AddEvent(EventTypes.Screen, AnalyticConst.NewScreenEvent("game_over"));Use this for advanced data that depends on each project.
AnalyticManager.AddEvent(EventTypes.Track, AnalyticConst.NewTrackGameOver(score));