Value returned by SystemInfo string properties which are not supported on the current platform.
#pragma strict public class NewBehaviourScript extends MonoBehaviour { function Start() { if (SystemInfo.unsupportedIdentifier != SystemInfo.deviceUniqueIdentifier) { // use SystemInfo.deviceUniqueIdentifier } } }
using UnityEngine; using System.Collections;
public class NewBehaviourScript : MonoBehaviour { void Start() { if (SystemInfo.unsupportedIdentifier != SystemInfo.deviceUniqueIdentifier) { // use SystemInfo.deviceUniqueIdentifier } } }
Did you find this page useful? Please give it a rating: