如何删除gameobject 子物体下面的所有子物体

遍历父物体下所有子物体的几种方式
1、通过标签来寻找
void ForeachObjs()
//GameObject objs[] = GameObject
objs = GameObject.FindGameObjectsWithTag(&Cube_00&);
foreach (GameObject obj in objs)
obj.AddComponent(&OnTiggerEnterSendMessage&);
}2、通过Transform来寻找并附加脚本
&foreach (Transform child in gameObject.transform)
child.gameObject.AddComponent(&OnTiggerEnterSendMessage&);
}3、另外一种方式(转)
//把这个函数放到你的代码中 check代表你要查询的物体 name为名称 如return GetTransform(transform,&bone12&);
Transform GetTransform(Transform check,string name)
foreach (Transform t in check.GetComponentsInChildren&Transform&())
if(t.name==name){}
GetTransform(t,name);
}4、(转)
很多高级游戏代码不仅仅控制单一物体。Unity脚本接口有很多方法获得和访问其他游戏物体和组件。下面我们假设有一个名为OtherScript.js的脚本附属于场景中的游戏物体。
var foo = 5;
function DoSomething ( param : String) {
print(param + & with foo: & + foo);
}
1.使用检视视图指定参数。
你能通过检视视图为一些游戏类型指定变量:
// Translate the object dragged on the target slot
var target : T
function Update () {
target.Translate(0, 1, 0);
}
也能显示参数在其他物体检视视图。下面你能在Inspector面板中拖拽包含OtherScript的游戏物体到target上。
// Set foo DoSomething on the target variable assigned in the inspector.
var target : OtherS
function Update () {
// Set foo variable of the target object
target.foo = 2;
// Call do something on the target
target.DoSomething(&Hello&);
}
2.通过继承结构
你能通过Transform组件获得一个子和父物体到现在的物体。
// Find the child &Hand& of the game object
// we attached the script to
transform.Find(&Hand&).Translate(0, 1, 0);
你只要在hierarchy面板建立了transform,你就能用GetComponent去获取other scripts。
// Find the child named &Hand&.
// On the OtherScript attached to it, set foo to 2.
transform.Find(&Hand&).GetComponent(OtherScript).foo = 2;
// Find the child named &Hand&.
// Call DoSomething on the OtherScript attached to it.
transform.Find(&Hand&).GetComponent(OtherScript).DoSomething(&Hello&);
// Find the child named &Hand&.
// Then apply a force to the rigidbody attached to the hand.
transform.Find(&Hand&).rigidbody.AddForce(0, 10, 0);
你可以循环到它所有的子物体。
// Moves all transform children 10 units upwards!
for (var child : Transform in transform) {
child.Translate(0, 1, 0);
}
查看文档Transform类 可以获得更多信息。
3.通过名字或标签
你能用确定的标签搜索物体,使用GameObject.FindWithTag 和GameObject.FindGameObjectsWithTag。使用GameObject.Find通过名字获得游戏物体。
function Start ()
{
// By name
var go = GameObject.Find(&SomeGuy&);
go.transform.Translate(0, 1, 0);
// By tag
var player = GameObject.FindWithTag(&Player&);
player.transform.Translate(0, 1, 0);
}
你能使用GetComponent获得脚本或组件在找到的游戏物体上。
function Start ()
{
// By name
var go = GameObject.Find(&SomeGuy&);
go.GetComponent(OtherScript).DoSomething();
// By tag
var player = GameObject.FindWithTag(&Player&);
player.GetComponent(OtherScript).DoSomething();
}
一些特殊对象如主摄像机有快捷方式,可以使用Camera.main。
4.传递参数
一些事件中包含详细的事件。例如:扳机事件传递(碰撞)Collider组件到碰撞物体的handler函数。
OnTriggerStay给我们一个碰撞参数.从碰撞体我们能给他赋一个刚体。
function OnTriggerStay( other : Collider ) {
// If the other collider also has a rigidbody
// apply a force to it!
if (other.rigidbody) {
other.rigidbody.AddForce(0, 2, 0);
}
}
或者我们可以获取游戏中碰撞者包含的任意组件。
function OnTriggerStay( other : Collider ) {
// If the other collider has a OtherScript attached
// call DoSomething on it.
// Most of the time colliders won't have this script attached,
// so we need to check first to avoid null reference exceptions.
if (other.GetComponent(OtherScript)) {
other.GetComponent(OtherScript).DoSomething();
}
}
注意上面的例子,使用其他变量上的后缀,你能获取一些碰撞物体里的组件。
5.某个类型的所有脚本
从一个类找到任意对象或脚本,用Object.FindObjectsOfType或获得某个类型的第一个物体使用Object.FindObjectOfType.
function Start ()
{
// Find the OtherScript which is attached to any game object in the scene.
var other : OtherScript = FindObjectOfType(OtherScript);
other.DoSomething();
}
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
5、自己写的深度优先遍历,找物体的孩子并做些什么事情
using UnityE
using System.C
using UnityE
public class ChangeMeshRenderQuality : Editor
[MenuItem(&GameObject/ChangeMeshRenderQuality&)]
static void FindChildMeshRender()
Debug.LogWarning(&Change Now!!!&);
Transform[] selection =
Selection.GetTransforms( SelectionMode.TopLevel | SelectionMode.Editable);
foreach(Transform t in selection)
ChangeQuality(t);
static void ChangeQuality(Transform T)
for(int i = 0 ; i & T.childC i ++)
Transform childTransform = T.GetChild(i);
if(childTransform.GetComponent&SkinnedMeshRenderer&() != null)
childTransform.GetComponent&SkinnedMeshRenderer&().quality = SkinQuality.Bone4;
ChangeQuality(childTransform);
// Disable the menu if there is nothing selected
// 如果什么都没有选择将禁用菜单功能
[MenuItem (&GameObject/ChangeMeshRenderQuality&, true)]
static bool ValidateSelection()
return Selection.activeGameObject !=
共1条评分,
常用的功能。
要评论请先&或者&
常用的功能。
感谢分享!这些代码段够实用!
:常用的功能。 谢谢鹰大的关注~~~
不错的总结,顶起
其实可以考虑用插件来传值
Mark &学习
感谢分享,正在做个多级菜单不知道有什么好方法= =List lst = new L
foreach (Transform child in transform)
&&&&lst.Add(child);&
&&&&Debug.Log(child.gameObject.name);
for(int i = 0;i & lst.Ci++)
&&&&Destroy(lst[i].gameObject);
遍历foreach删除的方法只在运行时Destroy有延迟时有效,最好还是要将它储存到一个LIST里面用for循环一个个去删。当然下面这样也行,每次都获取一下索引的子物体,删除即便延迟也没问题。
for (int i = tr.childCount - 1; i &= 0; i--) {
&&&&&&&Destroy(tr.GetChild(i).gameObject);
本文已收录于以下专栏:
相关文章推荐
看API时想到了这个问题,如何获得一个物体的所有子物体,在Unity的API有这个函数 Component.GetComponentsInChildren 获取子物体组件列表。
首先是在Unity软件...
开始是找了下U3D的SCRIPT手册,发现找不到这玩意。然后在谷歌搜&unity3d get all child&才找到了答案。很简单的答案,不过挺有意思的,挺好用。
foreach (...
using UnityE
using System.C
public class ResourcesLoadObj : MonoBehaviour
要在手机上玩转u3d,一定会做的一个就是对象池,在这里我不打算讨论对象池本身,基本思路大同小异。我这里想讨论的是切换场景引发的对象池中对象的问题。
        首先如果你什么都不处理,那么一旦你...
unity3d官方同步组件NetworkTransform没有做插值平滑,并且不适用子物体.
一、使用SyncListStruct同步封装好的结构体列表。
二、插值平滑运动时...
这是一段拖动物体的代码,比较简洁明了,对了解unity3d脚本概念有些帮助!在此加上注释分享! 02varmouseOverColor = Color.//声明变量为蓝色 03private...
他的最新文章
讲师:王哲涵
讲师:韦玮
您举报文章:
举报原因:
原文地址:
原因补充:
(最多只允许输入30个字)

我要回帖

更多关于 gameobject 子物体 的文章

 

随机推荐