Reading the docs it says that different image sizes will kick in when display.pixelWidth / display.actualContentWidth is greater than or equal to the value of the value assigned to your image suffix. No matter what I’m doing display.actualContentWidth is printing out 0… making the value infinity… I’ve tried all kinds of diff projects and diff config.lua files but I’m having the same problem no matter what. Any ideas??
-------------------------------------------------------------------------------- -- config.lua -------------------------------------------------------------------------------- print(display.pixelWidth) print(display.actualContentWidth) print( display.pixelWidth / display.actualContentWidth ) application = { content = { width = 768, height = 1024, scale = "letterbox", fps = 60, imageSuffix = { ["@2x"] = 1.5, } } }