unity 递归查找子物体
时间: 2023-04-02 19:04:27 浏览: 170
程序化物体放置优化工具插件:Mega Scatter v1.50
可以使用以下代码实现:
```csharp
public Transform FindChild(Transform parent, string childName)
{
Transform child = null;
for (int i = ; i < parent.childCount; i++)
{
Transform temp = parent.GetChild(i);
if (temp.name == childName)
{
child = temp;
break;
}
else
{
child = FindChild(temp, childName);
if (child != null)
{
break;
}
}
}
return child;
}
```
该方法会递归查找指定父物体下的子物体,直到找到指定名称的子物体为止。
阅读全文