So, I am making a 16-bit style game, started using what construct suggests as the best option for pixel art screen on mobile: letterbox integer scale, which meals pixels the aspect of the pixels are never "distorted"
But since that also means I can only choose one aspect ratio, and if the user's screen has a different one (I'm using 16:9 which was perfect until recently when modern phones got wider) the screen will add annoying black bars on the side, I changed the fullscreen mode to "Inner Scale", which annoyingly changed a lot of positions for objects created with the "system create object" (why this if the viewport size is always the same???)
So my question is, isn't there another option for having a fullscreen mode, that doesn't show stuff outside the viewport screen, and also does not distort pixels appearance?
developers who want the game to adjust itself to any mobile phone screen aspect ratio, and using pixel art, are stuck with having a game with its art sometime distorted?
I appreciate any comment on this;