Select your preferred scripting language. All code snippets will be displayed in this language.
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.
Closerotation | Orientation of the handle. |
position | Center of the handle in 3D space. |
size | The size of the handle.Note: Use HandleUtility.GetHandleSize where you might want to have constant screen-sized handles. |
Make an unconstrained rotation handle.
The handle can rotate freely on all axes.
// Create a simple rotate handle (half scale) on the // target object that lets you freely rotate // the Object Without having to select the "Rotate" button @CustomEditor (FreeRotate) class FreeRotateHandleJS extends Editor { function OnSceneGUI () { target.rot = Handles.FreeRotateHandle(target.rot, target.transform.position, 0.5); if (GUI.changed) EditorUtility.SetDirty (target); } }
And the script attached to this Handle:
@script ExecuteInEditMode() var rot : Quaternion = Quaternion.identity; function Update () { transform.rotation = rot; }