NoaInformation
Through this class, you can get the information of the Information function.
APIs
Static Properties
| API | Description |
|---|---|
| SystemInformation | Returns the system information the tool retains. |
| UnityInformation | Returns the Unity information the tool retains. |
Sample Code
#if NOA_DEBUGGER
using NoaDebugger;
#endif
public class Example
{
void ExampleMethod()
{
#if NOA_DEBUGGER
// Get the system information.
SystemInformation systemInfo = NoaInformation.SystemInformation;
ApplicationInfo appInfo = systemInfo.ApplicationInfo;
DeviceInfo deviceInfo = systemInfo.DeviceInfo;
CpuInfo cpuInfo = systemInfo.CpuInfo;
GpuInfo gpuInfo = systemInfo.GpuInfo;
SystemMemoryInfo systemMemoryInfo = systemInfo.SystemMemoryInfo;
DisplayInfo displayInfo = systemInfo.DisplayInfo;
// Get the Unity information.
UnityInformation unityInfo = NoaInformation.UnityInformation;
UnityInfo unity = unityInfo.UnityInfo;
RuntimeInfo runtime = unityInfo.RuntimeInfo;
FeaturesInfo features = unityInfo.FeaturesInfo;
GraphicsInfo graphics = unityInfo.GraphicsInfo;
#endif
}
}
