Update

即使 MonobehaviourUpdate 函数为空,也会带来额外的性能消耗

请删除空的 Update 函数

voud Update() 
{

}

控制循环次数

void Update() 
{
	if(xxx) 
	{
		// Do something
	}
}