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 Adherbal · May 04, 2014 at 04:23 PM · gameobjectinstantiateprefab

Instantiate Prefab in memory?

Is it possible to create a prefab (basically a GameObject) at runtime, purely in memory?

Basically I can do:

 GameObject someObject = (GameObject) Resources.Load("somePrefab");

This will create a someObject gameobject in memory - without placing it in the scene - allowing it to be instantiated. But when I do:

 GameObject anotherObject = new GameObject(...);

It will automatically place it this gameobject into the scene. I want it to exist only in memory so I can create copies from this "prefab" by using Instantiate.

Is this possible?

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 NoseKills · May 04, 2014 at 04:48 PM 0
Share

That's exactly what GameObject someObject = (GameObject) Resources.Load("somePrefab"); does. You get a reference to the GameObject in the project view and it doesn't appear in the scene - it exists purely in memory and you can instantiate copies of it at will. Or did I understand the question wrong?

        GameObject memoryObject = Resources.Load("Prefab") as GameObject;
         GameObject objectInScene = Instantiate(memoryObject) as GameObject;
avatar image Adherbal · May 04, 2014 at 05:14 PM 0
Share

What I'm trying to do is load a prefab, make a few copies of it (in memory) with adjusted meshes (changed by script) and THEN create gameobjects in the scene based on these copies.

Aside from the latter, the original prefabs nor its modified copies should exist in the scene.

2 Replies

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

Answer by DavidZendle · Apr 24, 2015 at 02:29 PM

I'm not sure whether Unity is set up to do what you describe. However, why not just instantiate a GameObject that is not active, then make copies of that object and activate them on the fly?

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 Adherbal · Apr 24, 2015 at 02:48 PM 0
Share

That's what I ended up doing IIRC, combined with hiding that GameObject in the Hierarchy list.

I'll mark this asnwer as correct.

avatar image
0

Answer by l3fty · May 04, 2014 at 04:42 PM

This might be what you're looking for, though some of it seems to be pro only:

https://docs.unity3d.com/Documentation/Manual/LoadingResourcesatRuntime.html

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 l3fty · May 04, 2014 at 04:47 PM 0
Share

Is this to speed up the first instantiation of a prefab by the way? I've noticed delays on first time instantiation before myself.

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

23 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

Related Questions

How to instantiate within GameObject 1 Answer

Referencing gameObject from script after Instantiate 0 Answers

autolink to prefab? 0 Answers

Prefab instantiation: am I missing something? 1 Answer

How to make an Instantiated prefab a Child of a gameobject that already exists in the hierarchy 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