Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Gizmos.DrawWireSphere

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

Description

Draws a wireframe sphere with center and radius.

	var explosionRadius = 5.0;
	function OnDrawGizmosSelected () {
		// Display the explosion radius when selected
		Gizmos.color = Color.white;
		Gizmos.DrawWireSphere (transform.position, explosionRadius);
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public float explosionRadius = 5.0F;
    void OnDrawGizmosSelected() {
        Gizmos.color = Color.white;
        Gizmos.DrawWireSphere(transform.position, explosionRadius);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public explosionRadius as float = 5.0F

	def OnDrawGizmosSelected() as void:
		Gizmos.color = Color.white
		Gizmos.DrawWireSphere(transform.position, explosionRadius)