“Comment instancier un jeu GameObject” Réponses codées

Unity Instanciate

// You can use the 'Instantiate()' function to clone a GameObject
clone = Instantiate(original);

// You can also set the position, rotation and parent
clone = Instantiate(original, new Vector3(0, 0, 0), Quaternion.identity, cloneParent.transform);
SkelliBoi

Comment instancier un jeu GameObject

/// <summary>
/// Creates a new Gameobject prefab called Name_1 for example
/// Instantiates the prefab
/// </summary>
public void AddGameObject()
{
	//created for example only
	GameObject testPrefab = new GameObject("Name_1");
    Vector3 objectPOS = Vector3.zero;

	GameObject newGameObject = Instantiate(testPrefab, objectPOS, Quaternion.identity);
}
Legion

Réponses similaires à “Comment instancier un jeu GameObject”

Questions similaires à “Comment instancier un jeu GameObject”

Plus de réponses similaires à “Comment instancier un jeu GameObject” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code