1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { DemoScene } from './scenes/DemoScene'; import { BootScene } from './scenes/BootScene'; export const gameConfig: Phaser.Types.Core.GameConfig & Phaser.Types.Core.RenderConfig = { type: Phaser.AUTO, backgroundColor: '#125555', width: 800, height: 800, pixelArt: true, scene: [BootScene, DemoScene] };