1
0
forked from noxious/server

Removed isAnimated and isLooping fields

This commit is contained in:
2025-01-27 01:56:04 +01:00
parent 8f4d4fc482
commit 9771f45e6d
8 changed files with 104 additions and 57 deletions

View File

@ -21,9 +21,6 @@ export class BaseMapObject extends BaseEntity {
@Property({ type: 'decimal', precision: 10, scale: 2 })
originY = 0
@Property()
isAnimated = false
@Property()
frameRate = 0
@ -84,15 +81,6 @@ export class BaseMapObject extends BaseEntity {
return this.originY
}
setIsAnimated(isAnimated: boolean) {
this.isAnimated = isAnimated
return this
}
getIsAnimated() {
return this.isAnimated
}
setFrameRate(frameRate: number) {
this.frameRate = frameRate
return this