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
link|improve this question

Is the moving object also part of "scene"? Physics only work within a display group, not between groups. – jhocking Sep 6 '11 at 16:01
feedback

1 Answer

up vote 0 down vote accepted

Is the moving object also part of "scene"? Physics only work within a display group, not between groups.

link|improve this answer
Yes. All the objects are part of a group called scene. – Jerry Adkins Sep 6 '11 at 15:49
This should have been a comment. I'll re-ask as a comment and delete this answer. – jhocking Sep 6 '11 at 16:00
I have narrowed it down to the moveCamera() function. If I comment out the line scene.x = -cat.x + 80 everything works fine. Of course, the scene doesn't scroll back and forth after disabling the function. – Jerry Adkins Sep 6 '11 at 22:24
It was poor wording on my part. It is a display group named "scene." which The other display group doesn't move, which is intended because it will show the score. Everything works perfectly until I use the moveCamera function, then the visible objects in the group move fine, except the physics of the objects don't move. This leaves the whole display a mess, with collisions taking place on unexpected areas of the display. Yes, the moving object is part of the display group named scene. – Jerry Adkins Sep 9 '11 at 15:41
After reading the last post from jhocking, I decided to remove the moving object from the display group, and try it again. I am thinking having the moving object as part of the display group could cause probjems. The display moves much more smoothly now, but the physics are still lagging behind the body objects in the display group. As an example, the moving object falls through the platform, but will not fall through an empty area on the display adjacent to the platform. I hope this makes sense. Thanks for all the help so far. – Jerry Adkins Sep 9 '11 at 16:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.