Hello, 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 orientation change I am rotating the whole stage.
now my problem is, if i have any buttons on stage, who are at top or at right side of stage, they do not respond to any touch event. Please help i'm in a very big trouble.
I tried to use mappositiontopoint as well. bu