From 342ca8104548e1a6e7b1ce571a75a5b64731590a Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sun, 30 Jun 2019 20:03:37 +0200 Subject: [PATCH] Fixed bug in model viewer that prevented animations from playing after changing the model. --- src/stores/ModelViewerStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/ModelViewerStore.ts b/src/stores/ModelViewerStore.ts index fd6cffb8..2b97eedc 100644 --- a/src/stores/ModelViewerStore.ts +++ b/src/stores/ModelViewerStore.ts @@ -44,6 +44,7 @@ class ModelViewerStore { if (this.current_model_obj3d && this.animation_mixer) { this.animation_mixer.stopAllAction(); this.animation_mixer.uncacheRoot(this.current_model_obj3d); + this.animation_mixer = undefined; } if (model) { @@ -113,7 +114,6 @@ class ModelViewerStore { if (this.animation_mixer) { this.animation_mixer.stopAllAction(); - this.animation_mixer.uncacheRoot(this.current_model_obj3d); } else { this.animation_mixer = new AnimationMixer(this.current_model_obj3d); }