Manual     Reference     Scripting  
  
Scripting > Runtime Classes > Gizmos   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Enumerations
  • History
  • Index
  • Gizmos
  • All Members
  • Class Variables
  • color
  • matrix
  • Class Functions
  • DrawCube
  • DrawGUITexture
  • DrawIcon
  • DrawLine
  • DrawRay
  • DrawSphere
  • DrawWireCube
  • DrawWireSphere

Gizmos.color  

static var color : Color

Description

Sets the color for the gizmos that will be drawn next.

function OnDrawGizmosSelected () {
// Draws a 5 meter long red line in front of the object
Gizmos.color = Color.red;
var direction = transform.TransformDirection (Vector3.forward) * 5;
Gizmos.DrawRay (transform.position, direction);
}