Hi I am trying to center the basic phaser tutorial in a website (the tutorial is the one you set up after downloading with the phaser logo bouncing off the screen). I have googled this and found many results but none of them seem to work for me, everyone of them I try the game window no longer shows up. Could someone help me out with another way to do this.
The code I have is below, and it is all contained in the body
<section id="game">
<script>
var config = {
type: Phaser.AUTO,
width: 800,
height: 600,
physics:
{
default: 'arcade',
arcade: {
gravity: { y: 200 }
}
},
scene:
{
preload: preload,
create: create
},
};
var game = new Phaser.Game(config);
function preload ()
{
this.load.setBaseURL('http://labs.phaser.io');
this.load.image('sky', 'assets/skies/space3.png');
this.load.image('logo', 'assets/sprites/phaser3-logo.png');
this.load.image('red', 'assets/particles/red.png');
}
function create ()
{
this.add.image(400, 300, 'sky');
var particles = this.add.particles('red');
var emitter = particles.createEmitter({
speed: 100,
scale: { start: 1, end: 0 },
blendMode: 'ADD'
});
var logo = this.physics.add.image(400, 100, 'logo');
logo.setVelocity(100, 200);
logo.setBounce(1, 1);
logo.setCollideWorldBounds(true);
emitter.startFollow(logo);
}
</script>
</section>