Search Unity

How do I unload a scene after doing LoadLevelAdditive

Discussion in 'Scripting' started by FraMarSaMi, Aug 22, 2014.

  1. FraMarSaMi

    FraMarSaMi

    Joined:
    May 13, 2014
    Posts:
    86
    I have scene A loaded.

    I load scene B with LoadLevelAdditive.

    How do I unload scene B and keep scene A loaded?

    Thanks
     
  2. _met44

    _met44

    Joined:
    Jun 1, 2013
    Posts:
    633
    Either:
    - Destroy unwanted objects manually (by calling Destroy())
    - Load as a new scene (not additively)
    - Use SECTR Stream from the asset store to do that for you