Version: 2021.1
言語: 日本語
public static int processorCount ;

説明

現在のプロセッサーの数(読み取り専用)

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 amounts 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 method reports the latter. On Android, it reports the number of active processors.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Prints using the following format - "4" on a quad-core CPU. print(SystemInfo.processorCount); } }