循环通过Transform的子时出错

时间:2017-12-17 22:22:56

标签: c# unity3d unity5

我想遍历转换的所有子项,但是我收到错误。

这是我想让所有孩子来自的变量:

public Transform parentToSearch;

然后我在编辑器中将一个Transform对象从层次结构拖到脚本parentToSearch

然后在脚本中我想循环遍历此Transform的所有子项:

private void OnGUI()
    {
        if (hasDescription == true && clickForDescription == true)
        {
            foreach (GameObject child in parentToSearch)
            {
                if (child.GetComponent<ItemInformation>() != null)
                {
                    ItemInformation iteminformation = child.GetComponent<ItemInformation>();
                    if (child.name == objectHit)
                    {
                        var centeredStyle = GUI.skin.GetStyle("Label");
                        centeredStyle.alignment = TextAnchor.UpperCenter;
                        GUI.Label(new Rect(Screen.width / 2 - 50, Screen.height / 2 - 25, 100, 50), iteminformation.description, centeredStyle);
                    }
                }
            }
        }
    }

例外是在线:

foreach (GameObject child in parentToSearch)

这是错误:

  

InvalidCastException:无法从源类型转换为目标   型

1 个答案:

答案 0 :(得分:5)

parentToSearch变量是Transform的一种类型,因为它被声明为public Transform parentToSearch;。它也是一个枚举器,当你在foreach循环中使用它时,你将逐个访问数组中的每个子项。您必须以Transform而非GameObject

的身份访问它

更改

foreach (GameObject child in parentToSearch)

foreach (Transform child in parentToSearch)