MouseOver Fires on every move of the mouse
See original GitHub issueI noticed that mousemove
events fire even when the mouse is not over the item. I’m testing with a Sprite
using a Texture
and though the mouseover
and mouseout
work as expected, the mousemove
happens whether the mouse is over the item or not. I’m testing against 4.4.4 (haven’t upgraded to 4.5.0 yet). If this is something that was fixed in 4.5.0 please feel free to close this ticket.
Issue Analytics
- State:
- Created 6 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
MouseOver Fires on every move of the mouse #3928 - GitHub
Fired when a pointer device (usually a mouse) is moved while over the display object. DisplayObject's interactive property must be set to true ......
Read more >Moving the mouse: mouseover/out, mouseenter/leave
The mouseover event occurs when a mouse pointer comes over an element, and mouseout – when it leaves. These events are special, because...
Read more >Mouseover and mouseleave trigger every time I move the ...
Solved the issue by moving the function call to a different element. This happens because the mouseout and mouseover events bubble up to...
Read more >Element: mouseover event - Web APIs | MDN
The mouseover event is fired at an Element when a pointing device (such as a mouse or trackpad) is used to move the...
Read more >Events - mouseover and mouseout - QuirksMode
Test IE 5.5 IE 6
On the window No No
On the window Are these events available on the window? Are these events available on...
On...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@bigtimebuddy but it’s not explicit. The documentation should describe the default behavior, but describes the behavior that occurs if you set
app.renderer.plugins.interaction.moveWhenInside = true;
.This should be explained in the documentation at least. At minimum, the default operation should be explained.