charlie_says Posted September 22, 2018 Share Posted September 22, 2018 I've looked through the examples, done a bit of experimenting & further googling and am still stuck. I've got a resizing solution in place (with the scale manager) which works fine on all devices, with the exception of smaller iOS landscape (so definitely Iphone SE, but probably others). The issue there is the address bar and info bar appear in, overlaying the screen, without correctly setting the innerHeight (or not calling the resize function after they've appeared.) Anyone got any ideas or examples of resizing that works in this scenario? Link to comment Share on other sites More sharing options...
charlie_says Posted September 23, 2018 Author Share Posted September 23, 2018 :S Ok, after quite a lot of playing around, it seems that this.game.scale.onSizeChange.add(this.onResize, this); is unreliable on ios with smaller screens and is better replaced by: window.onresize = this.onResize.bind(this); Link to comment Share on other sites More sharing options...
Recommended Posts