Skip to content

Phaser: The game loop

New Course Coming Soon:

Get Really Good at Git

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

In Phaser in addition to the preload() and create() scenes, we also have a third scene, called update().

Here is where everything happens.

preload() and create() are run just once.

update() is going to be called forever. It’s a never ending loop, that is repeatedly called until our game ends.

In this example, we create a text that slowly moves to the bottom right of the canvas:

let text

function create() {
  text = this.add.text(100, 100, 'test')
}

function update() {
  text.x += 1
  text.y += 1
}

const game = new Phaser.Game({
  width: 400,
  height: 400,
  scene: {
    create,
    update
  }
})

Note how I added let text at the top, so we can reference it inside both create() and update().

In update() I modified the x and y properties. You can modify other properties, for example you can modify angle to rotate an object:

function update() {
  text.angle += 2
}

You can make an object start with a specific velocity.

Call setVelocity() and pass a number for the X axis, and another optional for the Y axis:

text.setVelocity(20, 20)

Or use setVelocityX() and setVelocityY() to only set one of the 2 axis.

Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching May 21, 2024. Join the waiting list!

Here is how can I help you: