Unity3D的SystemInfo类,用于获取运行设备硬件信息(CPU、显卡、类型等)
SystemInfo类中的静态变量:
bool supportsRenderToCubemap:(只读)是否支持立方体纹理。
| copyTextureSupport | Support for various Graphics.CopyTexture cases (Read Only). |
| deviceModel | The model of the device (Read Only). |
| deviceName | The user defined name of the device (Read Only). |
| deviceType | Returns the kind of device the application is running on (Read Only). |
| deviceUniqueIdentifier | A unique device identifier. It is guaranteed to be unique for every device (Read Only). |
| graphicsDeviceID | The identifier code of the graphics device (Read Only). |
| graphicsDeviceName | The name of the graphics device (Read Only). |
| graphicsDeviceType | The graphics API type used by the graphics device (Read Only). |
| graphicsDeviceVendor | The vendor of the graphics device (Read Only). |
| graphicsDeviceVendorID | The identifier code of the graphics device vendor (Read Only). |
| graphicsDeviceVersion | The graphics API type and driver version used by the graphics device (Read Only). |
| graphicsMemorySize | Amount of video memory present (Read Only). |
| graphicsMultiThreaded | Is graphics device using multi-threaded rendering (Read Only)? |
| graphicsShaderLevel | Graphics device shader capability level (Read Only). |
| maxTextureSize | Maximum texture size (Read Only). |
| npotSupport | What NPOT (non-power of two size) texture support does the GPU provide? (Read Only) |
| operatingSystem | Operating system name with version (Read Only). |
| processorCount | Number of processors present (Read Only). |
| processorFrequency | Processor frequency in MHz (Read Only). |
| processorType | Processor name (Read Only). |
| supportedRenderTargetCount | How many simultaneous render targets (MRTs) are supported? (Read Only) |
| supports2DArrayTextures | Are 2D Array textures supported? (Read Only) |
| supports3DTextures | Are 3D (volume) textures supported? (Read Only) |
| supportsAccelerometer | Is an accelerometer available on the device? |
| supportsAudio | Is there an Audio device available for playback? |
| supportsComputeShaders | Are compute shaders supported? (Read Only) |
| supportsGyroscope | Is a gyroscope available on the device? |
| supportsImageEffects | Are image effects supported? (Read Only) |
| supportsInstancing | Is GPU draw call instancing supported? (Read Only) |
| supportsLocationService | Is the device capable of reporting its location? |
| supportsMotionVectors | Are motion vectors supported. |
| supportsRawShadowDepthSampling | Is sampling raw depth from shadowmaps supported? (Read Only) |
| supportsRenderTextures | Are render textures supported? (Read Only) |
| supportsRenderToCubemap | Are cubemap render textures supported? (Read Only) |
| supportsShadows | Are built-in shadows supported? (Read Only) |
| supportsSparseTextures | Are sparse textures supported? (Read Only) |
| supportsStencil | Is the stencil buffer supported? (Read Only) |
| supportsVibration | Is the device capable of providing the user haptic feedback by vibration? |
| systemMemorySize | Amount of system memory present (Read Only). |
| unsupportedIdentifier | Value returned by SystemInfo string properties which are not supported on the current platform. |
Unity3D的SystemInfo类,用于获取运行设备硬件信息(CPU、显卡、类型等)的更多相关文章
- C++ WMI获取系统硬件信息(CPU/DISK/NetWork etc)
官网找到一个例子,根据例子修改下可以获取很多信息 #define _WIN32_DCOM #include <iostream> using namespace std; #include ...
- 学习笔记_Java get和post区别(转载_GET一般用于获取/查询资源信息,而POST一般用于更新资源信息)
转载自:[hyddd(http://www.cnblogs.com/hyddd/)] 总结一下, Get是向服务器发索取数据的一种请求 而Post是向服务器提交数据的一种请求,在F ...
- android 获取系统硬件信息
一,首先设置权限访问: <uses-permission android:name="android.permission.READ_PHONE_STATE" /> ...
- 通过wmi获取本地硬件信息的一些疑问。
通过wmi获取本地硬件信息的一些疑问. http://bbs.csdn.net/topics/391017789 http://blog.csdn.net/xcntime/article/detail ...
- C#获取电脑硬件信息(CPU ID、主板ID、硬盘ID、BIOS编号)
最近学习过程中,想到提取系统硬件信息做一些验证,故而对网上提到的利用.NET System.Management类获取硬件信息做了进一步的学习.验证.验证是分别在4台电脑,XP SP3系统中进行,特将 ...
- c# WMI获取机器硬件信息(硬盘,cpu,内存等)
using System; using System.Collections.Generic; using System.Globalization; using System.Management; ...
- java 实现视频转换通用工具类:获取视频元数据信息(一)
java 做视频转换主要用到开源的ffmpeg或者mencoder,还要有MP4Box. 注:由于平时都没有时间写博客,所以思路我就不写了,有问题问我,不一定马上回复. 详细介绍: ffmpeg:ht ...
- Java获取电脑硬件信息
package com.szht.gpy.util; import java.applet.Applet; import java.awt.Graphics; import java.io.Buffe ...
- c# 获取机器硬件信息 (硬盘,cpu,内存等)
using System; using System.Collections.Generic; using System.Globalization; using System.Management; ...
随机推荐
- 【Topcoder】SRM157 DIV2总结
250分题:简单的二分,就是平常玩的猜数字游戏 代码:GitHub 500分题:给出一个员工一天的打卡时间段,要求求出员工这一天的工资.其中正常上班时间是6:00:00到18:00:00,薪水是wag ...
- 【Flask】ORM 关系一对一
### 一对一的关系:在sqlalchemy中,如果想要将两个模型映射成一对一的关系,那么应该在父模型中,指定引用的时候,要传递一个`uselist=False`这个参数进去.就是告诉父模型,以后引用 ...
- Python编程-绑定方法、软件开发
一.绑定方法与非绑定方法 1.绑定方法 绑定给谁,谁来调用就自动将它本身当作第一个参数传入 (1)绑定到类的方法:用classmethod装饰器装饰的方法. 为类量身定制 类.boud_method( ...
- Plist文件与数据解析
综述 初步阶段当我们做个需要点数据的练习时(比如购物商品展示),我们可能是将数据直接写在代码中,比如说定义一个字符串数组或存放字典的数组.但这其实并不是一种合理的做法.因为如果当数据修改的时候,就要经 ...
- ASP.NET5 MVC6 利用Middleware 创建可访问HttpContext 的业务类工厂。(代替HttpContext.Current)
我们的目标是在后台业务处理类中,能够很容易的取得用户信息或者其它HTTP请求相关的信息. 所以,首先我们需要一个存储这些信息的类: public class RequestData { public ...
- 2015 ACM/ICPC Asia Regional Changchun Online HDU 5444 Elven Postman【二叉排序树的建树和遍历查找】
Elven Postman Time Limit: 1500/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)T ...
- 【BZOJ1854】游戏[SCOI2009](神奇贪心+并查集)
这道题和今年GDKOI的Day2T2很像(然而gdkoi的题用网络流可以A,这道题只能拿30). 网址:http://www.lydsy.com/JudgeOnline/problem.php?id= ...
- 解决maven寻找依赖关系失败的问题
在mac中会碰到依赖jdk自带的jar包而maven找不到的问题 解决方案:安装jdk中的tools到本地mvn库 mvn install:install-file -Dfile=${JAVA_HOM ...
- java深入探究12-框架整合
1.Spring与Hibernate整合 需要配置的就是hibernate和bean.xml 1)关键点:sessionFactory创建交给SpringIOC:session的事务处理交给Sprin ...
- js实现级联菜单(没有后台)
html代码: <!-- js级联菜单 --> <div id="cascMenu"> <select id="select" o ...