| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- using UnityEngine;
- using UnityEditor;
- namespace UnityEditor.U2D.Path.GUIFramework
- {
- public class GUIState : IGUIState
- {
- private Handles.CapFunction nullCap = (int c, Vector3 p , Quaternion r, float s, EventType ev) => {};
- public Vector2 mousePosition
- {
- get { return Event.current.mousePosition; }
- }
- public int mouseButton
- {
- get { return Event.current.button; }
- }
- public int clickCount
- {
- get { return Event.current.clickCount; }
- set { Event.current.clickCount = Mathf.Max(0, value); }
- }
- public bool isShiftDown
- {
- get { return Event.current.shift; }
- }
- public bool isAltDown
- {
- get { return Event.current.alt; }
- }
- public bool isActionKeyDown
- {
- get { return EditorGUI.actionKey; }
- }
- public KeyCode keyCode
- {
- get { return Event.current.keyCode; }
- }
- public EventType eventType
- {
- get { return Event.current.type; }
- }
- public string commandName
- {
- get { return Event.current.commandName; }
- }
- public int nearestControl
- {
- get { return HandleUtility.nearestControl; }
- set { HandleUtility.nearestControl = value; }
- }
- public int hotControl
- {
- get { return GUIUtility.hotControl; }
- set { GUIUtility.hotControl = value; }
- }
- public bool changed
- {
- get { return GUI.changed; }
- set { GUI.changed = value; }
- }
- public int GetControlID(int hint, FocusType focusType)
- {
- return GUIUtility.GetControlID(hint, focusType);
- }
- public void AddControl(int controlID, float distance)
- {
- HandleUtility.AddControl(controlID, distance);
- }
- public bool Slider(int id, SliderData sliderData, out Vector3 newPosition)
- {
- if (mouseButton == 0 && eventType == EventType.MouseDown)
- {
- hotControl = 0;
- nearestControl = id;
- }
- EditorGUI.BeginChangeCheck();
- newPosition = Handles.Slider2D(id, sliderData.position, sliderData.forward, sliderData.right, sliderData.up, 1f, nullCap, Vector2.zero);
- return EditorGUI.EndChangeCheck();
- }
- public void UseEvent()
- {
- Event.current.Use();
- }
- public void Repaint()
- {
- HandleUtility.Repaint();
- }
- public bool HasCurrentCamera()
- {
- return Camera.current != null;
- }
- public float GetHandleSize(Vector3 position)
- {
- var scale = HasCurrentCamera() ? 0.01f : 0.05f;
- return HandleUtility.GetHandleSize(position) * scale;
- }
- public float DistanceToSegment(Vector3 p1, Vector3 p2)
- {
- p1 = HandleUtility.WorldToGUIPoint(p1);
- p2 = HandleUtility.WorldToGUIPoint(p2);
- return HandleUtility.DistancePointToLineSegment(Event.current.mousePosition, p1, p2);
- }
-
- public float DistanceToCircle(Vector3 center, float radius)
- {
- return HandleUtility.DistanceToCircle(center, radius);
- }
- public Vector3 GUIToWorld(Vector2 guiPosition, Vector3 planeNormal, Vector3 planePos)
- {
- Vector3 worldPos = Handles.inverseMatrix.MultiplyPoint(guiPosition);
- if (Camera.current)
- {
- Ray ray = HandleUtility.GUIPointToWorldRay(guiPosition);
- planeNormal = Handles.matrix.MultiplyVector(planeNormal);
- planePos = Handles.matrix.MultiplyPoint(planePos);
- Plane plane = new Plane(planeNormal, planePos);
- float distance = 0f;
- if (plane.Raycast(ray, out distance))
- {
- worldPos = Handles.inverseMatrix.MultiplyPoint(ray.GetPoint(distance));
- }
- }
- return worldPos;
- }
- }
- }
|