mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-27 05:28:30 +00:00
ADDED: GetTouchPointId(index)
#1972
This commit is contained in:
10
src/core.c
10
src/core.c
@@ -3575,6 +3575,16 @@ Vector2 GetTouchPosition(int index)
|
||||
return position;
|
||||
}
|
||||
|
||||
// Get touch point identifier for given index
|
||||
int GetTouchPointId(int index)
|
||||
{
|
||||
int id = -1;
|
||||
|
||||
if (index < MAX_TOUCH_POINTS) id = CORE.Input.Touch.pointId[index];
|
||||
|
||||
return id;
|
||||
}
|
||||
|
||||
// Get number of touch points
|
||||
int GetTouchPointCount(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user