>>811
コンポーネントそのものをオンオフするよりも、スクリプトの中でフラグ立てればいいと思う。
var enable: boolean = true;
function LastUpdate(){
 while(enable){
  //処理
 }
}
って感じで。