Draggable.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. using System;
  2. using UnityEngine;
  3. using UnityEngine.UIElements;
  4. namespace UnityEditor.ShaderGraph.Drawing
  5. {
  6. class Draggable : MouseManipulator
  7. {
  8. Action<Vector2> m_Handler;
  9. bool m_Active;
  10. bool m_OutputDeltaMovement;
  11. public Draggable(Action<Vector2> handler, bool outputDeltaMovement = false)
  12. {
  13. m_Handler = handler;
  14. m_Active = false;
  15. m_OutputDeltaMovement = outputDeltaMovement;
  16. activators.Add(new ManipulatorActivationFilter()
  17. {
  18. button = MouseButton.LeftMouse
  19. });
  20. }
  21. protected override void RegisterCallbacksOnTarget()
  22. {
  23. target.RegisterCallback(new EventCallback<MouseDownEvent>(OnMouseDown), TrickleDownEnum.NoTrickleDown);
  24. target.RegisterCallback(new EventCallback<MouseMoveEvent>(OnMouseMove), TrickleDownEnum.NoTrickleDown);
  25. target.RegisterCallback(new EventCallback<MouseUpEvent>(OnMouseUp), TrickleDownEnum.NoTrickleDown);
  26. }
  27. protected override void UnregisterCallbacksFromTarget()
  28. {
  29. target.UnregisterCallback(new EventCallback<MouseDownEvent>(OnMouseDown), TrickleDownEnum.NoTrickleDown);
  30. target.UnregisterCallback(new EventCallback<MouseMoveEvent>(OnMouseMove), TrickleDownEnum.NoTrickleDown);
  31. target.UnregisterCallback(new EventCallback<MouseUpEvent>(OnMouseUp), TrickleDownEnum.NoTrickleDown);
  32. }
  33. void OnMouseDown(MouseDownEvent evt)
  34. {
  35. target.CaptureMouse();
  36. m_Active = true;
  37. evt.StopPropagation();
  38. }
  39. void OnMouseMove(MouseMoveEvent evt)
  40. {
  41. if (m_Active)
  42. {
  43. if (m_OutputDeltaMovement)
  44. {
  45. m_Handler(evt.mouseDelta);
  46. }
  47. else
  48. {
  49. m_Handler(evt.localMousePosition);
  50. }
  51. }
  52. }
  53. void OnMouseUp(MouseUpEvent evt)
  54. {
  55. m_Active = false;
  56. if (target.HasMouseCapture())
  57. {
  58. target.ReleaseMouse();
  59. }
  60. evt.StopPropagation();
  61. }
  62. }
  63. }