2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Update Raylib.cs input related functions to 3.5.0

This commit is contained in:
ChrisDill 2020-12-26 13:24:48 +00:00
parent 7be227a115
commit 29fca9725f

View File

@ -1302,10 +1302,14 @@ namespace Raylib_cs
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void SetExitKey(KeyboardKey key); public static extern void SetExitKey(KeyboardKey key);
// Get key pressed, call it multiple times for chars queued // Get key pressed (keycode), call it multiple times for keys queued
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int GetKeyPressed(); public static extern int GetKeyPressed();
// Get char pressed (unicode), call it multiple times for chars queued
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int GetCharPressed();
// Input-related functions: gamepads // Input-related functions: gamepads
@ -1404,7 +1408,15 @@ namespace Raylib_cs
// Returns mouse wheel movement Y // Returns mouse wheel movement Y
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int GetMouseWheelMove(); public static extern float GetMouseWheelMove();
// Returns mouse cursor
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern MouseCursor GetMouseCursor();
// Set mouse cursor
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void SetMouseCursor(MouseCursor cursor);
// Input-related functions: touch // Input-related functions: touch