overrun/js/main.js

25 lines
549 B
JavaScript

import { IntroScene } from './scenes/IntroScene.js';
import { GameScene } from './scenes/GameScene.js';
import { GameOverScene } from './scenes/GameOverScene.js';
const config = {
type: Phaser.AUTO,
width: 1280,
height: 720,
backgroundColor: '#111118',
physics: {
default: 'arcade',
arcade: {
gravity: { y: 0 },
debug: false,
},
},
scale: {
mode: Phaser.Scale.FIT,
autoCenter: Phaser.Scale.CENTER_BOTH,
},
scene: [IntroScene, GameScene, GameOverScene],
};
window.__game = new Phaser.Game(config);