Hi guys,
I’m new with Corona and trying to create my first game. A 2d scroller. However, I’m experiencing something weird with scale set to letterbox.
If I set the scale to letterbox in the config file, the left part of the screen will glitch ( .5 centimeters of the screen goes black for a split-second) everytime the scrolling image resets its position. This happens when the app is tested on a real device. The simulator will show the intended result. I have tested on three different android devices.
If the scale is set to zoomEven, the app works just fine in both simulator and on a real device.
Config file looks like this atm.:
application =
{
content =
{
width = 320,
height = 480,
scale = “zoomEven”, (letterbox will mess it up)
fps = 30,
antialias = false,
xAlign = “center”,
yAlign = “center”,
imageSuffix =
{
["@2"] = 2
}
}
}
Am I missing something important or is this a bug or???
Regards
Kenneth
P.s. I use 2 images to create the scrolling effect.