Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

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

Handles.RotationHandle

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 method RotationHandle(rotation: Quaternion, position: Vector3): Quaternion;
public static Quaternion RotationHandle(Quaternion rotation, Vector3 position);

Parameters

rotation Orientation of the handle.
position Center of the handle in 3D space.

Returns

Quaternion The new rotation value modified by the user's interaction with the handle. If the user has not moved the handle, it will return the same value as you passed into the function.

Description

Make a Scene view rotation handle.

This will behave like the built-in rotation tool in Unity. If you have assigned something to Undo.SetSnapshotTarget, it will work fully with Undo. Note: Use HandleUtility.GetHandleSize where you might want to have constant screen-sized handles.


Rotate the attached object from the Rotation Handle.

#pragma strict
// Name this script "RotateAtPointEditor"
@CustomEditor(RotateAtPoint)
@CanEditMultipleObjects
public class RotateAtPointEditor extends Editor {
	public function OnSceneGUI() {
		var t: RotateAtPoint = (target as RotateAtPoint);
		EditorGUI.BeginChangeCheck();
		var rot: Quaternion = Handles.RotationHandle(t.rot, Vector3.zero);
		if (EditorGUI.EndChangeCheck()) {
			Undo.RecordObject(target, "Rotated RotateAt Point");
			t.rot = rot;
			t.Update();
		}
	}
}
// Name this script "RotateAtPointEditor"
using UnityEngine;
using UnityEditor;

[CustomEditor(typeof(RotateAtPoint))] [CanEditMultipleObjects] public class RotateAtPointEditor : Editor { public void OnSceneGUI() { RotateAtPoint t = (target as RotateAtPoint);

EditorGUI.BeginChangeCheck(); Quaternion rot = Handles.RotationHandle(t.rot, Vector3.zero); if (EditorGUI.EndChangeCheck()) { Undo.RecordObject(target, "Rotated RotateAt Point"); t.rot = rot; t.Update(); } } }

And the script attached to this GameObject:

#pragma strict
// Name this script "RotateAtPoint"
@ExecuteInEditMode
public class RotateAtPoint extends MonoBehaviour {
	public var rot: Quaternion = Quaternion.identity;
	public function Update() {
		transform.rotation = rot;
	}
}
// Name this script "RotateAtPoint"
using UnityEngine;

[ExecuteInEditMode] public class RotateAtPoint : MonoBehaviour { public Quaternion rot = Quaternion.identity; public void Update() { transform.rotation = rot; } }

Did you find this page useful? Please give it a rating: