Help im trying to get my overlays to infinite loop

I am trying to make it where the tires of the car are continuously moving but for some reason, my infinite looping won’t work, can someone help me, please?

@overlay EXT. LUXURY CAR AQUA PROFILE FLIPPED - DAY shifts to 53 142 in zone 1 in 2 THEN overlay EXT. LUXURY CAR AQUA PROFILE FLIPPED - DAY scales to 0.310 0.310 in 2 THEN overlay WHEEL 1 rotates 180 anchor point 0.5 0.5 in 2 loop INFINITE times THEN overlay WHEEL 2 rotates 180 anchor point 0.5 0.5 in 2 loop INFINITE times THEN overlay WHEEL 2 shifts to 91 166 in zone 1 in 2 THEN overlay WHEEL 2 scales to 0.239 0.239 in 2 THEN overlay WHEEL 1 shifts to 234 166 in zone 1 in 2 THEN overlay WHEEL 1 scales to 0.239 0.239 in 2

You need to use & instead of @ and the loop INFINITE times code has to be at the very end. It looks like you’re trying to rotate multiple wheels on the same line so just break wheel 1 and wheel 2 into 2 different lines and that should help.

1 Like

Ok so i separated them and added the & sign in front but they are still not spinning continuously and I want the wheels to align with the car wheels as it is driving out from the left side but I cant get them to stay together?

&overlay EXT. LUXURY CAR AQUA PROFILE FLIPPED - DAY shifts to 53 142 in zone 1 in 2 AND overlay EXT. LUXURY CAR AQUA PROFILE FLIPPED - DAY scales to 0.310 0.310 in 2 AND overlay WHEEL 2 shifts to 91 166 in zone 1 in 2 AND overlay WHEEL 2 scales to 0.239 0.239 in 2 AND overlay WHEEL 1 shifts to 234 166 in zone 1 in 2 AND overlay WHEEL 1 scales to 0.239 0.239 in 2
&overlay WHEEL 1 rotates 180 anchor point 0.5 0.5 in 2 loop INFINITE times
&overlay WHEEL 2 rotates 180 anchor point 0.5 0.5 in 2 loop INFINITE times

You need to use the word then and put all the animations for the overlay on one line.
You can’t do it with only one action as looping does not work that way. Try this and see if it works better.

&overlay WHEEL 1 rotates 180 anchor point 0.5 0.5 in 2 then overlay WHEEL 1 rotates 0 anchor point 0.5 0.5 in 0 loop INFINITE times
&overlay WHEEL 2 rotates 180 anchor point 0.5 0.5 in 2 then overlay WHEEL 2 rotates 0 anchor point 0.5 0.5 in 0 loop INFINITE times

1 Like

Thank you it worked!!!

1 Like

Great! :two_hearts::two_hearts:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.