Files
tower/ts/animatable_tile.ts

20 lines
507 B
TypeScript
Raw Normal View History

2021-05-11 05:28:20 +00:00
import { Tile } from './tile.js';
export abstract class AnimatableTile extends Tile {
animations: Map<string, [Keyframe[], object]>;
constructor(width: number, height: number, animations: Map<string, [Keyframe[], object]>) {
super(width, height);
this.animations = animations;
}
play(name: string): Animation | undefined {
const animation = this.animations.get(name);
if (animation) {
return this.elem.animate(...animation);
} else {
return undefined;
}
}
}