現在のプラットフォームでサポートされていない SystemInfo 文字列プロパティーからの戻り値
using UnityEngine; using System.Collections;
public class NewBehaviourScript : MonoBehaviour { void Start() { if (SystemInfo.unsupportedIdentifier != SystemInfo.deviceUniqueIdentifier) { // use SystemInfo.deviceUniqueIdentifier } } }