1
0
forked from noxious/server

Renamed frameSpeed > frameRate

This commit is contained in:
2024-12-21 02:27:14 +01:00
parent 2c10b54582
commit 5c47edd230
9 changed files with 54 additions and 47 deletions

View File

@ -189,7 +189,7 @@ async function addHttpRoutes(app: Application) {
frameCount: JSON.parse(JSON.stringify(spriteAction.sprites)).length,
frameWidth: spriteAction.frameWidth,
frameHeight: spriteAction.frameHeight,
frameSpeed: spriteAction.frameSpeed
frameRate: spriteAction.frameRate
})
})

View File

@ -34,7 +34,7 @@ export type AssetData = {
frameCount?: number
frameWidth?: number
frameHeight?: number
frameSpeed?: number
frameRate?: number
}
export type WorldSettings = {