Update MouseMotion and CursorMoved docs (#5090)

# Objective

- Fixes #5083 

## Solution

I looked at the implementation of those events. I noticed that they both are adaptations of `winit`'s `DeviceEvent`/`WindowEvent` enum variants. Therefore I based the description of the items on the documentation provided by the upstream crate. I also added a link to `CursorMoved`, just like `MouseMotion` already has.

## Observations

- Looking at the implementation of `MouseMotion`, I noticed the `DeviceId` field of the `winit` event is discarded by `bevy_input`. This means that in the case a machine has multiple pointing devices, it is impossible to distinguish to which one the event is referring to. **EDIT:** just tested, `MouseMotion` events are emitted for movement of both mice.
This commit is contained in:
Federico Rinaldi 2022-06-26 13:40:43 +00:00
parent 1bd33cac31
commit 056f12236e
2 changed files with 21 additions and 4 deletions

View file

@ -41,12 +41,18 @@ pub enum MouseButton {
Other(u16),
}
/// A mouse motion event.
/// An event reporting the change in physical position of a pointing device.
///
/// This event is the translated version of the `DeviceEvent::MouseMotion` from the `winit` crate.
/// This represents raw, unfiltered physical motion.
/// It is the translated version of [`DeviceEvent::MouseMotion`] from the `winit` crate.
///
/// All pointing devices connected to a single machine at the same time can emit the event independently.
/// However, the event data does not make it possible to distinguish which device it is referring to.
///
/// [`DeviceEvent::MouseMotion`]: https://docs.rs/winit/latest/winit/event/enum.DeviceEvent.html#variant.MouseMotion
#[derive(Debug, Clone)]
pub struct MouseMotion {
/// The delta of the previous and current mouse positions.
/// The change in the position of the pointing device since the last event was sent.
pub delta: Vec2,
}

View file

@ -58,10 +58,21 @@ pub struct WindowCloseRequested {
pub struct WindowClosed {
pub id: WindowId,
}
/// An event that is sent whenenver the user's cursor moves.
/// An event reporting that the mouse cursor has moved on a window.
///
/// The event is sent only if the cursor is over one of the application's windows.
/// It is the translated version of [`WindowEvent::CursorMoved`] from the `winit` crate.
///
/// Not to be confused with the [`MouseMotion`] event from `bevy_input`.
///
/// [`WindowEvent::CursorMoved`]: https://docs.rs/winit/latest/winit/event/enum.WindowEvent.html#variant.CursorMoved
/// [`MouseMotion`]: bevy_input::mouse::MouseMotion
#[derive(Debug, Clone)]
pub struct CursorMoved {
/// The identifier of the window the cursor has moved on.
pub id: WindowId,
/// The position of the cursor, in window coordinates.
pub position: Vec2,
}
/// An event that is sent whenever the user's cursor enters a window.