Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Analytics.SetUserBirthYear

public static Analytics.AnalyticsResult SetUserBirthYear(int birthYear);

Parameters

birthYear Birth year of user. Must be 4-digit year format, only.

Description

User Demographics (optional).

Depending on the genre of your project, creating custom segments around gender and age of your users may interest you. Whether you're receiving this information on signup of your project, or from a third-party SDK, eg: Facebook, you can send these demographics to Unity Analytics.

using System;
using UnityEngine;
using UnityEngine.Analytics;

public class GameLoginMonoBehaviour : MonoBehaviour { public void OnLogin() { int birthYear = 2015; Analytics.SetUserBirthYear(birthYear); } }

Did you find this page useful? Please give it a rating: