unity中子物体找到父物体上的脚本
时间: 2023-09-13 08:03:55 浏览: 115
Unity3D脚本:根据子物体找到根物体2
在Unity中,要在子物体上找到父物体上的脚本,可以使用以下代码:
```csharp
// 获取子物体上的脚本
var script = GetComponentInChildren<YourScriptName>();
// 获取父物体上的脚本
var script = GetComponentInParent<YourScriptName>();
```
其中,`YourScriptName`是你要找的脚本的名称。`GetComponentInChildren`会在子物体中查找指定的组件,而`GetComponentInParent`会在父物体及其祖先对象中查找指定的组件。
使用这些代码,你可以在子物体上直接访问父物体上的脚本。
阅读全文