First Phaser 3 Game

Get started with your very first phaser 3 game
Author: yandeu

First Phaser Game

Some text

var config = {
  type: Phaser.AUTO,
  width: 800,
  height: 600,
  scene: {
    preload: preload,
    create: create,
    update: update
  }
}

var game = new Phaser.Game(config)

function preload() {}

function create() {}

function update() {}

Read part 2