public static Analytics.AnalyticsResult CustomEvent (string customEventName, IDictionary<string,object> eventData);

Parameters

customEventNameName of custom event. Name cannot include the prefix "unity." - This is a reserved keyword.
eventDataAdditional parameters sent to Unity Analytics at the time the custom event was triggered. Dictionary key cannot include the prefix "unity." - This is a reserved keyword.

Description

Custom Events (optional).

Unity Analytics allows you to track specific events within your game. By configuring a series of Custom Events within your game, you can create your own Funnel Analysis to observe your players' game behavior. Good places to put custom events include: milestones, new levels, Scene transitions, etc.

In addition to tracking custom events, Unity Analytics also allows you to pass in custom dimensions (dictionary) relating to the event. These custom dimensions are primarily useful to know additional specifications about the user at the time the custom event was reached.

using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Analytics;

public class GameLoginMonoBehaviour : MonoBehaviour { public void OnGameOver() { int totalPotions = 5; int totalCoins = 100; Analytics.CustomEvent("gameOver", new Dictionary<string, object> { { "potions", totalPotions }, { "coins", totalCoins } }); } }

public static Analytics.AnalyticsResult CustomEvent (string customEventName);

Description

Custom Events (optional).

using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Analytics;

public class GameLoginMonoBehaviour : MonoBehaviour { public void OnGameOver() { Analytics.CustomEvent("gameOver"); } }

public static Analytics.AnalyticsResult CustomEvent (string customEventName, Vector3 position);

Description

Custom Events (optional).

using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Analytics;

public class GameLoginMonoBehaviour : MonoBehaviour { public void OnGameOver(Vector3 v) { Analytics.CustomEvent("gameOver", v); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961