* @function LevelRenderer.Animation.prototype.remove * @description 删除动画片段。 * @param {LevelRenderer.Animation.Clip} clip - 动画片段。
(clip)
| 94 | * @param {LevelRenderer.Animation.Clip} clip - 动画片段。 |
| 95 | */ |
| 96 | remove(clip) { |
| 97 | var idx = new Util().indexOf(this._clips, clip); |
| 98 | if (idx >= 0) { |
| 99 | this._clips.splice(idx, 1); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | |
| 104 | /** |