Created
May 10, 2017 00:44
-
-
Save photonstorm/2561a180b3ebe90895c16b76b52e76ac to your computer and use it in GitHub Desktop.
Phaser Game Config Object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var conf = { | |
width: 800, | |
height: 600, | |
renderer: Phaser.AUTO, | |
parent: 'phaser-example', | |
transparent: false, | |
antialias: false, | |
state: this, | |
scaleMode: Phaser.ScaleManager.EXACT_FIT | |
}; | |
var game = new Phaser.Game(conf); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment