码迷,mamicode.com
首页 > 编程语言 > 详细

unity transform 常用操作

时间:2019-02-02 14:24:00      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:als   getc   tag   tco   void   str   nts   real   []   

1.寻找物体

1.1 寻找满足条件的子物体

`    public static Transform FindObj(Transform transform, Func<Transform, bool> condition, bool isGrandsonObj = false)
{
    Transform[] allChilds = transform.GetComponentsInRealChildren<Transform>(isGrandsonObj);

    foreach (Transform child in allChilds)
    {
        if (condition(child))
        {
            return child;
        }
    }

    return transform;
}

public static Transform FindObj(Transform transform, string tag, bool isGrandsonObj = false)
{
    return FindObj(transform, (t) => t.tag.Equals(tag), isGrandsonObj);
}`

1.2 寻找一组满足条件的子物体

`    public static List<Transform> FindObjs(Transform transform, Func<Transform, bool> condition, bool isGrandsonObj = false)
{
    Transform[] allChilds = transform.GetComponentsInRealChildren<Transform>(isGrandsonObj);
    List<Transform> list = new List<Transform>();

    foreach (Transform child in allChilds)
    {
        if (condition(child))
        {
            list.Add(child);
        }
    }
    return list;
}

public static List<Transform> FindObjs(Transform transform, string tag, bool isGrandsonObj = false)
{
    return FindObjs(transform, (t) => t.tag.Equals(tag), isGrandsonObj);
}`

2. 操作一组物体

2.1 对一组满足条件物体进行操作

`    public static void AddActionObjects(Transform[] transform, Func<Transform, bool> condition, Action<Transform> action)
{
    foreach (Transform child in transform)
    {
        if (condition(child))
        {
            action(child);
        }
    }
}`

2.2 常用扩展方法

`    public static void AddActionObjects(Transform[] transform, Action<Transform> action)
{
    AddActionObjects(transform, (t) => true, action);
}

public static void AddActionObjects(Transform transform, Func<Transform, bool> condition, Action<Transform> action, bool isGrandsonObj = false)
{
    Transform[] allChilds = transform.GetComponentsInChildren<Transform>(isGrandsonObj);
    AddActionObjects(allChilds, condition, action);
}

public static void AddActionObjects(Transform transform, Action<Transform> action, bool isGrandsonObj = false)
{
    AddActionObjects(transform, (t) => true, action, isGrandsonObj);
}

public static void AddActionObjects(Transform transform, string tag, Action<Transform> action, bool isGrandsonObj = false)
{
    AddActionObjects(transform, (t) => t.tag.Equals(tag), action, isGrandsonObj);
}

`

unity transform 常用操作

标签:als   getc   tag   tco   void   str   nts   real   []   

原文地址:https://www.cnblogs.com/programmingAdorableNew/p/10348234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!