关于unity3d使物体消失的代码问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于unity3d使物体消失的代码问题相关的知识,希望对你有一定的参考价值。
var player:Transform;
function Update()
if(gameObject.transform.position.z < player.transform.position.z)
Destroy(gameObject);
运行之后游戏物体不消失,求大神看看哪不对
// Use this for initialization
void Start ()
// Update is called once per frame
void Update ()
void OnMouseDown()
print ("Clicked to disappear");
Destroy (this.gameObject);
参考技术B 可能是你条件不满足吧。不知道能不能执行到Destroy(gameObject);这句代码。
Unity关于父物体判断子物体下面为空的代码
通过计算该对象身上有多少个子对象来判断该对象是否有子对象,但需要主意的是,gameObj本身也会被记录到Length之中,所以在判断gameObj对象是否有子对象时,应做如下书写(而不是写成==0);
void Start () {
if (GetComponentsInChildren<Transform>(true).Length <= 1)
{
Debug.Log("<color=red>啥也没有</color>");
}
else
{
foreach (Transform child in transform)
{
Debug.Log("<color=green>存在子物体</color>" + child.name);
if (child.name == "Sphere")
{
child.GetComponent<Renderer>().material.color = Color.yellow;
Debug.Log("有子物体萌萌哒");
}
else
{
child.GetComponent<Renderer>().material.color = Color.red;
}
}
}
}
代码转载https://tieba.baidu.com/p/6326766993?red_tag=3013601229
以上是关于关于unity3d使物体消失的代码问题的主要内容,如果未能解决你的问题,请参考以下文章
在Unity3d中如何碰撞触发GUI的显示,然后3秒之后自动消失?(求详细代码)