有无之境

Unity工具类之Gizmos

Gizmos工具类

Gizmos辅助接口,有助于查看和调试一些效果,MonoBehaviour脚本主要调用以下两个方法


零、静态变量


一、绘制线段 DrawLine

// from:起始点
// to:终点
Gizmos.DrawLine(Vector3 from, Vector3 to);

二、绘制射线 DrawRay

//  r:射线结构体
Gizmos.DrawRay(Ray r)
{
    //  从射线起点开始
    //  起点+射线方向(单位向量)
    DrawLine(r.origin, r.origin + r.direction);
}

//  from:起点
//  direction:射线方向
Gizmos.DrawRay(Vector3 from,Vector3 direction)
{
    DrawLine(from, from + direction);
}

三、绘制立方体 DrawCube

//  center:立方体中心点
//  size:立方体大小
Gizmos.DrawCube(Vector3 center, Vector3 size);

//  绘制立方体线框
Gizmos.DrawWireCube(Vector3 center, Vector3 size);

四、绘制球体 DrawSphere

//  center:球体中心点
//  radius:球体半径
Gizmos.DrawSphere(Vector3 center, float radius);

//  绘制球体线框
Gizmos.DrawWireSphere(Vector3 center, float radius);

五、绘制视锥体 DrawFrustum

//  center:中心点
//  fov:视野区域(它的大小影响整个视角一周的范围)
//  maxRange:视野最远距离
//  minRange:视野最近距离
//  aspect:视野宽度(它的大小只影响视野左右范围)
Gizmos.DrawFrustum(Vector3 center,float fov,float maxRange,float minRange,float aspect);

六、绘制图标 DrawIcon

//  center:坐标
//  name:资源名字(必须放在Gizmos文件夹下,名字是文件名全称)
//  allowScaling:允许缩放,默认为true
//  tint:颜色值,默认白色Color(255,255,255,255)
Gizmos.DrawIcon(Vector3 center, string name,bool allowScaling,Color tint);

七、绘制GUI纹理 DrawGUITexture

//  screenRect:绘制区域
//  texture:纹理
//  mat:材质默认为null
//  leftBorder、rightBorder、topBorder、bottomBorder:从区域各边界插入
Gizmos.DrawGUITexture(Rect screenRect,Texture texture);
Gizmos.DrawGUITexture(Rect screenRect,Texture texture,Material mat);
Gizmos.DrawGUITexture(Rect screenRect,Texture texture,int leftBorder,int rightBorder,int topBorder,int bottomBorder);
Gizmos.DrawGUITexture(Rect screenRect,Texture texture,int leftBorder,int rightBorder,int topBorder,int bottomBorder,Material mat);

八、绘制网格 DrawMesh

//  position:默认为Vector3.zero
//  rotation:默认为Quaternion.identity
//  scale:默认为Vector3.one
//  submeshIndex:默认为-1
Gizmos.DrawMesh(Mesh mesh);
Gizmos.DrawMesh(Mesh mesh,Vector3 position);
Gizmos.DrawMesh(Mesh mesh,Vector3 position,Quaternion rotation);
Gizmos.DrawMesh(Mesh mesh,Vector3 position,Quaternion rotation,Vector3 scale);
Gizmos.DrawMesh(Mesh mesh,int submeshIndex);
Gizmos.DrawMesh(Mesh mesh,int submeshIndex,Vector3 position);
Gizmos.DrawMesh(Mesh mesh,int submeshIndex,Vector3 position,Quaternion rotation);

Gizmos.DrawWireMesh(Mesh mesh);
Gizmos.DrawWireMesh(Mesh mesh,Vector3 position);
Gizmos.DrawWireMesh(Mesh mesh,Vector3 position,Quaternion rotation);
Gizmos.DrawWireMesh(Mesh mesh,Vector3 position,Quaternion rotation,Vector3 scale);
Gizmos.DrawWireMesh(Mesh mesh,int submeshIndex);
Gizmos.DrawWireMesh(Mesh mesh,int submeshIndex,Vector3 position);
Gizmos.DrawWireMesh(Mesh mesh,int submeshIndex,Vector3 position,Quaternion rotation);

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »