Gizmos.DrawLine 绘制线

static function DrawLine (from : Vector3, to : Vector3) : void

Description描述

Draws a line starting at from towards to.

绘制一条线从from起点到to位置。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Transform target;
	void OnDrawGizmosSelected() {
		if (target != null) {
			Gizmos.color = Color.blue;
			Gizmos.DrawLine(transform.position, target.position);
		}
	}
}
var target : Transform;
function OnDrawGizmosSelected () {
	if(target != null) {
		// Draws a blue line from this transform to the target
		//绘制一条蓝色的线,从该变换到目标位置
		Gizmos.color = Color.blue;
		Gizmos.DrawLine (transform.position, target.position);
	}
}
最后修改:2010年12月25日 Saturday 23:20

本脚本参考基于Unity 3.4.1f5

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