如何检查GameObject是否包含MeshRenderer但不包含任何对撞机,然后向其添加对撞机?

yoc*_* le 3 c# unity-game-engine

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class AddColliders : MonoBehaviour
{
    public List<GameObject> objectsToAddCollider = new List<GameObject>();

    // Start is called before the first frame update
    void Start()
    {
        AddDescendantsWithTag(transform, objectsToAddCollider);
    }

    // Update is called once per frame
    void Update()
    {

    }

    private void AddDescendantsWithTag(Transform parent, List<GameObject> list)
    {
        foreach (Transform child in parent)
        {
            if (child.gameObject.GetComponent<MeshRenderer>() != null
                && child.gameObject.GetComponent<)
            {
                list.Add(child.gameObject);
            }
            AddDescendantsWithTag(child, list);
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

在这一行中,我正在检查是否有附加到游戏对象的网格渲染器,但如何检查它是否未附加任何碰撞类型?然后如何向其添加网格碰撞器?

这是我到目前为止尝试过的:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class AddColliders : MonoBehaviour
{
    public List<GameObject> objectsToAddCollider = new List<GameObject>();

    // Start is called before the first frame update
    void Start()
    {
        AddDescendantsWithTag(transform, objectsToAddCollider);
    }

    // Update is called once per frame
    void Update()
    {

    }

    private void AddDescendantsWithTag(Transform parent, List<GameObject> list)
    {
        foreach (Transform child in parent)
        {
            if (child.gameObject.GetComponent<MeshRenderer>() != null
                && child.gameObject.GetComponent<Collider>() == null)
            {
                child.gameObject.AddComponent<MeshCollider>();
                list.Add(child.gameObject);
            }
            AddDescendantsWithTag(child, list);
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

但是最后在行上添加断点时:

AddDescendantsWithTag(transform, objectsToAddCollider);
Run Code Online (Sandbox Code Playgroud)

我看到Collider中的List objectsToAddCollider中的gameobjects这条消息:

collider = System.NotSupportedException:Collider属性已被弃用

对撞机

der*_*ugo 5

GameObject.collider 已在版本2019.1.0中弃用并删除。

您不能再将其用于调试。


要检查是否有Collider任何类型的使用

var collider = child.GetComponent<Collider>();
Run Code Online (Sandbox Code Playgroud)

简单地检查它是否存在,您也可以

if(child.GetComponent<Collider>())
{
    Debug.Log("Collider found");
}
Run Code Online (Sandbox Code Playgroud)

再次是因为Collider(或更确切地说是Object从其继承的Unity类型)实现了一个等于equals 的隐式bool运算符!= null


因此,如果在一行中不存在该组件,则添加组件的一种很好的方法是

Collider collider = child.GetComponent<Collider>() ? collider : child.gameObject.AddComponent<Collider>();
Run Code Online (Sandbox Code Playgroud)

甚至稍短

Collider collider = child.GetComponent<Collider>() ?? child.gameObject.AddComponent<Collider>();
Run Code Online (Sandbox Code Playgroud)

注意:请在智能手机上输入内容,因此没有保修,但我希望这个想法能弄清楚。