Skip to content

Commit

Permalink
wip merge
Browse files Browse the repository at this point in the history
  • Loading branch information
proller committed Dec 2, 2024
1 parent 23e50cc commit 50e4e6a
Show file tree
Hide file tree
Showing 9 changed files with 1,757 additions and 11 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
[submodule "src/external/msgpack-c"]
path = src/external/msgpack-c
url = /~https://github.com/msgpack/msgpack-c.git
[submodule "lib/irrlichtmt"]
path = lib/irrlichtmt
url = /~https://github.com/paradust7/irrlicht.git
[submodule "src/external/websocketpp"]
path = src/external/websocketpp
url = /~https://github.com/zaphoyd/websocketpp.git
Expand Down
6 changes: 6 additions & 0 deletions irr/include/IEventReceiver.h
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,12 @@ struct SEvent
//! Y position of mouse cursor
s32 Y;

//! X movement of mouse cursor (only valid for EMIE_MOUSE_MOVED)
s32 XRel;

//! Y movement of mouse cursor (only valid for EMIE_MOUSE_MOVED)
s32 YRel;

//! mouse wheel delta, often 1.0 or -1.0, but can have other values < 0.f or > 0.f;
/** Only valid if event was EMIE_MOUSE_WHEEL */
f32 Wheel;
Expand Down
Loading

0 comments on commit 50e4e6a

Please sign in to comment.