SystemInfo.unsupportedIdentifier

Cambiar al Manual
public static string unsupportedIdentifier ;

Descripción

Value returned by SystemInfo string properties which are not supported on the current platform.

using UnityEngine;
using System.Collections;

public class NewBehaviourScript : MonoBehaviour { void Start() { if (SystemInfo.unsupportedIdentifier != SystemInfo.deviceUniqueIdentifier) { // use SystemInfo.deviceUniqueIdentifier } } }