Gizmos.DrawWireSphere 绘制线框球体

static function DrawWireSphere (center : Vector3, radius : float) : void

Description描述

Draws a wireframe sphere with center and radius.

使用center和radius参数,绘制一个线框球体。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public float explosionRadius = 5.0F;
	void OnDrawGizmosSelected() {
		Gizmos.color = Color.white;
		Gizmos.DrawWireSphere(transform.position, explosionRadius);
	}
}
var explosionRadius = 5.0;
function OnDrawGizmosSelected () {
	// Display the explosion radius when selected
	//当选择的时候显示一个白色球体线框
	Gizmos.color = Color.white;
	Gizmos.DrawWireSphere (transform.position, explosionRadius);
}
最后修改:2010年12月25日 Saturday 23:31

本脚本参考基于Unity 3.4.1f5

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