public static string processorType ;

描述

处理器名称(只读)。

在不支持该属性的平台上,将返回 SystemInfo.unsupportedIdentifier。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.processorType); } }