Fixed bug in model viewer that prevented animations from playing after changing the model.

This commit is contained in:
Daan Vanden Bosch 2019-06-30 20:03:37 +02:00
parent a162b6ae62
commit 342ca81045

View File

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