Hi!
I have problem with animation of background. What happens on right side screen?
This video present the problem : http://youtu.be/DJNNk4YClzU
Source responsible for this
local tlo = display.newImage("tlo.png")
local tlo2 = display.newImage("tlo.png")
tlo.x = 0
tlo2.x = 959
local function przesuwaj(event)
tlo.x = tlo.x - 15
tlo2.x = tlo2.x - 15
if (tlo.x + tlo.contentWidth) \< 0 then
tlo.x = tlo.x + 959
end
--tlo2.contentWidth
if (tlo2.x + tlo2.contentWidth) \< 960 then
tlo2.x = tlo2.x + 959
end
end
image resolution is W 959 H 320
Please Help and Thanks for answers [import]uid: 117910 topic_id: 20473 reply_id: 320473[/import]
[import]uid: 52491 topic_id: 20473 reply_id: 80306[/import]