Please can someone show me how to keep my characters in the size i want as they run from one zone to the other, i tried using the spot helper but it keeps given me error.
Can you paste here the code?
Also welcome to Episode Forums!
EXT. GREEK GAMES TRACK STATIC - DAY
@BRIAN changes into BRIAN_SPORTSWEAR
@CHARLIE changes into CHARLIE_SPORTSWEAR
@STEPHAN changes into STEPHAN_SPORTSWEAR
@BRIAN spot 1.019 47 220 in zone 1 AND BRIAN faces right AND CHARLIE spot 1.037 34 114 in zone 1 AND CHARLIE faces right AND STEPHAN spot 0.911 31 110 in zone 1 AND STEPHAN faces right AND COACH spot 0.641 109 370 in zone 2 AND COACH faces left
@pause for a beat
@pan to zone 2
COACH (talk_armsraised_neutral)
Be set! ready, go.
@pause for a beat
@cut to zone 1
&follow BRIAN to spot 1.019 257 258 in zone 3 AND BRIAN is run_athletic_neutral_loop THEN BRIAN faces left
&follow CHARLIE to spot 1.037 266 156 in zone 3 AND CHARLIE is run_athletic_neutral_loop THEN CHARLIE faces left
&follow STEPHAN to spot 0.911 284 134 in zone 3 AND STEPHAN is run_athletic_neutral_loop THEN STEPHAN faces left
@pause for a beat
Thanks
where do you get the error ?
You’re using the follow command with spot direction. Instead:
&pan to zone 3
&BRIAN walks to spot 1.019 257 258 in zone 3 AND BRIAN does it while run_athletic_neutral_loop THEN BRIAN faces left
&CHARLIE walks to spot 1.037 266 156 in zone 3 AND CHARLIE does it while run_athletic_neutral_loop THEN CHARLIE faces left
@STEPHAN walks to spot 0.911 284 134 in zone 3 AND STEPHAN does it while run_athletic_neutral_loop THEN STEPHAN faces left
Can read more on spot direction here:
Example:
&follow BRIAN to spot 1.019 257 258 in zone 3 AND BRIAN is run_athletic_neutral_loop THEN BRIAN faces left
&follow CHARLIE to spot 1.037 266 156 in zone 3 AND CHARLIE is run_athletic_neutral_loop THEN CHARLIE faces left
&follow STEPHAN to spot 0.911 284 134 in zone 3 AND STEPHAN is run_athletic_neutral_loop THEN STEPHAN faces left
Well, if you use spot directing you can’t use the follow command
And I’d suggest you use the does it while command
&pan to zone 3 in 2
&BRIAN walks to spot 1.019 257 258 in zone 3 in 2 AND BRIAN does it while run_athletic_neutral_loop THEN BRIAN faces left
&CHARLIE walks to spot 1.037 266 156 in zone 3 in 2 AND CHARLIE does it while run_athletic_neutral_loop THEN CHARLIE faces left
@STEPHAN walks to to spot 0.911 284 134 in zone 3 in 2 AND STEPHAN does it while run_athletic_neutral_loop THEN STEPHAN faces left
Notes
- I added “in 2” as in it’ll take 2 secs for everything to happen but really you can use any number (keeping it consistent)
- Seconds can be any number, even decimals, even 0, they just can’t go backwards as time doesn’t go backwards. Though if a person is running or walking, having 0 seconds doesn’t make sense.
EXT. GREEK GAMES TRACK STATIC - DAY
&BRIAN spot 1.019 47 220 in zone 1 AND BRIAN faces right
&CHARLIE spot 1.037 34 114 in zone 1 AND CHARLIE faces right
&STEPHAN spot 0.911 31 110 in zone 1 AND STEPHAN faces right AND COACH spot 0.641 109 370 in zone 2 AND COACH faces left
@BRIAN changes into BRIAN_SPORTSWEAR
@CHARLIE changes into CHARLIE_SPORTSWEAR
@STEPHAN changes into STEPHAN_SPORTSWEAR
@cut to zone 1
@pause for a beat
@pan to zone 2
COACH (talk_armsraised_neutral)
Be set! ready, go.
@pause for a beat
@cut to zone 1
&BRIAN walks to spot 1.019 257 258 in zone 3 AND BRIAN does it while run_athletic_neutral_loop THEN BRIAN faces left
&CHARLIE walks to spot 1.037 266 156 in zone 3 AND CHARLIE does it while run_athletic_neutral_loop THEN CHARLIE faces left
@STEPHAN walks to spot 0.911 284 134 in zone 3 AND STEPHAN does it while run_athletic_neutral_loop THEN STEPHAN faces left
@pause for a beat
Ok thanks will try that
Thanks everyone for the help, it worked
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.