Skip to content

Commit

Permalink
Merge pull request #6180 from mozilla/FixMixerAnimation
Browse files Browse the repository at this point in the history
Fix Mixer animation
  • Loading branch information
takahirox authored Jul 24, 2023
2 parents 374d2a6 + 6ad6410 commit 6ecab12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bit-systems/mixer-animatable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const mixerExitQuery = exitQuery(mixerQuery);

export function mixerAnimatableSystem(world: HubsWorld): void {
initializeEnterQuery(world).forEach(eid => {
if (entityExists(world, eid)) {
if (!entityExists(world, eid)) {
console.warn("Skipping nonexistant entity."); // TODO Why does this happen?
return;
}
Expand Down

0 comments on commit 6ecab12

Please sign in to comment.