repo: janusweb
action: commit
revision: 
path_from: 
revision_from: 00e881fcd4bad7288f39c4c7e28b2dc1cf96b567:
path_to: 
revision_to: 
git.thebackupbox.net
janusweb
git clone git://git.thebackupbox.net/janusweb
commit 00e881fcd4bad7288f39c4c7e28b2dc1cf96b567
Author: James Baicoianu 
Date:   Sun Sep 10 01:33:53 2023 -0700

    Faster animation blend decay

diff --git a/scripts/janusbase.js b/scripts/janusbase.js
index baeaf6f9d13f117aa5f8425cf1557a1aa8019fb2..
index ..e9b9b09d77a05840d71dfba7a668b8965a488e8e 100644
--- a/scripts/janusbase.js
+++ b/scripts/janusbase.js
@@ -1054,7 +1054,7 @@ elation.require(['engine.things.generic', 'utils.template', 'janusweb.parts'], f
           if (!this.fadetimers[clipname]) {
             // FIXME - for some reason, THREE.AnimationAction.fadeIn() / fadeOut() / etc are just causing the animations to stop, so we'll handle fading ourselves
             this.fadetimers[clipname] = setInterval(() => {
-              oldaction.weight *= .95;
+              oldaction.weight *= .9;
               if (oldaction.weight <= .001) {
                 oldaction.weight = 0;
                 oldaction.stop();

-----END OF PAGE-----