Hi everybody,
I am making a platform videogame and i have this config.
[lua]
– config.lua
application =
{
content =
{
width = 320,
height = 480,
scale = “zoomStretch”,
imageSuffix =
{
["@2x"] = 1.5,
["@4x"] = 4,
},
},
}
[/lua]
My images are like this:
background: 320x480
background@2x: 640x960
floor : 480x64
floor@2x : 960x128
enemy : 156x40
enemy@2x: 312x80
and so on …
I would like th game works in iphone and ipad (normal and retina).
Would it work as it is now?
will apple reject my application due the new requisites?
is there a better config.lua for what i want?
Thank you in advance and excuse my bad english
Txarly