atomicptr / openfl-tiled

openfl-tiled is a library which gives OpenFL developers the ability to use the TILED map editor.
Other
45 stars 21 forks source link

Tileset.hx propretyTiles (this time rechecked with trunk) not defined #64

Closed smoketh closed 9 years ago

smoketh commented 10 years ago

Defined but not assigned, consider adding

propertyTiles:Map<Int, PropertyTile> 

as an argument at line 74 and later defining it as

this.propertyTiles = propertyTiles;

not forgetting to include it at line 163 making it something like

return new Tileset(tiledMap, name, tileWidth, tileHeight, spacing, properties, terrainTypes,
            image, new Point(tileOffsetX, tileOffsetY), propertyTiles);