Unity 6.3
0 онлайн 89 гостей 3 в системе
Вход

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 } } }