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 shabutii · Jun 09, 2021 at 03:53 PM · instantiateobjectsclones

Just curious, assigning a clone multiple times, how does it work internally?

So I am just curious how the following works internally in Unity:

For example, if I want to make multiple clones I can do the following:

 prefabClone = Instantiate(prefab, new Vector2(2f, 3f), Quaternion.identity)
 prefabClone.RunSomeMethod();
 
 prefabClone = Instantiate(prefab, new Vector2(3f, 4f), Quaternion.identity)
 prefabClone.RunSomeOtherMethod();
 
 prefabClone = Instantiate(prefab, new Vector2(4f, 5f), Quaternion.identity)
 prefabClone.RunYetAnotherMethod();

and this will work, Unity will produce 3 unique clones each with their own abilities. The part that I cannot wrap my head around is using the same prefabClone 3 times. Shouldn't assigning prefabClone a second and third time negate the previous assignment? (from an objected oriented perspective?)

I hope I'm making sense and maybe I'm just making an elementary mistake, but anyway, I would love an explanation.

Thanks!

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
0
Best Answer

Answer by xxmariofer · Jun 10, 2021 at 09:42 AM

Hello,

Yes, you are overriding the previous assigment, if that was not the behaviour you would be calling RunSomeMethod in the object 1 3 times, in object 2 2 times, and in object 1 3 times. I think your question is more like

 " If I override prefabClone, shouldnt the gameobject destroy?"

and no, thats not the case. Instantiate creates a gameobject, and you later save the reference in a variable, thats why simply

 Instantiate(prefab, new Vector2(2f, 3f), Quaternion.identity)

works and creates a gameobject.

You are correct in one part, the garbage collector when detects that one object is "lost" and there is no longer a reference to it, "destroys it". But gameobjects no, all gameobjects exist and are reference by the engine itself, the GameObject exits in the "list of gameobjects of unity" so if yoou lose the reference of it in the script, it will not get destroyed. think about this code:

  prefabClone = Instantiate(prefab, new Vector2(2f, 3f), Quaternion.identity)
  prefabClone.RunSomeMethod();
  
  prefabClone = Instantiate(prefab, new Vector2(3f, 4f), Quaternion.identity)
  prefabClone.RunSomeOtherMethod();
  
  prefabClone = Instantiate(prefab, new Vector2(4f, 5f), Quaternion.identity)
  prefabClone.RunYetAnotherMethod();
 
 GameObject go = GameObject.Find("YourObject Clone");// you can find the first gameobject again 
Comment
Add comment · Show 1 · 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 shabutii · Jun 10, 2021 at 02:52 PM 0
Share

Excellent thank you. I was indeed making an elementary mistake. I was thinking prefabClone represented the actual GameObject in the scene, when in fact, as you said, that is merely a variable storing that reference. The game object clone is created with Instantiate. Thanks!

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

143 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

Related Questions

How to move and leave trail of instantiated objects behind in defined intervals between them ? 0 Answers

How to change the velocity of a clone? 1 Answer

Tetris, Tetrominoes Clones Spawn Same Time 0 Answers

Checking if object intersects? 1 Answer

setting variable in game object with instantiated object reference 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