Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

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

Handles.DrawBezier

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

public static function DrawBezier(startPosition: Vector3, endPosition: Vector3, startTangent: Vector3, endTangent: Vector3, color: Color, texture: Texture2D, width: float): void;
public static void DrawBezier(Vector3 startPosition, Vector3 endPosition, Vector3 startTangent, Vector3 endTangent, Color color, Texture2D texture, float width);

Parameters

startPosition The start point of the bezier line.
endPosition The end point of the bezier line.
startTangent The start tangent of the bezier line.
endTangent The end tangent of the bezier line.
color The color to use for the bezier line.
texture The texture to use for drawing the bezier line.
width The width of the bezier line.

Description

Draw textured bezier line through start and end points with the given tangents.

To get an anti-aliased effect use a texture that is 1x2 pixels with one transparent white pixel and one opaque white pixel. The bezier curve will be swept using this texture.

Note: Use HandleUtility.GetHandleSize if you want the handle to always remain the same size on the screen.


Bezier Line in the Scene View.

To use this example, save this script to the Assets/Editor folder:

#pragma strict
@CustomEditor(DummyBezier)
public class DrawBezierHandleEditor extends Editor {
	function OnSceneGUI() {
		var t: DummyBezier = target as DummyBezier;
		Handles.DrawBezier(t.transform.position, Vector3.zero, Vector3.up, -Vector3.up, Color.white, null, HandleUtility.GetHandleSize(Vector3.zero));
	}
}
using UnityEngine;
using UnityEditor;

[CustomEditor( typeof( DummyBezier ) )] public class DrawBezierHandleEditor : Editor { void OnSceneGUI( ) { DummyBezier t = target as DummyBezier;

Handles.DrawBezier( t.transform.position, Vector3.zero, Vector3.up, -Vector3.up, Color.white, null, HandleUtility.GetHandleSize( Vector3.zero ) ); } }

...and place this script on the GameObject you wish to draw the Bezier from:

#pragma strict
@ExecuteInEditMode
public class DummyBezier extends MonoBehaviour {
	public function Start() {
		Debug.Log("I have a Bezier curve handle attached!");
	}
}
using UnityEngine;
          
[ExecuteInEditMode]
public class DummyBezier : MonoBehaviour
{
	public void Start( )
	{
		Debug.Log( "I have a Bezier curve handle attached!" );
	}
}