MonoBehaviour.OnEnable 当可用

function OnEnable () : void

Description描述

This function is called when the object becomes enabled and active.

当对象变为可用或激活状态时此函数被调用。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnEnable() {
		print("script was enabled");
	}
}
function OnEnable () {
	print("script was enabled");
}

OnEnable cannot be a co-routine.

OnEnable不能用于协同程序。

最后修改:2011年1月2日 Sunday 16:47

本脚本参考基于Unity 3.4.1f5

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