unity how to create a prefab code example

Example 1: Unity C# instantiate prefab

Instantiate(myPrefab, new Vector3(0, 0, 0), Quaternion.identity);

Example 2: unity how to create a prefab

To create a Prefab Asset, drag a GameObject
from the Hierarchy window into the Project window.

Example 3: unity C# instantiate prefab

GameObject prefab = reference_to_your_prefab_asset;
Vector3 position = Vector3.zero;
Quaternion rotation = Quaternion.identity;
Transform parent = parent_of_instantiated_prefab;

Instantiate(prefab, position, rotation, parent);

Tags:

Misc Example