【发布时间】:2014-12-09 20:17:39
【问题描述】:
寻找这样的方法或库:
GameObject nextBrotherNode= gameObject.transform.getNextSibling();
【问题讨论】:
标签: unity3d nextsibling
寻找这样的方法或库:
GameObject nextBrotherNode= gameObject.transform.getNextSibling();
【问题讨论】:
标签: unity3d nextsibling
你是说
int index = transform.GetSiblingIndex();
GameObject nextBrotherNode = transform.parent.GetChild(index + 1).gameObject;
【讨论】: