Legacy Documentation: Version 5.5
LanguageEnglish
  • C#
  • JS

Script language

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

Handles.RectangleHandleCap

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

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> 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 RectangleHandleCap(controlID: int, position: Vector3, rotation: Quaternion, size: float, eventType: EventType): void;
public static void RectangleHandleCap(int controlID, Vector3 position, Quaternion rotation, float size, EventType eventType);

Parameters

controlID The control ID for the handle.
position The world-space position of the handle's start point.
rotation The rotation of the handle.
size The size of the handle in world-space units.
eventType Event type for the handle to act upon. By design it handles EventType.Layout and EventType.Repaint events.

Description

Draw a rectangle handle. Pass this into handle functions.

On EventType.Layout event, calculates handle distance to mouse and calls HandleUtility.AddControl accordingly.

On EventType.Repaint event, draws the handle shape.

Note: Use HandleUtility.GetHandleSize where you might want to have constant screen-sized handles.

no example available in JavaScript
// Draw one dot on each axis of any GameObject 
// that has the "DummyScript.cs" script attached.

// DummyScriptEditor.cs (place in Editor folder) [CustomEditor(typeof(DummyScript))] public class DummyScriptEditor : Editor { float size = 1; void OnSceneGUI() { if(Event.current.type == EventType.Repaint) { Transform transform = (target as DummyScript).transform; Handles.color = Color.red; Handles.RectangleHandleCap(0, transform.position + new Vector3(5, 0, 0), transform.rotation * Quaternion.LookRotation(new Vector3(1, 0, 0)), size, EventType.Repaint); Handles.color = Color.green; Handles.RectangleHandleCap(0, transform.position + new Vector3(0, 5, 0), transform.rotation * Quaternion.LookRotation(new Vector3(0, 1, 0)), size, EventType.Repaint); Handles.color = Color.blue; Handles.RectangleHandleCap(0, transform.position + new Vector3(0, 0, 5), transform.rotation * Quaternion.LookRotation(new Vector3(0, 0, 1)), size, EventType.Repaint); } } }

// DummyScript.cs public class DummyScript : MonoBehaviour { }