Processor name (Read Only).
Will return SystemInfo.unsupportedIdentifier on platforms which don't support this property.
// Prints something like "Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz"
print (SystemInfo.processorType);
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.processorType); } }