コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Unity】iOS で SystemInfo.deviceUniqueIdentifier と iOS.Device.vendorIdentifier で取得できる文字列は同じ

概要

using UnityEngine;
using UnityEngine.iOS;

public class Example : MonoBehaviour
{
    private void Awake()
    {
        // 同じ
        Debug.Log( SystemInfo.deviceUniqueIdentifier );
        Debug.Log( Device.vendorIdentifier );
    }
}