I need help with a character entering a limo. And I need the limo exiting from the right side of the screen in zone 1. The vehicle name is CAR SIDE LIMO, and the background EXT. BRICK MANSION - DAY.
The script is
EXT. BRICK MANSION - DAY with CAR SIDE LIMO
&zoom reset
&cut to zone 1
&CHARACTER spot 0.686 230 179 in zone 1 AND CHARACTER is read_phone_neutral_loop AND CHARACTER moves to layer 1 AND CHARACTER faces left
&overlay CAR SIDE LIMO shifts to -601 -16 in zone 1
&overlay CAR SIDE LIMO scales to 1.000 1.000
&overlay CAR SIDE LIMO moves to layer 3
@pause for 1
@overlay CAR SIDE LIMO shifts to -195 -16 in zone 1 in 2.0
@overlay CAR SIDE LIMO scales to 1.000 1.000 in 2.0
@overlay CAR SIDE LIMO moves to layer 3
plz help
Is there an error with the code you provided?
You’ll need to make your character walk towards the limo door, then an animation where the character is transitioning from stand to sit and then move the character a layer below the limo.
To make the character walk
@CHARACTER walks to spot x y z
Or if you want the character to do a specific walking animation when walking:
@CHARACTER walks to spot x y z AND CHARACER is ANIMATION
Then
@CHARACTER is transition_stand_to_sit THEN CHARACTER moves to layer 1
For when you want the limo AND character to move, you’ll need to do
@CHARACTER spot x y z in s
s= The amount of time in seconds you want the character to get to the spot (which should be the same time the car moves there, so maybe 1.8 for good measure.)
Make sure to not do @CHARACTER walks to spot x y z or the character will stand up and not be the correct height according to the car.
Did it help?