Opt-out Option

Elecular is used for processing your player's data from all around the globe. In some regions, you may be required by law to ask permission from your users to collect and use their personal data. We recommend that you review the data protection laws applicable to your app.

We provide an opt-out flag in our Unity SDK which will stop tracking user data in case the user decides to opt-out of tracking. Make sure to set this flag before initializing Elecular. This flag does not persist between application runs.

using Elecular.API;

//Stops tracking user data
ElecularApi.Instance.OptOut = true;
//The following statement will not track any data. 
ElecularApi.Instance.InitializeWithTracking();

Last updated

Was this helpful?