答案 0 :(得分:1)
基本上让它像这样工作:
scrollpanel = GameObject.Find("ScrollPanel");
scrollRect = scrollpanel.GetComponent<ScrollRect>();
scrollRect.GetComponent<ScrollRect>();
答案 1 :(得分:0)
您也可以使用方法GetComponentInChildren()
。它将遍历层次结构并找到您想要的组件或其子组件。