Hi,
I have the following three sprite sheets
- sheet.png
- sheet@2x.png
- sheet@4x.png
its working fine on iPhone4,iPhone4s ,samsung galaxy s3 and s4 but not on iPad and galaxy tabs. The images are looking blurry and pixelated. Is there anything wrong I’m doing?
Below is my config.lua
application = {
content = {
width = 320,–aspectRatio > 1.5 and 320 or math.ceil( 480 / aspectRatio ),
height = 480,–aspectRatio < 1.5 and 480 or math.ceil( 320 * aspectRatio ),
scale = “letterBox”,
xAlign = “center”,
yAlign = “center”,
imageSuffix = {
["@2x"] = 1.5,
["@4x"] = 3,
},
},
}
For more, please see the attached images.
Thanks in advance.