↧
Answer by Tetrad
http://unity3d.com/support/documentation/Manual/Instantiating%20Prefabs.htmlIn depth discussion on how to do it.
View ArticleAnswer by e.bonneville
Well, you would want to use an instantiate function like this:var prefab : Transform;function Update () { for (var i=0;i<10;i++) { Instantiate (prefab, Vector3(i * 2.0, 0, 0), Quaternion.identity);...
View Article