Here’s my config.lua file:
application = { content = { width = 320, height = 480, scale = "letterbox", xAlign = "center", yAlign = "top", fps = 30, imageSuffix = { ["@2x"] = 1.5, ["@4x"] = 3.5, } } }
The iPad Pro is 2048 x 2732, and the iPad Air 2 is 1536 x 2048. Both are bigger than my @4x images.
Taking one of my background images as an example - background.png is 360 x 570. background@4x.png is 1440 x 2280.
What’s best practice when it comes to the larger iPads? Adding in a set of @6x images seems like it would increase the bundle size of the app by quite a lot - and I can’t see this in the docs anywhere either.
Thanks in advance!