mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Fixed bug in model viewer that prevented animations from playing after changing the model.
This commit is contained in:
parent
a162b6ae62
commit
342ca81045
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user