Unity小知识点学习
Unity中使用代码查询Draw call、Tris和Verts等信息
查询Draw call、Tris和Verts等信息的方式有好几种,下面简单介绍一下,着重介绍怎样通过代码查询!
方法一:在Game视图中点击Stats即可查看相关信息,包括Draw call、Tris和Verts等等都有
方法二:菜单栏 Windows -> Analysis -> Profiler调出分析器面板
在面板中可以查看更多更详细的属性
方法三:通过代码获取Draw call、Tris和Verts
首先引用命名空间using UnityEditor;,然后调用相关信息的API方法即可,示例如下:
int DrawCall = UnityStats.drawCalls; int Tris = UnityStats.triangles; int Verts = UnityStats.vertices; int Batches = UnityStats.batches;
注意点:使用该方法获取Draw等相关信息时,只能在编辑器环境下使用,打包成exe或者apk时无法使用(打包时就报错了!