removeClip method
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));
}