Does kivy support MouseEvent that is triggered on mouse_pos change without pressing mouse button?
I found in documentation this:
def on_motion(self, etype, motionevent): # will receive all motion events. pass Window.bind(on_motion=on_motion)
You can also listen to changes of the mouse position by watching mouse_pos.
However I cant implement it. I managed to bind it and add to on_motion function 'print('Hello world')' but it was triggered only by pressing-type events.
Thanks in advance