Gizmos.color

static var color : Color

Description

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

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