“Unity Trouver un objet 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

Réponses similaires à “Unity Trouver un objet par son nom”

Questions similaires à “Unity Trouver un objet par son nom”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code