Re: How do I stop the animation portraid
Posted: Thu Aug 25, 2022 8:36 am
Hi,
The checkboxes are on the StandardDialogueUI and StandardUISubtitlePanel components:
If your version doesn't have those checkboxes, try something like:
The first line will play the Angry state on Portrait Image's Animator at the 0.5-second mark.
The second line will play the Idle state on Portrait Image's Animator after the duration specified by {{end}}, or sooner if the player clicks the continue button to skip ahead.
The checkboxes are on the StandardDialogueUI and StandardUISubtitlePanel components:
If your version doesn't have those checkboxes, try something like:
Code: Select all
AnimatorPlay(Angry, Portrait Image)@0.5;
required AnimatorPlay(Idle, Portrait Image)@{{end}};
The second line will play the Idle state on Portrait Image's Animator after the duration specified by {{end}}, or sooner if the player clicks the continue button to skip ahead.