OwlCyberSecurity - MANAGER
Edit File: boot.js
var boot = function(game) { } boot.prototype = { preload: function() { this.load.image("background","img/bg.png"); this.load.image("logo2","img/logo2.png"); this.load.atlas("background_details","img/bg_details.png","img/bg_details.json"); //this.load.image('more_games',window.famobi.getMoreGamesButtonImage()); }, 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"); } }