Skip to content

Commit 422e769

Browse files
committed
Tilemap.createFromObjects will now force the creation of the property again even if it doesn't exist (regression fix from 2.0.4)
1 parent a01b8f2 commit 422e769

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tilemap/Tilemap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ Phaser.Tilemap.prototype = {
387387

388388
for (var property in this.objects[name][i].properties)
389389
{
390-
group.set(sprite, property, this.objects[name][i].properties[property], false, false, 0);
390+
group.set(sprite, property, this.objects[name][i].properties[property], false, false, 0, true);
391391
}
392392
}
393393
}

0 commit comments

Comments
 (0)