support for group layer of Tiled (excludes 'start' layer)

This commit is contained in:
Lurkars 2021-02-27 15:23:57 +01:00 committed by David Négrier
parent f0d277af32
commit 9b6be3466b
3 changed files with 46 additions and 22 deletions

View file

@ -61,6 +61,11 @@ export interface ITiledMapLayer {
*/
draworder: string;
objects: ITiledMapObject[];
/**
* Layers for group layer
*/
layers: this[];
}
export interface ITiledMapObject {