Quick guide to disabling Unity Analytics in Saiko no Sutoka
About
Saiko no Sutoka contains Unity Analytics and will, by default, send analytics data to Unity when you have it open. This behaviour probably isn’t intentional as Unity Analytics is enabled by default, and is not easy to disable unless you pay for Unity Pro.

The Image for this Guide is a cropped version of saiko pat by Crovo IC[www.pixiv.net]
For Users
Navigate to
%appdata%\LocalLow\Habupain\Saiko no sutoka\Unity, then open the folder within. This may either be a UUID or begin with
local., inside you will find another folder called
Analytics.
Open the config file using a text editor such as notepad or notepad++, and paste the following inside:
"analytics": { "enabled": false },
"limit_user_tracking": true,
"player_opted_out": true,
"performance": { "enabled": false },
"timeToWaitForUserInfoS": 60
"shouldCollectAutomation": false,
"timeToWaitForUserInfoS": 60
{
"analytics": { "enabled": false },
"connect": {
"limit_user_tracking": true,
"player_opted_out": true,
"enabled": false
},
"performance": { "enabled": false },
"dynamic": {
"coreBusinessMetrics": {
"enabled": false,
"timeToWaitForUserInfoS": 60
},
"analytics": {
"shouldCollectAutomation": false,
"timeToWaitForUserInfoS": 60
}
}
}
{
"analytics": { "enabled": false },
"connect": {
"limit_user_tracking": true,
"player_opted_out": true,
"enabled": false
},
"performance": { "enabled": false },
"dynamic": {
"coreBusinessMetrics": {
"enabled": false,
"timeToWaitForUserInfoS": 60
},
"analytics": {
"shouldCollectAutomation": false,
"timeToWaitForUserInfoS": 60
}
}
}
Then, save the file and close your text editor. Now, right click the
config file, click Properties, and check
Read-only. This should prevent Unity from overriding the changes you’ve made.
While this will disable most of Unity Analytics, Unity will still attempt to phone home when you initially start the game.
This is adapted from Talonius’s disable Unity Analytics post[www.gog.com] on the GoG forums
For Developers
Thanks to c41c for his great guide, all credit to his effort. you can also read the original guide from Steam Community. enjoy the game.