SystemInfo.processorType Manual     Reference     Scripting  
Scripting > Runtime Classes > SystemInfo
SystemInfo.processorType

static var processorType : String

Description

Processor 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.