Spaces:
Running
Running
File size: 357 Bytes
c679a93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import '@geckos.io/phaser-on-nodejs'
import Phaser from 'phaser'
import { GameScene } from './gameScene.js'
export const config = {
type: Phaser.HEADLESS,
parent: 'phaser-game',
width: 896,
height: 504,
banner: false,
audio: false,
scene: [GameScene],
physics: {
default: 'arcade',
arcade: {
gravity: { y: 1200 }
}
}
}
|