Legacy Documentation: Version 5.2
LanguageEnglish
  • C#
  • JS

Script language

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

Handles.DrawLine

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public static function DrawLine(p1: Vector3, p2: Vector3): void;
public static void DrawLine(Vector3 p1, Vector3 p2);

Parameters

Description

Draw a line from p1 to p2.


Draw Line in the Scene View.

	// Draw lines to the connected game objects that a script has.
	// if the target object doesnt have any game objects attached
	// then it draws a line from the object to 0,0,0.
	
	@CustomEditor (ConnectedObjects)
	class ConnectLineHandle extends Editor {
	
	    function OnSceneGUI () {
	    	for(var i = 0; i < target.objs.Length; i++)
	    		if(target.objs[i])
	    			Handles.DrawLine(target.transform.position, 
	    						target.objs[i].transform.position);
	    		else
	    			Handles.DrawLine(target.transform.position, Vector3.zero);
	    }
	}

And the script attached to this Handle:

	//ConnectedObjects.js
	
	var objs : GameObject[] = null;