jcdiprose Posted May 19, 2015 Share Posted May 19, 2015 I wanted to make the stage fill the browser window, it to have no elements added, and for it to be clickable. I was having trouble doing so, so to hack a way to do it I implemented this and the stage was then clickable. this.bgCover = new PIXI.Sprite.fromImage('img/bgCover.png'); this.bgCover.interactive = true; this.bgCover.anchor.set(0.5,0.5); this.bgCover.x = this.width/2; this.bgCover.y = this.height/2; this.bgCover.width = this.width; this.bgCover.height = this.height; this.stage.addChild(this.bgCover);bgCover is a 1px,1px transparent png. I am sure there is a way to do this without my hack. Can anyone enlighten me? Cheers,Jon Quote Link to comment Share on other sites More sharing options...
xerver Posted May 19, 2015 Share Posted May 19, 2015 Just setting the width/height should do it, why do you also need to position it centered? It defaults to 0,0 with a 0,0 anchor. The interaction manager needs to handle viewport-level events more cleanly than it does now. It is on my list of interaction manager improvements. https://github.com/GoodBoyDigital/pixi.js/issues/1825 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.