--------------------------------- InputManager::SetMouseWheelDelta Sets how much the user scrolled in the last frame
| 124 | // Sets how much the user scrolled in the last frame |
| 125 | // |
| 126 | void InputManager::SetMouseWheelDelta(ivec2 const& mouseWheel) |
| 127 | { |
| 128 | m_MouseWheelDelta = math::vecCast<float>(mouseWheel); |
| 129 | } |
| 130 | |
| 131 | //--------------------------------- |
| 132 | // InputManager::RegisterCursorShapeManager |