Procházet zdrojové kódy

Fix IsGestureDetected parameter inconsistency in raylib.h with rgextures.h (#3464)

closes https://github.com/raysan5/raylib/issues/3463
pull/3472/head
jestarray před 1 rokem
odevzdal GitHub
rodič
revize
804f1a83eb
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/raylib.h

+ 1
- 1
src/raylib.h Zobrazit soubor

@ -1167,7 +1167,7 @@ RLAPI int GetTouchPointCount(void); // Get number of t
// Gestures and Touch Handling Functions (Module: rgestures)
//------------------------------------------------------------------------------------
RLAPI void SetGesturesEnabled(unsigned int flags); // Enable a set of gestures using flags
RLAPI bool IsGestureDetected(unsigned int gesture); // Check if a gesture have been detected
RLAPI bool IsGestureDetected(int gesture); // Check if a gesture have been detected
RLAPI int GetGestureDetected(void); // Get latest detected gesture
RLAPI float GetGestureHoldDuration(void); // Get gesture hold time in milliseconds
RLAPI Vector2 GetGestureDragVector(void); // Get gesture drag vector

Načítá se…
Zrušit
Uložit