I FIXED IT

This commit is contained in:
yauwailam 2025-02-14 09:44:51 +08:00
parent b284e6b007
commit 08ea77e75c

View file

@ -35,7 +35,7 @@ public class GoToSchool : MonoBehaviour
void Awake() void Awake()
{ {
Debug.Log("IM AWAKE"); Debug.Log("IM AWAKE");
DontDestroyOnLoad(gameObject); // DontDestroyOnLoad(gameObject);
gameManager = GameManager.Instance; // Reference to GameManager instance gameManager = GameManager.Instance; // Reference to GameManager instance
Debug.Log("currentday: " + gameManager.currentDay); Debug.Log("currentday: " + gameManager.currentDay);
if (storyPanelUI == null) if (storyPanelUI == null)
@ -95,13 +95,15 @@ public class GoToSchool : MonoBehaviour
hasTriggered = true; hasTriggered = true;
StartCoroutine(FadeInAndLoadScene()); StartCoroutine(FadeInAndLoadScene());
gameManager.GoToSchoolTaskComplete(); gameManager.GoToSchoolTaskComplete();
gameManager.IncrementDay();
} }
} }
else if (!hasTriggered && other == schoolTrigger) // Normal case for Day 1 else if (gameManager.currentDay == 1) // Normal case for Day 1
{ {
hasTriggered = true; hasTriggered = true;
StartCoroutine(FadeInAndLoadScene()); StartCoroutine(FadeInAndLoadScene());
gameManager.GoToSchoolTaskComplete(); gameManager.GoToSchoolTaskComplete();
gameManager.IncrementDay();
} }
} }
@ -125,8 +127,6 @@ public class GoToSchool : MonoBehaviour
yield return new WaitForSeconds(1f); // Small delay to ensure scene transition yield return new WaitForSeconds(1f); // Small delay to ensure scene transition
gameManager.IncrementDay(); // Now called *after* scene fully loads
xrRig.ResetingPosition(); xrRig.ResetingPosition();
} }