123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- using System;
- using UnityEngine;
- using UnityEngine.UIElements;
- namespace UnityEditor.ShaderGraph.Drawing
- {
- class Draggable : MouseManipulator
- {
- Action<Vector2> m_Handler;
- bool m_Active;
- bool m_OutputDeltaMovement;
- public Draggable(Action<Vector2> handler, bool outputDeltaMovement = false)
- {
- m_Handler = handler;
- m_Active = false;
- m_OutputDeltaMovement = outputDeltaMovement;
- activators.Add(new ManipulatorActivationFilter()
- {
- button = MouseButton.LeftMouse
- });
- }
- protected override void RegisterCallbacksOnTarget()
- {
- target.RegisterCallback(new EventCallback<MouseDownEvent>(OnMouseDown), TrickleDownEnum.NoTrickleDown);
- target.RegisterCallback(new EventCallback<MouseMoveEvent>(OnMouseMove), TrickleDownEnum.NoTrickleDown);
- target.RegisterCallback(new EventCallback<MouseUpEvent>(OnMouseUp), TrickleDownEnum.NoTrickleDown);
- }
- protected override void UnregisterCallbacksFromTarget()
- {
- target.UnregisterCallback(new EventCallback<MouseDownEvent>(OnMouseDown), TrickleDownEnum.NoTrickleDown);
- target.UnregisterCallback(new EventCallback<MouseMoveEvent>(OnMouseMove), TrickleDownEnum.NoTrickleDown);
- target.UnregisterCallback(new EventCallback<MouseUpEvent>(OnMouseUp), TrickleDownEnum.NoTrickleDown);
- }
- void OnMouseDown(MouseDownEvent evt)
- {
- target.CaptureMouse();
- m_Active = true;
- evt.StopPropagation();
- }
- void OnMouseMove(MouseMoveEvent evt)
- {
- if (m_Active)
- {
- if (m_OutputDeltaMovement)
- {
- m_Handler(evt.mouseDelta);
- }
- else
- {
- m_Handler(evt.localMousePosition);
- }
- }
- }
- void OnMouseUp(MouseUpEvent evt)
- {
- m_Active = false;
- if (target.HasMouseCapture())
- {
- target.ReleaseMouse();
- }
- evt.StopPropagation();
- }
- }
- }
|