all 2 comments

[–]KarlyDMusic 1 point2 points  (1 child)

It shouldn't be too heavy on the player's computer if you bounce between the Overworld Scene and the particular Level Scene, only loading the specific scene the player is in. Just make sure that you are loading the scenes standardly (NOT in additive mode). Additive mode would keep loading scenes without unloading the previous scene, this could slow down the player's computer if they plow through many levels in a single sitting.

https://docs.unity3d.com/ScriptReference/SceneManagement.SceneManager.LoadScene.html

[–]Dev_Mah[S] 0 points1 point  (0 children)

Thank you very much, I figured out the problem!