unity instantiate 2d code example
Example 1: unity instantiate
clone = Instantiate(original);
clone = Instantiate(original, new Vector3(0, 0, 0), Quaternion.identity, cloneParent.transform);
Example 2: unity instantiate an object
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 3: how to instantiate a gameobject
public void AddGameObject()
{
GameObject testPrefab = new GameObject("Name_1");
Vector3 objectPOS = Vector3.zero;
GameObject newGameObject = Instantiate(testPrefab, objectPOS, Quaternion.identity);
}