SystemInfo.processorTypestatic var processorType : StringDescriptionProcessor name (Read Only).
JavaScripts
// Prints something like "Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz"
print (SystemInfo.processorType); using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { print(SystemInfo.processorType); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): print(SystemInfo.processorType) See Also: SystemInfo.processorCount. |
