All Questions
2 questions
0
votes
1
answer
193
views
buttons on scaled and rotated stage in pixi js does not respond to touch events
I am working on a game with pixi js. to make the game look normalized on every screen,
im scaled the stage as follows
this.scale=Math.max(this.viewWidth, this.viewWidth) / (2048 * this.ratio);
and on ...
0
votes
1
answer
114
views
Not able to make sprite interaction to work
I'm trying to build a simple game menu, containing some clickable sprites, which will be used as buttons to navigate around the menu.
( I'm using the latest pixi.js (v4.3.5) )
Structure of my app:
...