Kissing position is going wrong in the scene

How to turn the character in the other direction

1 Like

And how to make a certain duration of an animation (for example a kiss) How to make an animation last the desired time, for example 7 seconds; 17 seconds; 28 seconds;

1 Like

@CHAR faces left
@CHAR faces right

1 Like

if the animation is looping just add pause under it
@pause for 10

1 Like

And how to finish the animation and return to its original position For example, the character sat and then put it back by default. Or so that the animation of the conversation is when he speaks

1 Like

you end the animation so that you start new animation.
If you changed the position you have to change the position angain

1 Like

you are asking questions about the basic directing - so maybe you should first go throung the basic directing tutorials.

you can find good one here:

1 Like

And how to animate the camera zoom. Approaching / removing not only the background but the entire scene completely together with the characters

I am not sure if you talk about zoom. :thinking:

If you want to show all zones this is done with command pan

It works only on backgrounds with more zones

The command is

&pan to zone #
&pan to zone # in T

#is for zone number
T is time in seconds

so if you are in zone 1 and want to pan to zone 3 you give a command and you want the pan to last 6 seconds:

&pan to zone 3 in 6

and if you really meant zoom:

som other threads that can help:

1 Like

How to animate a kiss in a horizontal position position the character in a horizontal position

When creating a kiss, for some reason, there is a delay between the characters. How to fix it so that the characters interact at the same time?

Can you post your code?

Post here?

Yes please!

INT. BRISTOLS DORM ROOM - DAY
@zoom on 0 0 to 100% in 0

@zoom on 320 363 to 159% in 3
@EKATERINA spot 1.280 245 23 in zone 2
@EKATERINA moves to layer 2
@JARASLAVA spot 1.280 155 13 in zone 2
@JARASLAVA moves to layer 1

@pause for 3

@EKATERINA spot 1.280 211 9 in zone 2
@EKATERINA is kiss_dip_give_rear
@JARASLAVA spot 1.280 205 26 in zone 2
@JARASLAVA moves to layer 1
@JARASLAVA is kiss_dip_receive

First the first character bends, then the second. How to make them both tilt at the same time

And when returning to the starting position, the delay of the second character again
@zoom on 0 0 to 100% in 0
@EKATERINA spot 1.280 245 23 in zone 2
@EKATERINA moves to layer 2
@JARASLAVA spot 1.280 155 13 in zone 2
@JARASLAVA moves to layer 1
@EKATERINA is kiss_makeout_loop_rear
@JARASLAVA is kiss_makeout_loop

How do you place the characters horizontally?
In stories, such positions (kiss in a horizontal position) are present

You need to use & instead of @ for the first one. So:

INT. BRISTOLS DORM ROOM - DAY
@zoom on 0 0 to 100% in 0

&zoom on 320 363 to 159% in 3
&EKATERINA spot 1.280 245 23 in zone 2
&EKATERINA moves to layer 2
&JARASLAVA spot 1.280 155 13 in zone 2
&JARASLAVA moves to layer 1

@pause for 3

&EKATERINA spot 1.280 211 9 in zone 2
&EKATERINA is kiss_dip_give_rear
&JARASLAVA spot 1.280 205 26 in zone 2
&JARASLAVA moves to layer 1
&JARASLAVA is kiss_dip_receive

@pause for 3

This is likely just an animation. I don’t know which one off the top of my head but I’ll check when I’m back on my computer and see if I can figure it out.

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