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