美文网首页
在unity3d中寻找某个父物体中的一个子物体

在unity3d中寻找某个父物体中的一个子物体

作者: 困卡 | 来源:发表于2017-05-09 16:24 被阅读0次
using UnityEngine;
using System.Collections;

public class FindChildObject : MonoBehaviour {

    //要找子物体的那个物体
    public Transform parent;
    //想找的子物体的名字
    public string childName;

    // Use this for initialization
    void Start () {

        GetTransform(parent, childName);
    }
    
    // Update is called once per frame
    void Update () {
    
    }

    Transform GetTransform(Transform check, string name)
    {
        foreach (Transform t in check.GetComponentsInChildren<Transform>())
        {
            if (t.name == name) 
            {
                //要做的事
                Debug.Log(t.name);
                return t;    
            }    
        }
        return null;
    }
}

当然,你还可以直接就用transform.Find()。方法去找。

注意:transform.Find()是可以找到隐藏的物体的,但是GameObject.Find()是找不到应经隐藏的的物体的。

相关文章

网友评论

      本文标题:在unity3d中寻找某个父物体中的一个子物体

      本文链接:https://www.haomeiwen.com/subject/jqcitxtx.html