Scroll Wheel
Implemented
This feature is fully implemented.
Scroll wheel input via a GLFW scroll callback, exposed to C# as an accumulator that can be read and reset each frame.
API
NativeBridge Methods
Implementation Details
- GLFW scroll callback accumulates offsets in the C++ renderer
GetScrollOffsetreads the accumulated value;ResetScrollOffsetclears it- Used by
CameraFollowSystemfor third-person camera zoom (scroll up = zoom in, scroll down = zoom out) - Zoom distance is clamped between
Camera.MinDistanceandCamera.MaxDistance