查找隐藏了root根节点的游戏物体

作者: 你的头好大 | 来源:发表于2016-08-23 11:49 被阅读79次

    ```

    TestDestory[] testDestorys = (TestDestory[])Resources.FindObjectsOfTypeAll(typeof(TestDestory));

    foreach (TestDestory testDestory in testDestorys)

    {

    if (testDestory.transform.parent != null)

    {

    continue;

    }

    if (testDestory.hideFlags == HideFlags.NotEditable || testDestory.hideFlags == HideFlags.HideAndDontSave)

    {

    continue;

    }

    if (Application.isEditor)

    {

    string sAssetPath = AssetDatabase.GetAssetPath(testDestory.transform.root.gameObject);

    if (!string.IsNullOrEmpty(sAssetPath))

    {

    continue;

    }

    }

    Debug.Log(testDestory.name);

    }

    ```

    相关文章

      网友评论

        本文标题:查找隐藏了root根节点的游戏物体

        本文链接:https://www.haomeiwen.com/subject/uzmehttx.html