Skip to content

Commit

Permalink
fix(animation): ACT-1237 animation name fix (#110)
Browse files Browse the repository at this point in the history
* fix: ACT-1237 animation name fix
  • Loading branch information
Jarvv authored Jan 3, 2025
1 parent f79b40f commit 6d40979
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/services/Animation.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export const useAnimations = (animations: AnimationsT) =>
await Promise.all(
Object.keys(animations).map(async (name) => {
const newClip = await loadAnimationClip(animations[name].source);
newClip.name = name;
clips[name] = newClip;
})
);
Expand Down

0 comments on commit 6d40979

Please sign in to comment.