Finished saving sprite logic

This commit is contained in:
2024-07-26 04:57:17 +02:00
parent 095144fa8f
commit 116c6f1590
5 changed files with 46 additions and 95 deletions

View File

@ -161,6 +161,7 @@ export type SpriteAction = {
spriteId: string
sprite: Sprite
action: string
sprites: string[]
origin_x: number
origin_y: number
isAnimated: boolean
@ -168,14 +169,6 @@ export type SpriteAction = {
frameWidth: number
frameHeight: number
frameSpeed: number
images: SpriteActionImage[]
}
export type SpriteActionImage = {
id: string
spriteActionId: string
spriteAction: SpriteAction
order: number
}
export type Chat = {