Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


processorManufacturer

Specifies the manufacturer name of the processor in the user's device (Read Only).
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public static string processorManufacturer { get; }

Remarks

With
SystemInfo.processorManufacturer
and SystemInfo.processorModel values, you can categorize the devices running Unity applications to gather accurate performance metrics. You can use this data to test and optimize your application for improved performance.
Returns
unknown
on platforms that do not support this property.
Note: On Android, this property is supported on API level 32 and later.
Additional Resources: SystemInfo.processorModel

Examples

using UnityEngine;using TMPro;public class NewBehaviourScript : MonoBehaviour{ public TMP_Text DisplayText; private string _processorManufacturer; void Start() { _processorManufacturer = SystemInfo.processorManufacturer; DisplayText.text = _processorManufacturer; }}