Unity not loading scene even though it is loaded

Hey everyone, I am running a into a bug where I am loading a scene, but it is not actually showing up.

For instance unity editor says im in the chest scene:

where the chest scene actually looks like this:

I am confused because the moment i exit to another scene, it briefly opens the right scene before shifting to the other scene. How come the scene is “loading” but not actually loaded.

I’ve currently tried load scene, load scene assync and load scene with scenemode being single, and it still happens.

Does anyone knows why this happens?

Perhaps you have another script in the scene that you intend to load which loads the other scene.

Also worth noting: Scenes can have the same name if they are in different folders. Try to avoid that because I don’t know how LoadScene("ChestScene") will behave in such a case.

You can search the project to show you all scene assets by entering either “t:Scene” or “t:SceneAsset” (I think both might work, technically a scene file is a SceneAsset type) in the filter bar at the top of the Project view window.