Add check for animation mixers in RuntimeHost

This commit is contained in:
2026-04-14 13:47:13 +02:00
parent 7b5e5a0212
commit be2ba389b3

View File

@@ -1398,6 +1398,10 @@ export class RuntimeHost {
.map((npc) => npc.entityId) ?? [];
for (const npcId of npcIds) {
if (!this.animationMixers.has(npcId)) {
continue;
}
if (clipName === null) {
this.applyStopAnimationAction(npcId);
} else {