public static string processorType ;

描述

处理器名称(只读)。

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

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Prints using the following format - "Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz" print(SystemInfo.processorType); } }