单击按钮时如何重新启动游戏? 我尝试了以下代码:
this.scene.stop();
this.scene.start();
场景重新加载,但是预加载功能不再起作用。
答案 0 :(得分:1)
尝试以下代码:
this.registry.destroy(); // destroy registry
this.events.off(); // disable all active events
this.scene.restart(); // restart current scene
也可以查看Phaser 3 Documentation以获得更多信息