Files
tower/js/simple_tile.js

9 lines
384 B
JavaScript
Raw Normal View History

2021-05-11 05:28:20 +00:00
import { AnimatableTile } from './animatable_tile.js';
export class SimpleTile extends AnimatableTile {
2021-05-11 02:57:17 +00:00
constructor(width, height, image_url, animations) {
2021-05-11 05:28:20 +00:00
super(width, height, animations);
2021-05-11 02:57:17 +00:00
this.elem.style.backgroundImage = `url('${encodeURIComponent(image_url)}')`;
this.elem.style.backgroundSize = 'cover';
2021-05-11 03:12:32 +00:00
}
2021-05-11 02:57:17 +00:00
}
//# sourceMappingURL=simple_tile.js.map