MortalWombat/sidescroller/MortalWombat/public_html/mortalwombat.js

18 lines
240 B
JavaScript

const config = {
type: PHASER.AUTO,
width: 800,
height: 600,
physics: {
default: 'arcade',
arcade: {
gravity: {y: 500},
debug: false
}
},
scene: {
key: 'main',
preload: preload,
create: create,
update: update
}
};