Have a control trigger PointerEnter while holding down left click #5677
Answered
by
kekekeks
EncryptedData
asked this question in
Q&A
-
I am working on a visual programming like tool in the vein like Unreal Engine's blueprints. I have two ellipses that I want to drag between to connect the nodes, but the PointerEnter doesn't trigger while holding down left click. Is there a way to have this trigger while click and dragging? |
Beta Was this translation helpful? Give feedback.
Answered by
kekekeks
Mar 17, 2021
Replies: 1 comment 3 replies
-
For now I'd suggest to add
to your PointerMoved event handler to get the list of elements below the pointer and update their classes accordingly. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
EncryptedData
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For now I'd suggest to add
to your PointerMoved event handler to get the list of elements below the pointer and update their classes accordingly.