Circular Movement

I want to make an object that will move in a circular pattern. Is there a way to do that? Thanks in advance!

Check this example and when you have the object attached to the parent object just apply a permanent force or Angle or Rotate to the child you want to rotate
https://editor.gdevelop-app.com/?project=https://resources.gdevelop-app.com/examples/pin-object-to-another/pin-object-to-another.json

2 Likes

:thinking: You can try to use the sine function too

2 Likes

And cosine, as in xPos = cosine(angle), yPos = sin(angle), where angle is incremented each frame.