Why my changed scene got stuck?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Idleman

I build a title screen, and when press the button START, it goes to get_tree().change_scene("res://Scene/00World.tscn"). The change scene works but the new scene got stuck, and nothing moves. No inputs, not animation, all elements are on screen but in a completely frozen mode. I don know what caused this, it should be just a simple scene change. Looking for some advice to solve the problem, thank you.

I found out, if I press the ESC key, the frozen scene starts to run. It is like the changed scene is loaded but not running. Is that a line of code that I need to put to make it run once the scene is loaded?

Idleman | 2020-10-05 02:51

:bust_in_silhouette: Reply From: Idleman

Problem solved. Turn out that I have line of game pause code in the title scene script, and it make the game in pause mode while changing to the world scene. As soon as I remove that code, the scene loads properly.