config: Add invert_scroll_direction and scroll_speed

This commit is contained in:
Aleksander
2025-11-11 12:11:34 +01:00
parent 6169ec9505
commit afc8804aba
16 changed files with 159 additions and 101 deletions

View File

@@ -55,8 +55,8 @@ pub struct MouseUpEvent {
}
pub struct MouseWheelEvent {
pub pos: Vec2,
pub shift: Vec2,
pub pos: Vec2, /* mouse position */
pub delta: Vec2, /* wheel delta */
pub device: usize,
}