I am working on an Android game that has background movement using a display group called scene. I added a platform to the group. When I cause an object to collide with the platform, it works just fine, but I find that there is also an invisible platform created adjacent to the visible platform. It has to do with the moveCamera() function. The following snippets of code are the heart of the problem. If I delete the moveCamera() function, everything works great, but I need the scene to move. Any advice is appreciated.
platform = display.newImage( "platform.png", 100, 100)
physics.addBody( platform, "static", borderBodyElement )
platform.name = "platform"
scene:insert(platform)
-- Camera follows cat automatically
local function moveCamera()
if (cat.x > 80 and cat.x < 1100) then
scene.x = -cat.x + 80
end
end