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,9 +1,10 @@
import { AnimatableTile } from './animatable_tile.js';
import { Mask } from './mask.js';
import { Tile } from './tile.js';
export class SequenceTile extends AnimatableTile {
constructor(width: number, height: number, animations: Map<string, [Keyframe[], object]>, tiles: Tile[], delay: number, repeat: boolean) {
super(width, height, animations);
constructor(width: number, height: number, masks: Map<string, Mask>, animations: Map<string, [Keyframe[], object]>, tiles: Tile[], delay: number, repeat: boolean) {
super(width, height, masks, animations);
this.elem.style.position = 'relative';