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
0
Question by ewajs · Feb 06, 2020 at 12:04 AM · gameobjectnullreferenceexceptionprefabshideshow

Reloading a Scene throws NullReferenceException on GO with nested Prefabs

I'm doing a simple AR app in which the user has a menu with lamps. By swiping he/she switches lamps game objects (from prefabs) that are all nested on an empty game object. I have a Swipe Detector game object with an event listener which, with an Index, tracks the current active lamp and shows/hides the other as the user swipes (by setting the scale to 0). Then user presses a button that launches an AR Scene to place the lamp on the world. The AR scene has a "Back" button that reloads the menu to start over (by SceneManager.LoadScene("SceneName") method).

However, when I relaunch the menu scene, the swiping does not work anymore, and I get a NullReferenceException on a method I use to get the currently active Game Object. It's driving me nuts... The empty game object with the nested lamps still has n children so I assume the prefab game objects are still there... I'm lost!!! Many thanks to anybody who can help, here's the code (script attached to empty parent GameObject):

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class ItemSwitcher : MonoBehaviour
 {
     public GameObject itemHolder;
 
     public float rotationSpeed = 10f;
     int m_Index;
     int m_Length;
     // Start is called before the first frame update
     void Start()
     {
         itemHolder = GameObject.Find("Item Holder");
         m_Index = 0;
         m_Length = itemHolder.transform.childCount;
 
         Debug.Log("Start(): Current Index " + m_Index.ToString());
         Debug.Log("Start(): Current Length " + m_Length.ToString());
         ResetAllChildren();
         if (!ApplicationModel.configured)
         {
             SwipeDetector.OnSwipe += SwipeDetector_OnSwipe;
             ApplicationModel.configured = true;
             Debug.Log("Start(): Configured!");
         }
     }
 
     // Update is called once per frame
     void Update()
     {
         // rotate holder (and children)
         itemHolder.transform.Rotate(0, rotationSpeed * Time.deltaTime, 0, Space.Self);
 
     }
 
     private void SwipeDetector_OnSwipe(SwipeData data)
     {
         Debug.Log("OnSwipe(): Changing Lamp");
         if (data.Direction == SwipeDirection.Right)
         {
             UpdateChildrenDisplay(true);
         }
         else if (data.Direction == SwipeDirection.Left)
         {
             UpdateChildrenDisplay(false);
         }
     }
 
    
     GameObject GetActiveObject()
     {
         Debug.Log("Getting Child " + m_Index.ToString());
         return itemHolder.transform.GetChild(m_Index).gameObject;
     }
 
     void ResetAllChildren()
     {
         // Leave the first visible
         //itemHolder.transform.GetChild(0).gameObject.GetComponentInChildren<MeshRenderer>().enabled = true;
         itemHolder.transform.GetChild(0).gameObject.transform.localScale = new Vector3(1, 1, 1);
         // Hide all others
         for (int i = 1; i < m_Length; i++)
         {
             //itemHolder.transform.GetChild(i).gameObject.GetComponentInChildren<MeshRenderer>().enabled = false;
             itemHolder.transform.GetChild(i).gameObject.transform.localScale = new Vector3(0, 0, 0);
         }
     }
     void UpdateChildrenDisplay(bool right)
     {
 
         //GetActiveObject().GetComponentInChildren<MeshRenderer>().enabled = false;
         GetActiveObject().transform.localScale = new Vector3(0, 0, 0);
         if (right)
         {
             m_Index++;
             m_Index = m_Index % m_Length;
         }
         else
         {
             m_Index--;
             m_Index = m_Index == -1 ? m_Length - 1 : m_Index;
         }
         GameObject go = GetActiveObject();
         //go.GetComponentInChildren<MeshRenderer>().enabled = true;
         go.transform.localScale = new Vector3(1, 1, 1);
         // This is not very good but...
         // Index should match prefab name - 1 (so Lamp1 has index 0)
         ApplicationModel.currentObject = (m_Index + 1).ToString();
         Debug.Log("OnSwipe(): Current Lamp is Lamp" + (m_Index + 1).ToString());
     }
 }
 
 

Comment
Add comment
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

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

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

hide and show node for turret places 1 Answer

Any other method to hide and show gameobjects? 1 Answer

Can I hide/show objects by layer or tags? 3 Answers

How do i make a texbox show and hide 1 Answer

Reinitialize prefab 0 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