I’m trying to have multiple objects inside a group (all static objects that need to move in a group…), the default positions are 0,0 0,20 and 0,40 and the collision works… now if I put them in a group and move the group the physical rects move, but the collision stays the same (I collide with invisible cubes?) any idea why this is happening? The only way I can move them in a group is using a for loop like:
local cPos = 100
for i = 1,group.numChildren do
group[i].x = 200+cPos
cPos = cPos + 10
end
And this works, but I want to be able to use transitions (to move the group back and forth) and when I do this I’d need to create 3 transitions which could get VERY messy 
Any idea why collisions aren’t updating objects in groups? Is there something I’m missing or another way I can move them all at once?
Thanks in advance
[import]uid: 9033 topic_id: 2074 reply_id: 302074[/import]