|
@@ -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 );
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
};
|
|
|
|