From e20e6635778e458bb3560b39d36f5aaa93348323 Mon Sep 17 00:00:00 2001 From: fdavin <fransdavin19@gmail.com> Date: Sat, 15 Apr 2023 17:02:12 +0700 Subject: [PATCH] feat: shop activation --- Assets/Scripts/Quest/QuestManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Quest/QuestManager.cs b/Assets/Scripts/Quest/QuestManager.cs index 98be183..17dc33c 100644 --- a/Assets/Scripts/Quest/QuestManager.cs +++ b/Assets/Scripts/Quest/QuestManager.cs @@ -209,7 +209,7 @@ public class QuestManager : MonoBehaviour //Turn My game object that is set to false(off) to True(on). shop.SetActive(true); //Turn the Game Oject back off after 1 sec. - yield return new WaitForSeconds(5); + yield return new WaitForSeconds(10); //Game object will turn off shop.SetActive(false); } -- GitLab