📌  相关文章
📜  如何在游戏对象中随机选择一个孩子 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:06.709000             🧑  作者: Mango

代码示例1
public GameObject YourGameObject;

int randomChildIdx = Math.Random(0, YourGameObject.transform.childCount);
Transform randomChild = YourGameObject.transform.GetChild(randomChildIdx);