Gizmos

class in UnityEngine

매뉴얼로 전환

설명

Gizmos are used to give visual debugging or setup aids in the Scene view.

All gizmo drawing has to be done in either OnDrawGizmos or OnDrawGizmosSelected functions of the script.
OnDrawGizmos is called every frame. All gizmos rendered within OnDrawGizmos are pickable. OnDrawGizmosSelected is called only if the object the script is attached to is selected.

정적 변수

colorSets the color for the gizmos that will be drawn next.
matrixSet the gizmo matrix used to draw all gizmos.

정적 함수

DrawCubeDraw a solid box with center and size.
DrawFrustumDraw a camera frustum using the currently set Gizmos.matrix for it's location and rotation.
DrawGUITextureDraw a texture in the Scene.
DrawIconDraw an icon at a position in the Scene view.
DrawLineDraws a line starting at from towards to.
DrawMeshDraws a mesh.
DrawRayDraws a ray starting at from to from + direction.
DrawSphereDraws a solid sphere with center and radius.
DrawWireCubeDraw a wireframe box with center and size.
DrawWireMeshDraws a wireframe mesh.
DrawWireSphereDraws a wireframe sphere with center and radius.