Animating characters

I am trying to have my character walk up another character (while they are walk_rear) to kiss them but when the transition between the walking and kissing happens the character then faces the front then turns around and proceeds kissing.
Sorry if this doesnt make any sense…

This is the block of script that does it:
@MATEO is apply_lipstick AND EMILIA is laugh_guffaw
@MATEO is flirt_shy
@pause for a beat
@EMILIA walks to spot 0.873 181 132 in 1 AND EMILIA is walk_rear AND EMILIA faces right
@MATEO is kiss_passionate AND EMILIA is kiss_passionate_rear

THIS IS WHAT HAPPENS WHEN I PREVIEW IT:
@EMILIA walks to spot 0.873 181 132 in 1 AND EMILIA is walk_rear AND EMILIA faces right
*Emilia walks to Mateo and faces front then looks back at Mateo
@MATEO is kiss_passionate AND EMILIA is kiss_passionate_rear

That thing happens when ur ch walks too fast or too slow
Try putting some pauses between those two lines :))

1 Like

I’ve had the same issue before

Try instead of @CHAR is animation

Do @CHAR does it while animation

1 Like

@EMILIA walks to spot .873 181 132 in 1 AND EMILIA faces right AND EMILIA does it while walk_rear
@MATEO is kiss_passionate AND EMILIA is kiss_passionate_rear

1 Like

Change the 1 second to 2.

This is a very common mistake, there’s a split second when following the code. The system will recognize it as:

@EMILIA walks to spot 0.873 181 132 in 1 AND EMILIA is walk_rear AND EMILIA faces right
@EMILIA is idle
@EMILIA is kiss_passionate_rear”

The only way to fix it:

@EMILIA walks to spot 0.873 181 132 in 1 AND EMILIA is walk_rear AND EMILIA faces right THEN @EMILIA is kiss_passionate_rear AND @MATEO is kiss_passionate

3 Likes

:face_with_monocle:

2 Likes

Thankyou for your time and help xx

1 Like

Thankyou so very much, this was the correct solution to my problem xx

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