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 Cirrocumulus · Feb 26, 2018 at 03:11 PM · nullreferenceexceptionscene-loadingscene-switching

Cleaning up before LoadScene

I've been having a problem, like many people here, with a "MissingReferenceException" when using the SceneManager to do a LoadScene. I don't have any scripts using DontDestroyOnLoad, I just want to wipe everything clean and load my menu scene back. I've tripled-checked my event subscriptions pairs (in OnEnable and OnDisable) and they all look fine. The error is caused by different scripts it seems, with one being particularly touchy, a script which uses OnBecameInvisible (code below). Could it be that Unity calls "OnBecameInvisible" when doing a LoadScene? Thanks for your help.

 public class DestroyWhenOutsideViewport : MonoBehaviour {
 
     private Camera cam;
 
     private void Awake()
     {
         cam = Camera.main;
     }
 
     public void OnBecameInvisible()
     {
         Vector3 pos = cam.WorldToViewportPoint(transform.position);
         if (pos.x > 1.0 || pos.x < 0 || pos.y > 1.0 || pos.y < 0)
         {
             Destroy(gameObject);
         }
     }
 }
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 NickJVaccaro · Feb 26, 2018 at 03:57 PM 0
Share

According to the Execution Order, Awake should definitely be called before OnBecameInvisible. Have you tried tossing in a few Debug.Log() statements to get a better look at how everything is behaving? Also, which references is missing? Is it blowing up when you try to call cam.WorldToViewportPoint()?

avatar image Cirrocumulus NickJVaccaro · Feb 26, 2018 at 04:04 PM 0
Share

Well, nothing really blows up, even in a development build I only get a $$anonymous$$issingReferenceException when going back to the menu and then everything behaves normally again. Because I was getting the error mostly from OnBecameInvisible in a script which extends my base "Entity" class, I thought I'd add the following to the base "Entity" class, which only made matters worse because now I get $$anonymous$$issingReferenceException in both places, the derived class and the base class. I don't know where I can put debug checks because Unity apparently gets rid of objects at random when unloading a scene, but there's probably something very basic here that I've missed.

 public virtual void Awake()
 {
     Scene$$anonymous$$anager.sceneUnloaded += OnSceneUnloaded;
 }
 
 private void OnSceneUnloaded(Scene arg0)
 {
     if (gameObject != null)
         Destroy(gameObject);
 }

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

79 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 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

UnloadSceneAsync() does not seem to work with additive scenes. 1 Answer

Game isn't working the same way before main menu? 0 Answers

My game breaks when I load it from another scene (menu scene). 0 Answers

Can I use one script to toggle between scenes? 1 Answer

Scene takes long to load only first time 2 Answers


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