Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseNumber of processors present (Read Only).
This is number of "logical processors" as reported by the operating system, also commonly called as "number of hardware threads". Note that some CPUs have different amount of "physical cores" and "logical cores" (for example many Intel CPUs have 4 physical cores and 8 logical cores in so called "hyper threaded" fashion). This function reports the latter.
// Prints "4" on a quad-core CPU.
print (SystemInfo.processorCount);
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.processorCount); } }