Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

Analytics.SetUserGender

public static Analytics.AnalyticsResult SetUserGender(Analytics.Gender gender);

Parameters

genderGender of user can be "Female", "Male", or "Unknown".

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() { Gender gender = Gender.Female; Analytics.SetUserGender(gender); } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答