From 2c1242a9ad84ffa90b08b90936903e1fbabc4e35 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 24 Feb 2026 19:41:51 +0700 Subject: [PATCH] animation properties --- src/components/Utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 790733f..888e651 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -523,8 +523,8 @@ export function AsepriteFlipBookKeyframe( } // Quick Animation -type Anim = AnimationProperties | number -type AnimWithSmartAnim = [SmartAnimation | Anim, ...Anim[]] +export type AnimationByType = AnimationProperties | number +export type AnimWithSmartAnim = [SmartAnimation | AnimationByType, ...AnimationByType[]] export function OffsetAnimation(...keyframes: AnimWithSmartAnim) { return new Animation(AnimType.OFFSET, ...keyframes)