Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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);
 
PREVIOUS NEXT
Tagged: #unity #instantiate #prefab
ADD COMMENT
Topic
Name
5+4 =