Created
December 12, 2018 20:33
-
-
Save flurrydev/c9e3743532992ebfeed20a44403f1b7f to your computer and use it in GitHub Desktop.
Unity: Methods to set users preferences
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void SetAge(int age); | |
| void SetGender(Flurry.Gender gender); | |
| void SetReportLocation(bool reportLocation); | |
| void SetSessionOrigin(string originName, string deepLink); | |
| void SetUserId(string userId); | |
| //The SetVersionName method is called before the session is initialized. See the FlurryStart.cs example script for usage. | |
| void SetVersionName(string versionName); | |
| void AddOrigin(string originName, string originVersion); | |
| void AddOrigin(string originName, string originVersion, Dictionary<string, string> originParameters); | |
| void AddSessionProperty(string name, string value); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment