From 85333eaea7e394b22869ca708274a6429d3a7146 Mon Sep 17 00:00:00 2001 From: kimura Date: Thu, 30 Sep 2021 15:09:21 +0900 Subject: [PATCH] =?UTF-8?q?Corn=5Fsave=E6=99=82=E9=96=93=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Scenes/CornField/Scripts/CornSeedlingStageView.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/popcorn/Assets/MyGame/Scenes/CornField/Scripts/CornSeedlingStageView.cs b/popcorn/Assets/MyGame/Scenes/CornField/Scripts/CornSeedlingStageView.cs index 1eaf6ec7..d36113f1 100644 --- a/popcorn/Assets/MyGame/Scenes/CornField/Scripts/CornSeedlingStageView.cs +++ b/popcorn/Assets/MyGame/Scenes/CornField/Scripts/CornSeedlingStageView.cs @@ -32,7 +32,7 @@ public class CornSeedlingStageView : MonoBehaviour break; case SeedlingStage.Stage2: seedlingStage1.SetTrigger(Save); - this.CallWaitForSeconds(1f, () => + this.CallWaitForSeconds(.25f, () => { SetView(stage); seedlingStage2.SetTrigger(Grow); @@ -40,7 +40,7 @@ public class CornSeedlingStageView : MonoBehaviour break; case SeedlingStage.Stage3: seedlingStage2.SetTrigger(Save); - this.CallWaitForSeconds(1f, () => + this.CallWaitForSeconds(.25f, () => { SetView(stage); seedlingStage3.SetTrigger(Grow); @@ -48,7 +48,7 @@ public class CornSeedlingStageView : MonoBehaviour break; case SeedlingStage.Stage4: seedlingStage3.SetTrigger(Save); - this.CallWaitForSeconds(1f, () => + this.CallWaitForSeconds(.25f, () => { SetView(stage); seedlingStage4.SetTrigger(Grow);