unity look at in instantiated object code example
Example 1: unity instantiate an object
// Instantiates 10 copies of Prefab each 2 units apart from each otherusing UnityEngine;
using System.Collections;public class ExampleClass : MonoBehaviour
{
public Transform prefab;
void Start()
{
for (int i = 0; i < 10; i++)
{
Instantiate(prefab, new Vector3(i * 2.0F, 0, 0), Quaternion.identity);
}
}
}
Example 2: how to instantiate an object behind another object in unity
Instantiate( prefab, transform.position + ( transform.right * distance), transform.rotation );