sreadixl

Results 4 comments of sreadixl

I am seeing this issue was well, but currently only on older Android devices and on Kindle devices. Android device is a Samsung Galaxy S6 running Android 5, and the...

Someone posted some code to fix the rounded rect issue in #3955 and it works for me - the only issue is that it doesn't create the exact same rect...

> Compare [v3.24.1](https://codepen.io/samme/pen/BadpJrv?editors=0010) vs [v3.55.2](https://codepen.io/samme/pen/gOxgoed?editors=0010). That doesn't show the issue I was referring to - though the emit point seems to be different - but you can see the issue...

The solution I ended up going with is ``` this.input.on(Phaser.Input.Events.GAME_OUT, (time, event) => { if (event instanceof MouseEvent) { this.input.manager.onMouseUp(event); } }); ``` The one "gotcha" with this is the...