OwlCyberSecurity - MANAGER
Edit File: titlescreen.js
var titleScreen = function(game) { GameTitle = "ben-swolo-dress-up"; } titleScreen.prototype = { create: function() { CenterX = this.world.centerX; CenterY = this.world.centerY; Cover = this.add.image(0,0,"cover"); Play_Btn = this.add.button(231,435,"play_btn",function(){},this,1,0,2); Play_Btn.anchor.setTo(0.5,0.5); Play_Btn.events.onInputUp.add(function(){this.state.start("DressUp");},this); Logo = this.add.button(232,561,"logo",function() { window.open("http://www.dolldivine.com/?utm_source="+ GameTitle + "&utm_medium=html5game","_blank"); },this,2,0,1); Logo.anchor.setTo(0.5,0.5); }, update: function() { }, }