チェンジセット 550
- コミット日時:
- 2008/05/31 12:44:03 (6 ヶ月前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/Thread/branches/soumen/Thread.as3proj
r548 r550 67 67 <!-- Class files to compile (other referenced classes will automatically be included) --> 68 68 <compileTargets> 69 <compile path="samples\ progress\Sample.as" />69 <compile path="samples\tweener\Sample.as" /> 70 70 </compileTargets> 71 71 <!-- Paths to exclude from the Project Explorer tree --> as3/Thread/branches/soumen/src/org/libspark/thread/threads/tweener/TweenerThread.as
r543 r550 54 54 private var _monitor:IMonitor; 55 55 56 public function cancel():void 57 { 58 interrupt(); 59 } 60 56 61 private function splitSpecialArgs(args:Object):Object 57 62 { … … 93 98 { 94 99 _monitor.wait(); 95 // TODO: 割り込み処理。今は無視 96 interrupted(waitTween); 100 interrupted(interruptedHandler); 97 101 } 98 102 … … 112 116 _monitor.notifyAll(); 113 117 } 118 119 private function interruptedHandler():void 120 { 121 if (Tweener.isTweening(_target)) { 122 Tweener.removeTweens(_target); 123 } 124 } 114 125 } 115 126 }
