版本:Unity 6 (6000.0)
语言英语
  • C#

SystemInfo.unsupportedIdentifier

建议更改

成功!

感谢您帮助我们改进 Unity 文档的质量。虽然我们无法接受所有提交,但我们会阅读用户提出的每项建议的更改,并在适用时进行更新。

关闭

提交失败

由于某种原因,无法提交您建议的更改。请在几分钟后重试。感谢您花时间帮助我们改进 Unity 文档的质量。

关闭

取消

public static string unsupportedIdentifier;

描述

SystemInfo 字符串属性在当前平台上不受支持所返回的值。

using UnityEngine;
using System.Collections;

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