GetDeviceInfo
描述
访问系统和硬件信息。
使用这个方法来弄清楚底层平台和硬件的能力。例如,你可以检查哪些 RenderTexture 格式被支持(SuppersRenderTextureFormat),有多少 CPU 线程可用(processorCount),等等。
返回值
Type | 描述 |
---|---|
String | 设备信息-Json |
方法
public string GetDeviceInfo()
例子
internal static API ARMODAPI = new API(nameof(APITest));
private void OnLoad(){
//You can also use LitJson to mapping it to a class.
//Litjson is already in XRMOD, You just need to add the dependence.
Debug.Log(ARMODAPI.GetDeviceInfo());
}
关联
如果你想在你的XRMOD案例中使用Litjson,你可以点击这里来阅读更多的信息。