Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 Professor Snake · Oct 12, 2013 at 08:13 PM · gameobjectvariableruntimereferencestore

Store a GameObject to a variable on runtime.

Hello there.

I am currently in the process of writing an .obj importer with support for models that have multiple objects, for usage in runtime. Parsing the object works fine, and for convenience purposes, a parent is created for each model with the separate objects being stored as its children.

alt text

Since i am parsing all of the .obj files when the game is started, i don't want to use the meshes the moment they are successfully parsed, but instead i want to save them as a gameobject and then instantiate them whenever i need them.

So the logical thing to do would be (pseudocode):

 var importedMesh:GameObject;
 Instantiate parent;
 Instantiate all objects for the imported mesh;
 Set the parent for the instantiated objects to be the instantiated parent;
 importedMesh=instantiated parent;

Which theoretically would allow me to then Instantiate importedMesh to create a new clone of the generated object. The problem is that importedMesh=instantiated parent; stores the instantiated parent as a reference, which means that if i Destroy the instantiated parent, importedMesh will point to nothing. That is certainly a problem since, as i have already mentioned, i don't want to have the imported objects in the scene just yet.

So, is there a way to store a GameObject to a variable instead of storing a reference to it?

Edit: The point of this is to conveniently organize the imported models instead of storing meshes and having to instantiate each model's objects every time i need them. Everything would be much easier if i were able to instantiate them once, give them a parent and then only worry about instantiating the parent. I already know the former is a valid option.

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

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by Hoeloe · Oct 12, 2013 at 08:28 PM

Simply? No, because that's not how OOP languages work. What you have to do instead is explicitly copy the parent when you instantiate the new object. This means you just need another Instantiate call, with the source as the parent.

If you're asking how to do this without copying, then what you're asking is logically impossible.

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

16 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

Related Questions

How do I assign a prefab reference to a private variable? 1 Answer

Remove object assignment in runtime? 1 Answer

How can I assign a GameObject to a variable at runtime? 0 Answers

Referencing instantiated objects at runtime 2 Answers

Raycast object tag check? 3 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