Version: 2022.3
LanguageEnglish
  • C#
Removed

Analytics.SetUserBirthYear

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Obsolete SetUserBirthYear is no longer supported.

Declaration

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;

#if ENABLE_CLOUD_SERVICES_ANALYTICS using UnityEngine.Analytics;

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