mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-13 14:38:36 +00:00
[ImGui] Add helper function to get wheel delta
This commit is contained in:
parent
e374eb9f55
commit
c2fd3561cb
@ -219,6 +219,11 @@ impl ImGui {
|
||||
let io = self.io_mut();
|
||||
io.mouse_wheel = value;
|
||||
}
|
||||
/// Get mouse wheel delta
|
||||
pub fn mouse_wheel(&self) -> f32 {
|
||||
let io = self.io();
|
||||
io.mouse_wheel
|
||||
}
|
||||
/// Set to `true` to have ImGui draw the cursor in software.
|
||||
/// If `false`, the OS cursor is used (default to `false`).
|
||||
pub fn set_mouse_draw_cursor(&mut self, value: bool) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user