Version: 2017.1
Import SDK
Attach Game Script

Create Game Script

Create Script to Start a Player Session

In the Unity Editor, create a new C# script by going to:
Assets->Create->C# Script
Name the newly created script: UnityAnalyticsIntegration (naming must be exact for the script to work correctly)

Open Script and Copy Code

Double-click on the script to open your script in MonoDevelop. Completely replace the default generated code with the code below and click “Save” in MonoDevelop. The Unity Project ID that you see in the sample code below is unique to your game. It is used to link your Editor project to your Analytics dashboard.

Go to the Analytics Dashboard to get your unique, functional Project ID

using UnityEngine;
using System.Collections;
using UnityEngine.Cloud.Analytics;

public class UnityAnalyticsIntegration : MonoBehaviour {

    // Use this for initialization
    void Start () {

        const string projectId = "SAMPLE-UNITY-PROJECT-ID";
        UnityAnalytics.StartSDK (projectId);

    }

}
Import SDK
Attach Game Script
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961