Quantcast
Browsing all 4 articles
Browse latest View live

Answer by Tetrad

http://unity3d.com/support/documentation/Manual/Instantiating%20Prefabs.htmlIn depth discussion on how to do it.

View Article


Answer 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


Answer by Tetrad

http://unity3d.com/support/documentation/Manual/Instantiating%20Prefabs.htmlIn depth discussion on how to do it.

View Article

Answer 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
Browsing all 4 articles
Browse latest View live