Unload a scene ?

Hello,

I’ve loaded multiple scenes in my game with the method LoadLevelAdditive() and I’m looking for unload one of these scenes. How can I do this ?

by deleting the game objects you loaded in those scenes.

there is no way to unload an additively loaded scene as it ceases to exist as scene

And what is the best way to find the game objects attached to a scene ?

out of my view: attaching all to a master game object that has a tag “root” and a name equal to the scene name. then you can go through all root objects and find the right one and destroy it :slight_smile: