Gizmos.color 颜色

static var color : Color

Description描述

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

为随后绘制的gizmos设置颜色。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnDrawGizmosSelected() {
		Gizmos.color = Color.red;
		Vector3 direction = transform.TransformDirection(Vector3.forward) * 5;
		Gizmos.DrawRay(transform.position, direction);
	}
}
function OnDrawGizmosSelected () {
	// Draws a 5 meter long red line in front of the object
	//在物体的前面绘制一个5米长红色的线
	Gizmos.color = Color.red;
	var direction : Vector3 = transform.TransformDirection (Vector3.forward) * 5;
	Gizmos.DrawRay (transform.position, direction);
}
最后修改:2010年12月25日 Saturday 23:14

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。