Walkable mask painting

This commit is contained in:
Ian Gulliver
2021-05-17 04:26:18 +00:00
parent 0030b63e3a
commit 9d681291cc
43 changed files with 577 additions and 362 deletions

View File

@@ -1,10 +1,18 @@
import { Mask } from './mask.js';
export abstract class Tile {
elem: HTMLElement;
masks: Map<string, Mask>;
constructor(width: number, height: number, masks: Map<string, Mask>) {
this.masks = masks;
constructor(width: number, height: number) {
this.elem = document.createElement('div');
this.elem.style.gridColumnEnd = `span ${width}`;
this.elem.style.gridRowEnd = `span ${height}`;
// Hack to avoid floating point stitching gaps
this.elem.style.width = 'calc(100% + 1px)';
this.elem.style.height = 'calc(100% + 1px)';
}
abstract play(name: string): Animation | undefined;