移相器游戏未启动错误
import Game1 from "phaser/src/core/Game";
import { Game } from "phaser";
console.log(Game1, Game);
const app = new Game1(gameSettings);
但是当我尝试直接使用phaser js中的那个时,没有发现错误
import { Game } from "phaser";
const app = new Game(gameSettings);
提前感谢您回答我做错的部分。