removeClip method

void removeClip(
  1. AnimationClip clip
)

Unregisters clip so it no longer contributes to the blend.

Bind poses recorded for its nodes are kept (other clips may share them). No-op when clip is not registered.

Implementation

void removeClip(AnimationClip clip) {
  _clips.removeWhere((_, registered) => identical(registered, clip));
}