标签:unity null lin ref imp sub 图片 查找 指定
1.GameObject.Find
函数原型:
1 public class TestFind : MonoBehaviour 2 { 3 4 public string name = ""; 5 private void Start() 6 { 7 Transform t = transform.Find(name); 8 if(t != null) 9 print("找到了"); 10 else 11 { 12 print("没找到"); 13 } 14 } 15 }
说明:TestFind脚本挂在GameObject物体上。
1.name为a, 输出找到了
2.name为aa,输出没找到
3.name为b,输出找到了
4.name为bb,输出没找到
GameObject.Find与Transform.Find的区别
标签:unity null lin ref imp sub 图片 查找 指定
原文地址:https://www.cnblogs.com/blackteeth/p/10176708.html