“Unity Find GameObject par son nom” Réponses codées

Unity Find GameObject par son nom

GameObject enemy = GameObject.Find("enemy");
RasKaL

Unity Trouver un objet par son nom

    GameObject FindChildRecursive(GameObject parent, string childName) {
        foreach(Transform child in parent.transform) {
            if(child.name == childName) {
                return child.gameObject;
            } else {
                if(child.childCount > 0) {
                    GameObject result = FindChildRecursive(child.gameObject, childName);
                    if(result != null) return result;
                }
            }
        }
        return null;
    }
AB_498

C # Unity Obtenez le nom de l'objet

public GameObject obj;

void Start()
{
	string objName = obj.name;
  	Debug.Log(objName);
}
Hello There

Réponses similaires à “Unity Find GameObject par son nom”

Questions similaires à “Unity Find GameObject par son nom”

Plus de réponses similaires à “Unity Find GameObject par son nom” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code