Nombre del procesador (Read Only).
Will return SystemInfo.unsupportedIdentifier on platforms which don't support this property.
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); } }