Phaser 4 Core
Set up the foundation of a Phaser game: the Game config, the Scene
lifecycle, asset loading, cameras, and passing data between scenes. Targets
Phaser 4.2 for new projects; keep an existing Phaser 3.90 project on its
pinned major unless the user explicitly asks for a migration.
When to use
- Use when starting a Phaser game, wiring the
Phaser.Game config, structuring
Scenes, loading assets in preload, or fixing scene transitions and shared
state.
- Use when the project has
phaser in package.json or import Phaser from 'phaser',
and code uses preload()/create()/update().
When not to use: movement, velocity, colliders, gravity, or overlap → use
phaser-arcade-physics. Complex rigid-body simulation uses Matter physics (a
separate concern). For cross-engine save/load patterns use save-systems.
Core workflow
- Detect the installed major first. Read
package.json and the lockfile. Use
Phaser 4.2 for new work; do not silently rewrite a Phaser 3 project as Phaser 4.
- Create the game from a config.
new Phaser.Game(config) with type: Phaser.AUTO (WebGL with Canvas fallback), a width/height, and a scene
array. The first scene (and any with active: true) starts automatically.
- Model each screen as a
Scene. Subclass Phaser.Scene, pass a unique
key to super, and implement the lifecycle: init(data) → preload() →
create(data) → update(time, delta).
- Load assets in
preload, use them in create. Queued assets are not
available until create. The loader is per-scene; the cache it fills is global.
- Reset per-run state in
init(), not the constructor. A scene instance is
reused across restarts, so constructor-set fields keep stale values.
- Move between screens with
this.scene.start/launch/switch/sleep/wake.
Share data through this.registry (global) or a sibling scene's event emitter.
- Run and observe. Serve the page, open it, and confirm assets load (watch the
Network tab and console) and scenes switch as expected before assuming success.
Patterns
1. Game config + boot (ES module)
// main.js — one Game owns the renderer, loop, cache, and Scene Manager.
import Phaser from 'phaser';
import BootScene from './scenes/BootScene.js';
import PlayScene from './scenes/PlayScene.js';
const config = {
type: Phaser.AUTO, // WebGL if available, else Canvas
width: 800,
height: 600,
backgroundColor: '#1d1d28',
scale: { mode: Phaser.Scale.FIT, autoCenter: Phaser.Scale.CENTER_BOTH },
scene: [BootScene, PlayScene] // BootScene starts first
};
new Phaser.Game(config);
2. A Scene with the full lifecycle
// scenes/PlayScene.js
import Phaser from 'phaser';
export default class PlayScene extends Phaser.Scene {
constructor() {
super('play'); // unique scene key
}
init(data) {
// Reset run-specific state HERE so restarts start clean.
this.score = 0;
this.level = data.level ?? 1;
}
preload() {
// Queue downloads. Not usable until create().
this.load.image('player', 'assets/player.png');
this.load.spritesheet('coin', 'assets/coin.png', { frameWidth: 16, frameHeight: 16 });
}
create() {
this.player = this.add.sprite(400, 300, 'player');
this.scoreText = this.add.text(10, 10, 'Score: 0', { fontSize: '20px', color: '#fff' });
this.cursors = this.input.keyboard.createCursorKeys();
}
update(time, delta) {
// delta is milliseconds since last frame; divide by 1000 for seconds.
const speed = 200 * (delta / 1000);
if (this.cursors.left.isDown) this.player.x -= speed;
if (this.cursors.right.isDown) this.player.x += speed;
}
}
3. Cross-scene data + events
// The registry is a global DataManager shared by every scene.
this.registry.set('coins', 0); // in any scene
const coins = this.registry.get('coins'); // read anywhere
// React to registry changes (e.g. a HUD scene listening to gameplay):
this.registry.events.on('changedata-coins', (parent, value) => {
this.coinText.setText(`Coins: ${value}`);
});
// Talk directly to another running scene via its event emitter:
const ui = this.scene.get('hud');
ui.events.emit('show-message', 'Level cleared!');
4. Scene transitions (pick the right verb)
this.scene.start('gameover', { score: this.score }); // stop this scene, start target
this.scene.launch('hud'); // run a second scene in parallel (overlay HUD)
this.scene.switch('menu'); // sleep this scene, start/wake target
this.scene.pause(); // freeze updates but keep rendering (modal)
this.scene.sleep(); // stop updating AND rendering, keep state for wake
5. A camera that follows the player
this.cameras.main.setBounds(0, 0, 1600, 1200); // world size
this.cameras.main.startFollow(this.player, true, 0.1, 0.1); // smooth lerp follow
this.cameras.main.setZoom(1.5);
Pitfalls
- Assets are
undefined in create/update → you forgot to queue them in
preload, or used the wrong key. The loader runs between preload and create.
- State leaks across a restart → you set fields in the constructor. The Scene
instance is reused; reset run state in
init() and clear arrays on shutdown.
this.scene.start vs this.scene.launch → start stops the calling scene;
launch runs the target alongside it. Using start for a HUD hides the game.
this is wrong in a callback → arrow functions keep the Scene's this; plain
function callbacks need a context argument or .bind(this).
- Phaser 2 tutorials don't work → "States" were renamed to "Scenes" in Phaser 3,
and each Scene owns its own systems (input, cameras, tweens) rather than a global
Game World.
- Phaser 3 custom pipelines fail in Phaser 4 → Phaser 4 rebuilt the renderer and
replaced the old FX/pipeline extension points. Migrate custom shaders and renderer
plugins against the Phaser 4 guide; do not mechanically copy internal renderer code.
- Nothing renders / black screen → confirm the canvas mounted,
width/height
are set, and a scene actually started (check game.scene.dump() output).
References
- For the full scene state machine (pause/resume vs sleep/wake vs stop/start, the
restart-state bug, and removing/replacing scenes), read
references/scene-flow.md.
Related skills
phaser-arcade-physics — velocity, gravity, colliders, overlap, and groups.
input-systems — rebindable, multi-device input architecture (engine-agnostic).
pixijs-rendering / threejs-scene-setup — other browser rendering stacks.
platformer / puzzle — genre templates that compose Phaser skills.
1---2name: phaser-core3description: Set up and debug a Phaser 4 game: the Game config, the Scene lifecycle (init/preload/create/update), the asset loader, cameras, and cross-scene communication. Use when building or debugging a Phaser game — when the user mentions Phaser, Phaser.Game, Phaser.Scene, preload/create/update, this.load, this.add, or scene transitions. For Arcade Physics movement/collisions use phaser-arcade-physics.4---5
6# Phaser 4 Core
7
8Set up the foundation of a Phaser game: the `Game` config, the `Scene`
9lifecycle, asset loading, cameras, and passing data between scenes. Targets
10**Phaser 4.2** for new projects; keep an existing Phaser 3.90 project on its
11pinned major unless the user explicitly asks for a migration.
12
13## When to use
14
15- Use when starting a Phaser game, wiring the `Phaser.Game` config, structuring
16 `Scene`s, loading assets in `preload`, or fixing scene transitions and shared
17 state.
18- Use when the project has `phaser` in `package.json` or `import Phaser from 'phaser'`,
19 and code uses `preload()`/`create()`/`update()`.
20
21**When *not* to use:** movement, velocity, colliders, gravity, or overlap → use
22`phaser-arcade-physics`. Complex rigid-body simulation uses Matter physics (a
23separate concern). For cross-engine save/load patterns use `save-systems`.
24
25## Core workflow
26
271. **Detect the installed major first.** Read `package.json` and the lockfile. Use
28 Phaser 4.2 for new work; do not silently rewrite a Phaser 3 project as Phaser 4.
292. **Create the game from a config.** `new Phaser.Game(config)` with `type:
30 Phaser.AUTO` (WebGL with Canvas fallback), a `width`/`height`, and a `scene`
31 array. The first scene (and any with `active: true`) starts automatically.
323. **Model each screen as a `Scene`.** Subclass `Phaser.Scene`, pass a unique
33 `key` to `super`, and implement the lifecycle: `init(data)` → `preload()` →
34 `create(data)` → `update(time, delta)`.
354. **Load assets in `preload`, use them in `create`.** Queued assets are not
36 available until `create`. The loader is per-scene; the cache it fills is global.
375. **Reset per-run state in `init()`, not the constructor.** A scene instance is
38 reused across restarts, so constructor-set fields keep stale values.
396. **Move between screens** with `this.scene.start/launch/switch/sleep/wake`.
40 Share data through `this.registry` (global) or a sibling scene's event emitter.
417. **Run and observe.** Serve the page, open it, and confirm assets load (watch the
42 Network tab and console) and scenes switch as expected before assuming success.
43
44## Patterns
45
46### 1. Game config + boot (ES module)
47
48```js
49// main.js — one Game owns the renderer, loop, cache, and Scene Manager.
50import Phaser from 'phaser';
51import BootScene from './scenes/BootScene.js';
52import PlayScene from './scenes/PlayScene.js';
53
54const config = {
55 type: Phaser.AUTO, // WebGL if available, else Canvas
56 width: 800,
57 height: 600,
58 backgroundColor: '#1d1d28',
59 scale: { mode: Phaser.Scale.FIT, autoCenter: Phaser.Scale.CENTER_BOTH },
60 scene: [BootScene, PlayScene] // BootScene starts first
61};
62
63new Phaser.Game(config);
64```
65
66### 2. A Scene with the full lifecycle
67
68```js
69// scenes/PlayScene.js
70import Phaser from 'phaser';
71
72export default class PlayScene extends Phaser.Scene {
73 constructor() {
74 super('play'); // unique scene key
75 }
76
77 init(data) {
78 // Reset run-specific state HERE so restarts start clean.
79 this.score = 0;
80 this.level = data.level ?? 1;
81 }
82
83 preload() {
84 // Queue downloads. Not usable until create().
85 this.load.image('player', 'assets/player.png');
86 this.load.spritesheet('coin', 'assets/coin.png', { frameWidth: 16, frameHeight: 16 });
87 }
88
89 create() {
90 this.player = this.add.sprite(400, 300, 'player');
91 this.scoreText = this.add.text(10, 10, 'Score: 0', { fontSize: '20px', color: '#fff' });
92 this.cursors = this.input.keyboard.createCursorKeys();
93 }
94
95 update(time, delta) {
96 // delta is milliseconds since last frame; divide by 1000 for seconds.
97 const speed = 200 * (delta / 1000);
98 if (this.cursors.left.isDown) this.player.x -= speed;
99 if (this.cursors.right.isDown) this.player.x += speed;
100 }
101}
102```
103
104### 3. Cross-scene data + events
105
106```js
107// The registry is a global DataManager shared by every scene.
108this.registry.set('coins', 0); // in any scene
109const coins = this.registry.get('coins'); // read anywhere
110
111// React to registry changes (e.g. a HUD scene listening to gameplay):
112this.registry.events.on('changedata-coins', (parent, value) => {
113 this.coinText.setText(`Coins: ${value}`);
114});
115
116// Talk directly to another running scene via its event emitter:
117const ui = this.scene.get('hud');
118ui.events.emit('show-message', 'Level cleared!');
119```
120
121### 4. Scene transitions (pick the right verb)
122
123```js
124this.scene.start('gameover', { score: this.score }); // stop this scene, start target
125this.scene.launch('hud'); // run a second scene in parallel (overlay HUD)
126this.scene.switch('menu'); // sleep this scene, start/wake target
127this.scene.pause(); // freeze updates but keep rendering (modal)
128this.scene.sleep(); // stop updating AND rendering, keep state for wake
129```
130
131### 5. A camera that follows the player
132
133```js
134this.cameras.main.setBounds(0, 0, 1600, 1200); // world size
135this.cameras.main.startFollow(this.player, true, 0.1, 0.1); // smooth lerp follow
136this.cameras.main.setZoom(1.5);
137```
138
139## Pitfalls
140
141- **Assets are `undefined` in `create`/`update`** → you forgot to queue them in
142 `preload`, or used the wrong key. The loader runs between `preload` and `create`.
143- **State leaks across a restart** → you set fields in the constructor. The Scene
144 instance is reused; reset run state in `init()` and clear arrays on `shutdown`.
145- **`this.scene.start` vs `this.scene.launch`** → `start` stops the calling scene;
146 `launch` runs the target alongside it. Using `start` for a HUD hides the game.
147- **`this` is wrong in a callback** → arrow functions keep the Scene's `this`; plain
148 `function` callbacks need a context argument or `.bind(this)`.
149- **Phaser 2 tutorials don't work** → "States" were renamed to "Scenes" in Phaser 3,
150 and each Scene owns its own systems (input, cameras, tweens) rather than a global
151 Game World.
152- **Phaser 3 custom pipelines fail in Phaser 4** → Phaser 4 rebuilt the renderer and
153 replaced the old FX/pipeline extension points. Migrate custom shaders and renderer
154 plugins against the Phaser 4 guide; do not mechanically copy internal renderer code.
155- **Nothing renders / black screen** → confirm the canvas mounted, `width`/`height`
156 are set, and a scene actually started (check `game.scene.dump()` output).
157
158## References
159
160- For the full scene state machine (pause/resume vs sleep/wake vs stop/start, the
161 restart-state bug, and removing/replacing scenes), read
162 `references/scene-flow.md`.
163
164## Related skills
165
166- `phaser-arcade-physics` — velocity, gravity, colliders, overlap, and groups.
167- `input-systems` — rebindable, multi-device input architecture (engine-agnostic).
168- `pixijs-rendering` / `threejs-scene-setup` — other browser rendering stacks.
169- `platformer` / `puzzle` — genre templates that compose Phaser skills.