UI框架总结
Posted xiaomao21
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UI框架总结相关的知识,希望对你有一定的参考价值。
1.加上命名空间,一个类在每个脚本都会实例化
2.递归调用懂了
//查找物体
public static Transform FindTheChild(GameObject goParent, string childName)
{
Transform searchTrans = goParent.transform.Find(childName);
if (searchTrans == null)
{
foreach (Transform trans in goParent.transform)
{
searchTrans = FindTheChild(trans.gameObject, childName);
if (searchTrans != null)
{
return searchTrans;
}
}
}
return searchTrans;
}
3.return searchTrans.gameObject.AddComponent<T>(); 返回T
4.递归调用设置Layer
//设置所以子物体的layer;
public static void SetLayer(int parentLayer, Transform childTrs)
{
childTrs.gameObject.layer = parentLayer;
for (int i = 0; i < childTrs.childCount; i++)
{
Transform child = childTrs.GetChild(i);
child.gameObject.layer = parentLayer;
SetLayer(parentLayer, child);
}
}
5.碰撞体可以频弊按钮
以上是关于UI框架总结的主要内容,如果未能解决你的问题,请参考以下文章