We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e73bae commit d3aa842Copy full SHA for d3aa842
1 file changed
v3/src/gameobjects/tilemap/Tilemap.js
@@ -29,13 +29,14 @@ var Tilemap = new Class({
29
this.widthInPixels = mapData.widthInPixels;
30
this.heightInPixels = mapData.heightInPixels;
31
this.imageCollections = mapData.imageCollections;
32
+ this.collision = mapData.collision;
33
this.layers = mapData.layers;
34
this.tilesets = mapData.tilesets;
35
this.tiles = mapData.tiles;
36
this.objects = mapData.objects;
37
this.currentLayerIndex = 0;
38
- // TODO: collision, collideIndexes, imagecollections, images
39
+ // TODO: images
40
// TODO: debugging methods
41
},
42
0 commit comments