* fix small bug * fix tabs instead of spaces * fix idle action * Update webgl_animation_skinning_additive_blending.html Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
@@ -203,7 +203,11 @@
const currentAction = currentSettings ? currentSettings.action : null;
const action = settings ? settings.action : null;
- prepareCrossFade( currentAction, action, 0.35 );
+ if ( currentAction !== action ) {
+
+ prepareCrossFade( currentAction, action, 0.35 );
+ }
};