Unity 获取设备的硬件信息
程序员文章站
2022-03-02 11:48:54
...
在unity里封装了一个非常好用的类,可以方便的获取设备硬件的相关信息,它就是SystemInfo类
下面列举一些常用的信息
print(SystemInfo.graphicsDeviceID);//获取显卡的唯一标识符
print(SystemInfo.deviceUniqueIdentifier);//获取设备唯一标识符
print(SystemInfo.deviceType);//获取设备的类型
print(SystemInfo.processorType);//获取处理器的类型
内容还有很多,大家查阅这个类的信息来获取需要的数据