SystemInfo
.processorType
Manual
Reference
Scripting
Scripting
>
Runtime Classes
>
SystemInfo
SystemInfo
.processorType
Menu
Overview
Runtime Classes
Attributes
Enumerations
Editor Classes
Enumerations
History
Index
SystemInfo
All Members
Class Variables
graphicsDeviceID
graphicsDeviceName
graphicsDeviceVendor
graphicsDeviceVendorID
graphicsDeviceVersion
graphicsMemorySize
graphicsPixelFillrate
graphicsShaderLevel
operatingSystem
processorCount
processorType
supportsImageEffects
supportsRenderTextures
supportsShadows
systemMemorySize
Class Functions
SupportsRenderTextureFormat
static
var
processorType :
string
Description
Processor name
(Read Only)
.
JavaScripts
JavaScript
C#
Boo
// Prints something like "Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz"
print (
SystemInfo.processorType
);
using UnityEngine;
using System.Collections;
public
class
example :
MonoBehaviour
{
void
Awake
() {
print(
SystemInfo.processorType
);
}
}
import
UnityEngine
import
System.Collections
class
example(
MonoBehaviour
):
def
Awake
():
print(
SystemInfo.processorType
)
See Also:
SystemInfo.processorCount
.