Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by Ren the Unclean · Apr 04, 2016 at 04:31 AM · scenesscene loadadditive

Loading an additive scene once and only once?

I want to be able to start from different scenes in the editor, and have a specific scene that will always load, regardless. In this specific case it is a scene that loads and tracks player data that matters in my menu scene as well as in my main game scene. I want to start either, depending on what I am working on at that moment, and still have the setup scene do its thing and then persist (with DontDestroyOnLoad) when I switch scenes while running.

It seems like this should work if I put it on some dummy prefab in all my scenes with this on it:

 void Awake() 
 {
      if(!SceneManager.GetSceneByName("Setup").isLoaded)
      {
           SceneManager.LoadScene("Setup", UnityEngine.SceneManagement.LoadSceneMode.Additive);
      }    
      GameObject.Destroy(gameObject);
 }

But it doesn't! I end up with a new copy of the "Setup" scene whenever I load a scene with this prefab in it.

Replacing that conditional with:

  if(!GameObject.Find("GameSetup"))

works, (and is how I used to do it with the old system), but is sort of dumb, since I am just checking an arbitrary object that happens to be in that scene.

Any help would be awesome!

Comment
Add comment · Show 2
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Ren the Unclean · Apr 04, 2016 at 04:56 AM 0
Share

Additionally, using the second method causes the hierarchy view scene labels to disappear, which seems like incorrect behavior. Either case unloads the first scene and loads the second one, but if the "Setup" scene isn't also loaded again, it breaks.

avatar image eventropy · Apr 21, 2016 at 03:40 AM 0
Share

I had this same problem. "isLoaded" does not work how you would expect when run within Awake methods. In case it's useful to anyone, this is the hack that I used:

     public void Awake()
     {
         if (ShouldLoadNextScene())
         {
             Scene$$anonymous$$anager.LoadScene("$$anonymous$$yNextScene", LoadScene$$anonymous$$ode.Additive);
         }
     }

     bool ShouldLoadNextScene()
     {
         return GetSceneIndex(this.gameObject.scene) == Scene$$anonymous$$anager.sceneCount - 1;
     }

     int GetSceneIndex(Scene scene)
     {
         for (int i = 0; i < Scene$$anonymous$$anager.sceneCount; i++)
         {
             if (Scene$$anonymous$$anager.GetSceneAt(i) == scene)
             {
                 return i;
             }
         }

         throw new Exception();
     }

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

40 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Waiting Time Difference Between 720p and 1080p 0 Answers

Loading Specific Scenes Post-Build 0 Answers

Scene.isLoaded not working properly. 1 Answer

Load Scene from .unity File 1 Answer

MissingReferenceException after loading scene. 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges