Version: 2021.3
言語: 日本語
public static Quaternion FreeRotateHandle (int id, Quaternion rotation, Vector3 position, float size);
public static Quaternion FreeRotateHandle (Quaternion rotation, Vector3 position, float size);

パラメーター

id Control id of the handle.
rotation ハンドルの向き
position 3D 空間でのハンドルの中心
size ハンドルのサイズ

注意: 画面サイズに対して固定サイズのハンドルを持ちたい場合、 HandleUtility.GetHandleSize を使用します。

戻り値

Quaternion ユーザーのハンドル操作によって更新された回転値。ユーザーがハンドルを操作しない場合は、関数に渡した値と同じ値が返されます。

説明

制約のない回転ハンドルを作成します。

The handle can rotate freely on all axes. The rotation gizmo has no visible axes and is simply a circle in the Scene view. Users can click and drag from within the circle to provide input rotation to your editor script.


FreeRotate handle seen in the Scene View.

// Name this script "FreeRotateEditor"
using UnityEngine;
using UnityEditor;

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

EditorGUI.BeginChangeCheck(); Quaternion rot = Handles.FreeRotateHandle(t.rot, Vector3.zero, 2); if (EditorGUI.EndChangeCheck()) { Undo.RecordObject(target, "Free Rotate"); t.rot = rot; t.Update(); } } }

このハンドルにアタッチしているスクリプト

// Name this script "FreeRotate"
using UnityEngine;

[ExecuteInEditMode] public class FreeRotate : MonoBehaviour { public Quaternion rot = Quaternion.identity; public void Update() { transform.rotation = rot; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961