GameObject.SetActiveRecursively 设置活动状态

function SetActiveRecursively (state : bool) : void

Description描述

Sets the active state of this and all the game objects children to state.

设置游戏物体及其子物体的状态为state。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		gameObject.SetActiveRecursively(true);
	}
}
gameObject.SetActiveRecursively(true);
最后修改:2011年5月19日 Thursday 22:18

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。