Key#event
  • References/Game Development/Phaser/Input/Key

[readonly] event : Object Stores the most recent DOM event.

2025-01-10 15:47:30
Key#Key
  • References/Game Development/Phaser/Input/Key

new Key(game, keycode) If you need more fine-grained control over the handling of specific keys you can create and use Phaser.Key objects

2025-01-10 15:47:30
Key#onDown
  • References/Game Development/Phaser/Input/Key

onDown : Phaser.Signal This Signal is dispatched every

2025-01-10 15:47:30
Key#downDuration()
  • References/Game Development/Phaser/Input/Key

downDuration(duration) → {boolean} Returns true if the

2025-01-10 15:47:30
Key#isUp
  • References/Game Development/Phaser/Input/Key

isUp : boolean The "up" state of the key. This will remain true for as long as the keyboard thinks this key is up

2025-01-10 15:47:30
Key#isDown
  • References/Game Development/Phaser/Input/Key

isDown : boolean The "down" state of the key. This will remain true for as long as the keyboard thinks this key is

2025-01-10 15:47:30
Key#onHoldCallback
  • References/Game Development/Phaser/Input/Key

onHoldCallback : Function A callback that is called while this Key is held down. Warning: Depending on refresh rate that could

2025-01-10 15:47:30
Key#timeUp
  • References/Game Development/Phaser/Input/Key

timeUp : number The timestamp when the key was last released. This is based on Game.time.now.

2025-01-10 15:47:30
Key#onHoldContext
  • References/Game Development/Phaser/Input/Key

onHoldContext : Object The context under which the onHoldCallback will be called. Source

2025-01-10 15:47:30
Key#altKey
  • References/Game Development/Phaser/Input/Key

altKey : boolean The down state of the ALT key, if pressed at the same time as this key.

2025-01-10 15:47:30