Returns the previous known position of the mouse before entering relative mode.
| 375 | /// Returns the previous known position of the mouse before entering relative mode. |
| 376 | /// </summary> |
| 377 | Float2 GetOldMousePosition() const |
| 378 | { |
| 379 | ASSERT(_relativeModeWindow != nullptr); |
| 380 | return _relativeModeWindow->ClientToScreen(_oldPosition); |
| 381 | } |
| 382 | |
| 383 | // [Mouse] |
| 384 | void SetMousePosition(const Float2& screenPosition) final override |
no test coverage detected