bevy
bevy copied to clipboard
Fix comment in `pointer_events`
Objective
Comment from bevy_picking::events::pointer_events:
// Emit Click and Up events on all the previously hovered entities.
The event is named Release, not Up.
Solution
Replace Up with Release.
well if you're changing things around there, could you replace the events with messages? 😄
well if you're changing things around there, could you replace the
eventswithmessages? 😄
It dispatches both events and messages so it's confusing what to do, I guess it could say "events and messages"? The whole module just uses "event" as a blanket term to mean both events and messages though.