SDL JoyButtonEvent

Aus DGL Wiki
Wechseln zu: Navigation, Suche

SDL_JoyButtonEvent

Name

TSDL_JoyButtonEvent - Beschreibt Knopfdrücke eines Joysticks


Delphi-Spezifikation

 TSDL_JoyButtonEvent = record
   type_: UInt8;
   which: UInt8;
   button: UInt8;
   state: UInt8;
 end;


Parameter

type SDL_JOYBUTTONDOWN oder SDL_JOYBUTTONUP
which Geräteindex
button Knopfindex
state SDL_PRESSED oder SDL_RELEASED


Beschreibung

SDL_JoyButtonEventist ein Element von SDL_Event und wird dazu benutzt Ereignisse des Types SDL_JOYBUTTONDOWN oder SDL_JOYBUTTONUP zu beschreiben.

Ein SDL_JOYBUTTONDOWN oder SDL_JOYBUTTONUP Ereignis tritt dann auf, wenn ein Benutzer einen Knopf eines Joysticks drückt oder loslässt. which präsentiert dabei der Index des Joysticks und button der Index des gedrückten/losgelassenen Knopf und state ist entweder SDL_PRESSED oder SDL_RELEASED.

Siehe auch

SDL_Event, SDL_JoystickEventState, SDL_JoystickGetButton