From 7650a49674e2dbfaaae50b6d7ed54a0140e051f7 Mon Sep 17 00:00:00 2001 From: kimura Date: Mon, 14 Feb 2022 12:03:45 +0900 Subject: [PATCH] =?UTF-8?q?=E5=BC=9F=E3=81=AE=E3=83=91=E3=83=BC=E3=83=86?= =?UTF-8?q?=E3=82=A3=E3=82=AF=E3=83=AB=E9=9D=9E=E8=A1=A8=E7=A4=BA=E3=82=92?= =?UTF-8?q?=E6=94=B9=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs index d99f1f09..7e6adc1e 100644 --- a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs +++ b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/BrotherPinkView.cs @@ -271,7 +271,7 @@ public class BrotherPinkView : SingletonMonoBehaviour { animator.speed = active ? 1f : 0f; animator.transform.localScale = active ? Vector3.one : Vector3.zero; - animator.GetComponentInChildren()?.transform.SetLocalScale(active ? 1f : 0f); + animator.GetComponentInChildren(true)?.transform.SetLocalScale(active ? 1f : 0f); } } }