()
| 101 | } |
| 102 | |
| 103 | public stop():void { |
| 104 | if (!this._isRunning) { |
| 105 | return; |
| 106 | } |
| 107 | this._isRunning = false; |
| 108 | this._timeKeeper.reset(); |
| 109 | if (this._tween) { |
| 110 | this._tween.stop(); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | public forecasting(time:number):boolean { |
| 115 | __trace('MotionManager.forecasting always returns false', 'warn'); |
no test coverage detected