SystemInfo.unsupportedIdentifier
Declaration
public static string unsupportedIdentifier;Описание
Значение, возвращаемое строчными свойствами SystemInfo, которые не поддерживаются на текущей платформе.
using UnityEngine; using System.Collections;
public class NewBehaviourScript : MonoBehaviour { void Start() { if (SystemInfo.unsupportedIdentifier != SystemInfo.deviceUniqueIdentifier) { // use SystemInfo.deviceUniqueIdentifier } } }