events/gamepad-digital.js

  1. /**
  2. * Creates gamepad digital events.
  3. *
  4. * @example
  5. *
  6. * const event = new EventGamepadDigital(type, code);
  7. */
  8. class EventGamepadDigital extends Event {
  9. /**
  10. * Stores the event code.
  11. * @type {string}
  12. * @private
  13. */
  14. $code;
  15. /**
  16. * Gets the event code.
  17. * @type {string}
  18. * @public
  19. */
  20. get code() {
  21. return this.$code;
  22. }
  23. /**
  24. * Creates a new gamepad digital event.
  25. * @param {('gamepadconnect' | 'gamepaddown' | 'gamepadup' | 'gamepadvibrate')} $type The event type.
  26. * @param {string} $code The event code.
  27. */
  28. constructor($type, $code) {
  29. super($type);
  30. this.$code = $code;
  31. }
  32. }
  33. export {
  34. EventGamepadDigital
  35. };
  36. export default EventGamepadDigital;