OwlCyberSecurity - MANAGER
Edit File: boot.js
var boot = function(game) { } boot.prototype = { preload: function() { this.load.image("loading_bg","img/loading_bg.png"); this.load.atlas("logo_btn","img/buttons/logo_btn.png","img/buttons/logo_btn.json"); }, create: function() { this.scale.scaleMode = Phaser.ScaleManager.SHOW_ALL; this.scale.pageAlignHorizontally = true; this.scale.pageAlignVertically = true; this.scale.setMinMax(this.width/2,this.height/2,this.width,this.height); this.state.start("Preload"); } }