* @function LevelRenderer.Animation.Animator.prototype.stop * @description 停止动画
()
| 643 | * @description 停止动画 |
| 644 | */ |
| 645 | stop() { |
| 646 | for (var i = 0; i < this._clipList.length; i++) { |
| 647 | var clip = this._clipList[i]; |
| 648 | this.animation.remove(clip); |
| 649 | } |
| 650 | this._clipList = []; |
| 651 | } |
| 652 | |
| 653 | |
| 654 | /** |
no test coverage detected