Files
tower/js/simple_tile.js
2021-05-11 05:17:16 +00:00

19 lines
597 B
JavaScript

import { Tile } from './tile.js';
export class SimpleTile extends Tile {
constructor(width, height, image_url, animations) {
super(width, height);
this.elem.style.backgroundImage = `url('${encodeURIComponent(image_url)}')`;
this.elem.style.backgroundSize = 'cover';
this.animations = animations;
}
play(name) {
const animation = this.animations.get(name);
if (animation) {
return this.elem.animate(...animation);
}
else {
return undefined;
}
}
}
//# sourceMappingURL=simple_tile.js.map