diff --git a/ShadowEditor.Web/src/player/animator/ParticleAnimator.js b/ShadowEditor.Web/src/player/animator/ParticleAnimator.js index a065df0b..982670e1 100644 --- a/ShadowEditor.Web/src/player/animator/ParticleAnimator.js +++ b/ShadowEditor.Web/src/player/animator/ParticleAnimator.js @@ -28,6 +28,8 @@ ParticleAnimator.prototype.update = function (clock, deltaTime, time) { n.update(); } else if (n.userData.type === 'ParticleEmitter') { n.userData.group.tick(deltaTime); + } else if (n.userData.type === 'Cloth') { + n.update(); } }); };