diff --git a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherBlueView.cs b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherBlueView.cs index 5db6573f..80446c35 100644 --- a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherBlueView.cs +++ b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherBlueView.cs @@ -33,6 +33,7 @@ public class BrotherBlueView : MonoBehaviour public void SetActive(bool active) { - transform.localScale = active ? initScale : Vector3.zero; + animator.speed = active ? 1f : 0f; + animator.transform.localScale = active ? initScale : Vector3.zero; } } diff --git a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs index d0f5a42a..7d4c419f 100644 --- a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs +++ b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs @@ -268,7 +268,9 @@ public class BrotherPinkView : SingletonMonoBehaviour { if (animator != null) { + animator.speed = active ? 1f : 0f; animator.transform.localScale = active ? Vector3.one : Vector3.zero; + animator.GetComponentInChildren()?.transform.SetLocalScale(active ? 1f : 0f); } } }