Help with coding plss

@EMMA is listen_nod_happy_loop AND EMMA does it while idle_sit_neutral_loop

@DYLAN is yawn_bored AND DYLAN does it while idle_sit_neutral_loop

in the preview it doesnt show that theyare doing it. they sit but they are not listen_nod_happy_loop and yawn_bored. whats wrong?

1 Like

You’re trying to make them do two animations at once, and the does it while command is for the walking to spot command.

1 Like

Try this:
@EMMA starts listen_nod_loop AND EMMA does it while idle_sit_neutral_loop AND DYLAN starts yawn_bored AND DYLAN does it while idle_sit_neutral_loop

its still doesnt show it on the preview

You can’t combine two animations like that. If you want to make it look like your characters are sitting, you have to zoom on them if you want them to do non sitting animations

Because characters cannot do two animations at once.

The script will skip to the last animation if you combine them like that. I’d suggest putting a pause in between so that the script will not skip through the first animation.
I just gonna take it as you want both Emma and Dylan to do the first animation at the same time.

Example:
@EMMA is listen_nod_happy_loop AND DYLAN is yawn_bored
@pause for a beat ← You can put however long you want.
@EMMA is idle_sit_neutral_loop AND DYLAN is idle_sit_neutral_loop

^Also, the spot coordinates for sitting and standing animations are totally different, you may need to re-spot them.
“does it while” should be used if the character is walking while doing an animation. So is or starts is recommended if they aren’t walking.

1 Like

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