如何在 Phaser 3 上重新加载游戏?
How to reload the game on Phaser 3?
点击按钮后如何重新开始游戏?
我尝试了以下代码:
this.scene.stop();
this.scene.start();
场景重新加载,预加载功能又失效了
试试这个代码:
this.registry.destroy(); // destroy registry
this.events.off(); // disable all active events
this.scene.restart(); // restart current scene
另请查看 Phaser 3 Documentation 了解更多信息
点击按钮后如何重新开始游戏? 我尝试了以下代码:
this.scene.stop();
this.scene.start();
场景重新加载,预加载功能又失效了
试试这个代码:
this.registry.destroy(); // destroy registry
this.events.off(); // disable all active events
this.scene.restart(); // restart current scene
另请查看 Phaser 3 Documentation 了解更多信息