diff --git a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs index 09e3292d..c8ca90ed 100644 --- a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs +++ b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs @@ -150,6 +150,7 @@ public class BrotherPinkView : SingletonMonoBehaviour public void StartPromotion() { isPromotion = true; + animator.ResetTrigger(Normal); animator.SetTrigger(Promotion); Vector3 localPosition = RightPos; localPosition += Vector3.forward * (localPosition.y + Mathf.Abs(walkSideBottomPos)); @@ -168,12 +169,14 @@ public class BrotherPinkView : SingletonMonoBehaviour var time = stateInfo.normalizedTime; this.CallWaitForSeconds((1 - time % 1) * length - .3f, () => { + animator.ResetTrigger(Promotion); ResetMove(); isPromotion = false; }); return; } } + animator.ResetTrigger(Promotion); ResetMove(); isPromotion = false; }