Moving multiple objects of the same kind, a fixed distance

I am currently making a game where I have several platforms flying around the screen. I have grouped all of them using the display.newGroup() and inserting them into that group. I would like to move these multiple platforms (which are all the same) a fixed distance at the same time. How would I do that?

I have tried using translation, but then, it seems that I can not move all of them a ‘fixed’ distance using it. Is there any other option?

Hi @hyeonjun93,

Using a transition.to() on the display group should be exactly what you need. What is not working for you?

Best regards,

Brent

Hi @hyeonjun93,

Using a transition.to() on the display group should be exactly what you need. What is not working for you?

Best regards,

Brent