public static string processorType ;

Descripción

Nombre del procesador (Read Only).

Will return SystemInfo.unsupportedIdentifier on platforms which don't support this property.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.processorType); } }