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 memblock · Mar 29, 2017 at 02:55 PM · gameobjectsscenesdontdestroyonloaddesign

access a gameobject from another scene at design-time

I'll try to describe my problem as clear as possible.

I have a baseclass that references other monobehaviour scripts attached to a gameobject in my scene. If I use dontdestroyonload() I can still access that gameobject from my other scenes at run-time since it's not destroyed upon scene loading.

But at design-time I'd like to be able to playtest my scenes separately, obviously I get a null-reference exception since the gamobject don't exist in that scene. I guess I could simply add the same gameobject to each and every of my scenes, and then remove all, but one before run-time.

My question is if there are another way of doing this? like a dontdestroyonload() but for design-time?

Best regards!

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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Joe-Censored · Mar 29, 2017 at 05:21 PM

For testing like this I would have a script in each scene check for the object when the scene loads, if the object isn't there you instantiate it. So in normal usage the scene uses the existing object from the previous scene, but when play testing the scene the object is there also.

Comment
Add comment · Share
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
0

Answer by Mentoliptus · Apr 01, 2017 at 08:11 AM

Make the object a singleton and have one instance in every scene, but destroy the other instances at runtime in the Awake methods. Something like this:

 public class MyBehaviour : MonoBehaviour
 {
         private static MyBehaviour _instance = null;
         public static MyBehaviour Instance
         {
             get
             {
                 if (_instance == null)
                 {
                     _instance = (new GameObject("MyBehaviour")).AddComponent<MyBehaviour>();
                 }
 
                 return _instance;
             }
         }
 
         void Awake()
         {
             if (_instance == null)
             {
                 _instance = this;
                 DontDestroyOnLoad(this);
 
                 // perform initialization
             }
             else
             {
                 // singleton implementation that ensures only one instance in scene
                 if (FindObjectsOfType(typeof(MyBehaviour)).Length > 1)
                 {
                     DestroyImmediate(gameObject);
                 }
             }
         }
 }

This way you can start the game from every scene and have the object there.

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

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Unity 2d select 2 object on another 2 scenes 2 Answers

Gameobject dependencies 0 Answers

My music duplicates and gives an error 1 Answer

How to link words from different scene 1 Answer

Confusion about DontDestroyOnLoad and very large scenes... 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