Gizmos.colorstatic var color : ColorDescriptionSets 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); } |
