首页 > 代码库 > 遍历子物体

遍历子物体

[javascript] view plaincopyprint?
 
  1. //应用户提问 也给大家分享一下 可以查找某个物体下无限层级的子物体名称 并返回该子物体   
  2.   
  3. //把这个函数放到你的代码中 check代表你要查询的物体 name为名称 如return GetTransform(transform,"bone12");   
  4.   
  5. Transform GetTransform(Transform check,string name)   
  6. {   
  7.   foreach (Transform t in check.GetComponentsInChildren<Transform>())   
  8.   {   
  9.     if(t.name==name){return t;}   
  10.     GetTransform(t,name);   
  11.   }   
  12.   return null;   
  13. }   

遍历子物体