Tiled 1.2.1 and 1.2.2 save tile properties like this
{
“id”:0,
“properties”:[
{
“name”:“collides”,
“type”:“bool”,
“value”:true
}]
},
Phaser seems to want to read
"0": { "collides":true }
when using something like this.tilemap_layer.setCollisionByProperty({ collides: true });
Is there a way to produce right type json with Tiled or read the Tiled-format with Phaser?