Hi. ¿Why is the main camera lost in something like this?
<!doctype html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/phaser@3.88.2/dist/phaser.js"></script>
<script>
class Scene1 extends Phaser.Scene {
constructor(){super({key:'Scene1'});}
create() {
console.log(this.cameras.main);
this.input.keyboard.on('keydown-SPACE',()=>{this.scene.start('Scene2');});
this.events.once('shutdown', () => {
this.events.removeAllListeners();
});
}
}
class Scene2 extends Phaser.Scene {
constructor(){super({key:'Scene2'});}
create() {
this.scene.start('Scene1')
}
}
new Phaser.Game({scene: [Scene1, Scene2]});
</script>
</head>
<body></body>
</html>
Thanks for Phaser! Best regards