Forum begins after the advertisement:
[General] Death Scene doesn’t deactive and after resume error
Home › Forums › Video Game Tutorial Series › Creating a Metroidvania in Unity › [General] Death Scene doesn’t deactive and after resume error
- This topic has 7 replies, 3 voices, and was last updated 5 days, 20 hours ago by Terence.
-
AuthorPosts
-
November 26, 2024 at 9:24 pm #16558::
When I testing the function, I figure out some errors even though it wasn’t there before. Firstly is the deathscene doesn’t deactive. When my player die and i click the respawn button, the scene reload and the player get respawn. But the problem is the deathscene doesn’t deactive as you can see in the two below image
Then i pause the game to check is the gamemanager is disable or not and the game manager still there
And I found another bug that when I press escape to pause the game, then click on resume or quit to main menu, it button still work good, but if i start the game again by click the start at the main menu, then pause the game using esc. And at the second time click on resume, my character got free and cannot moving. It kinda hard to explain so I will record it you could see it below
Here the code relevant
Respawn player controller codepublic void Respawn() { if (!playerStateList.alive) { rbd2.constraints = RigidbodyConstraints2D.None; rbd2.constraints = RigidbodyConstraints2D.FreezeRotation; GetComponent<BoxCollider2D>().enabled = true; playerStateList.alive = true; Health = MaxHealth; Mana = 0; animator.Play("PlayerIdle");
}
}
Game Manager Code
using System.Collections; using System.Collections.Generic; using UnityEngine; using Cinemachine; using UnityEngine.SceneManagement; using UnityEngine.EventSystems;
public class GameManager : MonoBehaviour { // Start is called before the first frame update public string transitionFromScene; public static GameManager Instance { get; private set; }
public Vector2 respawnpoint; [SerializeField] Alter alter; [SerializeField] private fadedUI pauseMenu; [SerializeField] private float fadeTime; public bool gameIsPause; public Vector2 platformRespawnpoint; private void Awake() { if (Instance != null && Instance != this) { Destroy(gameObject); } else { Instance = this; } DontDestroyOnLoad(gameObject); alter = FindObjectOfType<Alter>(); } private void Update() { if(Input.GetKeyDown(KeyCode.P)) { SaveData.Instance.savePlayerData(); } if (Input.GetKeyDown(KeyCode.Escape) && !gameIsPause) { pauseMenu.fadeUIIn(fadeTime); Time.timeScale = 0; gameIsPause = true; } } public void UnpauseGame() { Time.timeScale = 1; pauseMenu.fadeUIOut(fadeTime); gameIsPause = false; } public void SaveGame() { SaveData.Instance.savePlayerData(); } public void respawnPlayer() { SaveData.Instance.loadAlter(); if(SaveData.Instance.altersceneName != null) { SceneManager.LoadScene(SaveData.Instance.altersceneName); } if(SaveData.Instance.alterPos != null) { respawnpoint = SaveData.Instance.alterPos; } else { respawnpoint = platformRespawnpoint; } Move.Instance.transform.position = respawnpoint; StartCoroutine(UIManager.Instance.DeactiveDeathScreen()); Move.Instance.Respawn(); }
}
UIManager Code
using System.Collections; using System.Collections.Generic; using UnityEngine;
public class UIManager : MonoBehaviour { // Start is called before the first frame update public static UIManager Instance;
[SerializeField] GameObject DeathSceen; public GameObject mapHandler; public GameObject inventory; private void Awake() { if (Instance != null && Instance != this) { Destroy(gameObject); } else { Instance = this; } DontDestroyOnLoad(gameObject.transform.root.gameObject); } public SceneFading sceneFading; public void Start() { sceneFading = GetComponentInChildren<SceneFading>(); } public IEnumerator ActiveDeathScreen() { yield return new WaitForSeconds(0.8f); StartCoroutine(sceneFading.Fade(SceneFading.fadeDirection.In)); yield return new WaitForSeconds(0.9f); DeathSceen.SetActive(true); } public IEnumerator DeactiveDeathScreen() { yield return new WaitForSeconds(0.5f); DeathSceen.SetActive(false); StartCoroutine(sceneFading.Fade(SceneFading.fadeDirection.Out)); }
}
November 27, 2024 at 1:41 pm #16561::Your issue seems to arise from this error here:
Are you able to figure out what is causing your GameManager to be disabled? Search for your scripts using the Command Prompt. Navigate to your project folder, then use
findstr /s /c:"SetActive" *.cs
to find all the scripts that deactivate a GameObject. Look for a script that deactivates your GameManager — you may have one that is unintentionally disabling your GameManager, causing the Coroutine to not run and everything else to fail.May I also know which part of the tutorial you are at?
November 27, 2024 at 6:01 pm #16563::COuld said i was in part 10.5 of the series. Before of that when i’m at the part 9 and 9,5. The UI and death scene when i’m testing is still good
and for the Error, here is what it found
But i don’t seem anything look like it making disable the gamemanager. If yes so i think it is the one in the textdescription for the item. But when i check the item description, it only have thispublic class itemDescription : MonoBehaviour { public GameObject textDesc; // Start is called before the first frame update void Start() { textDesc.SetActive(false); }
// Update is called once per frame public void Show() { textDesc.SetActive(true); } public void Hide() { textDesc.SetActive(false); }
}
should I tried by searching for the gamemanager?
November 27, 2024 at 7:57 pm #16565::It seems like you’re encountering two main issues: the death screen not deactivating after respawning, and the character getting stuck after pausing and resuming the game. Let’s break these down and troubleshoot each one step by step.
Issue 1: Death Screen Not Deactivating After Respawn
Possible Cause:
- The
DeathScreen
GameObject might not be properly deactivated due to either:- The coroutine not being executed correctly.
- A timing issue causing the coroutine to complete before the respawn logic finalizes.
Solutions:
-
Check Coroutine Execution:
Ensure that theStartCoroutine(UIManager.Instance.DeactiveDeathScreen());
call inrespawnPlayer()
is actually being invoked. Add a debug log to confirm:public IEnumerator DeactiveDeathScreen() { Debug.Log("Deactivating Death Screen..."); // Add this line yield return new WaitForSeconds(0.5f); DeathSceen.SetActive(false); StartCoroutine(sceneFading.Fade(SceneFading.fadeDirection.Out)); }
-
Ensure
DeathSceen
is Referenced Correctly:
Confirm that theDeathSceen
variable inUIManager
is assigned properly in the Inspector. -
Manual Deactivation Check:
If the coroutine timing isn’t critical, try manually setting the death screen inactive right before starting the coroutine:public void respawnPlayer() { DeathSceen.SetActive(false); // Ensure it's off immediately StartCoroutine(UIManager.Instance.DeactiveDeathScreen()); Move.Instance.Respawn(); }
-
Confirm Scene Reload Logic:
If theGameManager
object isn’t being destroyed on reload (due toDontDestroyOnLoad
), make sure theDeathSceen
is reset between scenes.
Issue 2: Player Cannot Move After Resuming the Game
Possible Cause:
- When you pause and then resume, something might not be resetting
Time.timeScale
or the player’s movement constraints correctly. - The player’s movement script might be getting disabled or frozen unintentionally.
Solutions:
-
Check Time Scale Reset:
EnsureTime.timeScale
is set to1
every time the game resumes:public void UnpauseGame() { Time.timeScale = 1; pauseMenu.fadeUIOut(fadeTime); gameIsPause = false; Debug.Log("Game unpaused, Time.timeScale reset to 1"); // Confirm reset }
-
Reset Movement Constraints:
After unpausing, check if the player’s Rigidbody constraints are correct:public void UnpauseGame() { Time.timeScale = 1; pauseMenu.fadeUIOut(fadeTime); gameIsPause = false; // Ensure the Rigidbody isn't constrained Rigidbody2D rbd2 = Move.Instance.GetComponent<Rigidbody2D>(); rbd2.constraints = RigidbodyConstraints2D.FreezeRotation; }
-
Check Player Controller State:
Verify that the player’s movement script isn’t being disabled during pause and that it correctly resumes:if (Input.GetKeyDown(KeyCode.Escape) && !gameIsPause) { // Save movement state if needed pauseMenu.fadeUIIn(fadeTime); Time.timeScale = 0; gameIsPause = true; }
-
Check if Movement Input is Blocked:
There might be a condition in your movement code that prevents inputs when the game resumes. Ensure that all relevant flags are reset:void Update() { if (!gameIsPause && playerStateList.alive) { HandleMovement(); // Only handle movement if unpaused } }
Debugging Recommendations:
- Debug Logs: Use logs inside critical functions (
Respawn()
,UnpauseGame()
, andDeactiveDeathScreen()
) to track if they are called in the correct sequence. - Pause Flow Testing: Manually step through the pause and resume process in the Unity Editor while observing variable states in the Inspector (e.g.,
Time.timeScale
,playerStateList.alive
).
This structured debugging approach should help you identify and fix the issues effectively!
It seems like the
GameManager
issue might not directly involve thisitemDescription
script. Let’s approach this step by step to locate any unexpectedSetActive(false)
calls affecting theGameManager
orDeathScreen
.1. Search for
SetActive(false)
Calls in Your Project-
Search in Unity:
- In the Unity Editor, use the search bar in the Project window and search for
SetActive(false)
. This will list all instances of the method in your scripts. - Look for any instances where the
GameManager
orDeathScreen
might be inadvertently disabled.
- In the Unity Editor, use the search bar in the Project window and search for
-
Check in Code:
Go through the search results and see if any of them reference theGameManager
or other key objects. Pay special attention to:- Scripts that are supposed to control UI elements (like
DeathScreen
orpauseMenu
). - Code related to respawning, pausing, or reloading scenes.
- Scripts that are supposed to control UI elements (like
2. Verify GameManager’s Active State
Add a debug check to ensure
GameManager
stays active during critical moments:private void Update() { if (Input.GetKeyDown(KeyCode.Escape) && !gameIsPause) { Debug.Log("Pausing game. GameManager active: " + this.gameObject.activeSelf); pauseMenu.fadeUIIn(fadeTime); Time.timeScale = 0; gameIsPause = true; } }
If
GameManager
gets deactivated unexpectedly, this will help you catch it.
3. Check the Death Screen Logic
- Ensure no script disables
GameManager
or theDeathScreen
GameObject after respawn. - Look for any logic that might hide the entire UI instead of just the death screen panel:
DeathScreen.SetActive(false); // Should only affect the death screen, not the whole UI
4. Ensure the Scene Reload Logic is Correct
- Since
GameManager
usesDontDestroyOnLoad
, it shouldn’t be affected by scene reloads. But if there’s logic explicitly reloadingGameManager
, it might cause problems. - Confirm that the
respawnPlayer()
function doesn’t unintentionally reload theGameManager
.
5. Isolate the Problem with Manual Checks
- Temporarily disable parts of the code related to UI activation/deactivation and see if the
DeathScreen
still behaves the same way. - For instance, comment out the coroutine in
respawnPlayer()
:// StartCoroutine(UIManager.Instance.DeactiveDeathScreen()); DeathScreen.SetActive(false); // Directly deactivate for testing
6. Additional Debugging:
- Breakpoints: Use breakpoints in the Visual Studio debugger on the
SetActive()
calls to see when and why they are triggered. - Logging: Add logs in your
itemDescription
class to ensuretextDesc
activation/deactivation doesn’t affect other objects:public void Show() { Debug.Log("Showing item description."); textDesc.SetActive(true); }
By carefully searching for
SetActive(false)
calls and adding debug checks, you should be able to pinpoint where the issue lies. Let me know if you need help analyzing any specific code fragments you find!has upvoted this post. November 27, 2024 at 8:53 pm #16579::So as your recommend. I add this code in to the deactiveDeathsceen in UIManager
public IEnumerator DeactiveDeathScreen() { Debug.Log("Deactivating Death Screen…"); yield return new WaitForSeconds(0.5f); DeathSceen.SetActive(false); StartCoroutine(sceneFading.Fade(SceneFading.fadeDirection.Out)); }
and then tried it, well we could said the problem was here, this is what the console print out
And fot the checking the UIManager assign, i could confirm that i had assign it correct you could see 2 pictures below
The first image is the canvas UIManager in the hierachy. And the second one is the canvas UIManager in the Prefab setting
For the third recommend, it hard to do because the DeathSceen is the gameobject in the UI Manager as you could see below
and the respawn was in the GameManager script so how could i call it to?
and for the last recommend, it could be see here in this record
Record for checking GameManager
For the resume button, I would check it laterhas upvoted this post. November 28, 2024 at 3:12 am #16585::So I just made another search in the unity editor and the result doesn’t look good. There is no any
SetActive(false);
was disable the game manager intentionally. I looking for the DeathSceen but still there is only 2 place where DeathSceen was call is inActiveDeathSceen and DeactiveDeathSceen
And for the resume error. I added the code like you saidprivate void Update() { if(Input.GetKeyDown(KeyCode.P)) { SaveData.Instance.savePlayerData(); } if (Input.GetKeyDown(KeyCode.Escape) && !gameIsPause) { pauseMenu.fadeUIIn(fadeTime); Debug.Log("Pausing game. GameManager active: " + this.gameObject.activeSelf); Time.timeScale = 0; gameIsPause = true; } } public void UnpauseGame() { Time.timeScale = 1; pauseMenu.fadeUIOut(fadeTime); gameIsPause = false; Rigidbody2D rbd2 = Move.Instance.GetComponent<Rigidbody2D>(); rbd2.constraints = RigidbodyConstraints2D.FreezeRotation; Debug.Log("Game unpaused, Time.timeScale reset to 1"); }
But the game only reply by this message and the null ref
And my character still cannot take input. Below of the controller doesn’t have any information about the game mananger or the pause. I checked it allNovember 28, 2024 at 6:58 pm #16600::I found out the fix way (or we could said it like that). The reason is because of the Unity itself. I watch back some topic before and when i check the topic of MI NI. This guy said he has fix it by just delete the action of the button and then add it again. I tried it and then it work. Really work. For both the problem is the deathsceen doesn’t deactive and the pausemenu making game doesn’t taking input anymore. Tks you guys alot and especially thanks to Mi Ni
and 1 other person have upvoted this post. November 29, 2024 at 2:12 pm #16605 - The
-
AuthorPosts
- You must be logged in to reply to this topic.
Advertisement below: