(SOLVED)How do i change an array variable with another variable

im trying to make the circle go around the center of the screen but i want it to work with many circles so i made it an array, the image is my current code but the circle does not move

  1. You are using circles[currentCircle].currentAngle, but increasing circles[currentCircle].angle
  2. Are you sure circles is an array? You’re treating it like a structure, so maybe define it as such.
  3. What is tracks - an array of structures?
  4. Can you screen shot how you defined tracks and circles?
  5. Could you describe what you are trying to achieve?
1 Like

i figured it out you were right, it was an array

1 Like