I have a problem/question about Instantiate creator.
I will try to explain in details:
I’m creating application where users will have menu list with various objects, and they will have to drag and drop those object in the scene.
I need to create N instances (which will be in the scene) of X objects (menu list).
Problem is not in instances.
Problem as follows:
Let’s say that the number of those X objects is over 400.
At the script, do I need to create reference (var instanceObject : Transform) for each of 400 prefab objects (and in the inspector to add prefabs to each of them), or is there another way to do that?
In case that I need to create those 400 references in the script, as this will be web application, how will that kind of scripting affect to download time and how much memory will it take (assuming that only 20 instances of those 400 references will actually be selected, created and visible in the scene)?
Hope you will understand my questions and doubts ![]()