Skip to content

Phaser: Keyboard events

This post is part of a Phaser series. Click here to see the first post of the series.

Mouse events are fired on a GameObject, because with the mouse we click on elements.

With the keyboard instead we press keys, not linked to any GameObject in particular.

So we listen for those events on this.input.keyboard, like this:

this.input.keyboard.on(<event>, function() {

})

<event> is a string that can be keyup or keydown, to intercept all keys pressed, or a combination of it with a letter identifying a specific key, like:

We have a large number of identifiers we can use, including:

Instead of listenining on individual keys, we can get an object calling this.input.keyboard.createCursorKeys():

let cursors

function create() {
  cursors = this.input.keyboard.createCursorKeys()
}

and in the update() function, we can check if one specific key has been pressed, and do something when this happens:

function update() {
  if (cursors.right.isDown) {
    text.x += 5
  }
  if (cursors.left.isDown) {
    text.x -= 5
  }
  if (cursors.up.isDown) {
    text.y -= 5
  }
  if (cursors.down.isDown) {
    text.y -= 5
  }
}

I wrote 17 books to help you become a better developer, download them all at $0 cost by joining my newsletter

  • C Handbook
  • Command Line Handbook
  • CSS Handbook
  • Express Handbook
  • Git Cheat Sheet
  • Go Handbook
  • HTML Handbook
  • JS Handbook
  • Laravel Handbook
  • Next.js Handbook
  • Node.js Handbook
  • PHP Handbook
  • Python Handbook
  • React Handbook
  • SQL Handbook
  • Svelte Handbook
  • Swift Handbook

JOIN MY CODING BOOTCAMP, an amazing cohort course that will be a huge step up in your coding career - covering React, Next.js - next edition February 2025

Bootcamp 2025

Join the waiting list