SystemInfo.processorType 处理器类型

static var processorType : string

Description描述

Processor name (Read Only).

处理器的名称(只读)。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(SystemInfo.processorType);
	}
}
// Prints something like "Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz"
//打印当前计算机处理器的型号

print (SystemInfo.processorType);

参见:SystemInfo.processorCount.

最后修改:2011年3月18日 Friday 17:16

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。