IsGamepadButtonPressed method
Check if a gamepad button has been pressed once
Implementation
@override
bool IsGamepadButtonPressed(
num gamepad,
GamepadButton button,
) => run(
() => RaylibDebugLabels.IsGamepadButtonPressed(gamepad, button),
() => rl.Core.IsGamepadButtonPressed(
gamepad.toInt(),
button.value,
),
);