diff options
| author | ChrisDill <[email protected]> | 2019-01-02 10:14:55 +0000 |
|---|---|---|
| committer | ChrisDill <[email protected]> | 2019-01-02 10:14:55 +0000 |
| commit | 893329886451706033d8af4901cf7c251903a136 (patch) | |
| tree | 7d112763c7ed5b5e0a9f4a25aa36e4b984b49c11 /src/raylib.h | |
| parent | d5735720b0cd8893320774e074694b48eb7b7d01 (diff) | |
| download | raylib-893329886451706033d8af4901cf7c251903a136.tar.gz raylib-893329886451706033d8af4901cf7c251903a136.zip | |
Added SetMouseOffset
- Changed mouseScale to Vector2.
- Added SetMouseOffset to change XY of mouseScale.
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 0e9e0155..9deb8f42 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -942,6 +942,7 @@ RLAPI int GetMouseY(void); // Returns mouse p RLAPI Vector2 GetMousePosition(void); // Returns mouse position XY RLAPI void SetMousePosition(Vector2 position); // Set mouse position XY RLAPI void SetMouseScale(float scale); // Set mouse scaling +RLAPI void SetMouseOffset(Vector2 scale); // Set mouse scaling XY RLAPI int GetMouseWheelMove(void); // Returns mouse wheel movement Y // Input-related functions: touch |
