diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2018-11-05 01:09:01 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2018-11-05 01:09:01 +0100 |
commit | 5593bf2d364667d8402daa8fde8f43647f7360a6 (patch) | |
tree | 6c929a56b1664dcfe2c5ad24c33984972d8045b9 /src | |
parent | aee504be88f155adafc412936663607da72d7e4a (diff) | |
download | rpgedit-5593bf2d364667d8402daa8fde8f43647f7360a6.tar rpgedit-5593bf2d364667d8402daa8fde8f43647f7360a6.zip |
data: remove obsolete collision matrix
Diffstat (limited to 'src')
-rw-r--r-- | src/model/data/map.ts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/model/data/map.ts b/src/model/data/map.ts index 50b9175..d6fd835 100644 --- a/src/model/data/map.ts +++ b/src/model/data/map.ts @@ -1,12 +1,10 @@ export interface Input { readonly tiles: string[]; - readonly collision: boolean[][]; readonly layers: number[][][]; } export class MapData { public readonly tiles: string[]; - public readonly collision: boolean[][]; public readonly layers: number[][][]; public readonly width: number; @@ -14,10 +12,9 @@ export class MapData { constructor(data: Input) { this.tiles = data.tiles; - this.collision = data.collision; this.layers = data.layers; - this.height = this.collision.length; - this.width = this.collision[0].length; + this.height = this.layers[0].length; + this.width = this.layers[0][0].length; } } |