Well, I am trying to make a background, where 18 circles with the radius of 80 are moving on the same circular path with the same distance.
Pretty much all I got is
Code: Select all
for i=1,18 do
love.graphics.circle("fill",cos(rotation*i)*300,sin(rotation*i)*300,80,80*3)
end
I don't seem to find a way that the distance between them and the speed is the same, though I tried several things.