mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
Tilemap.createFromObjects will now force the creation of the property again even if it doesn't exist (regression fix from 2.0.4)
This commit is contained in:
parent
a01b8f2387
commit
422e769a3e
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ Phaser.Tilemap.prototype = {
|
|||
|
||||
for (var property in this.objects[name][i].properties)
|
||||
{
|
||||
group.set(sprite, property, this.objects[name][i].properties[property], false, false, 0);
|
||||
group.set(sprite, property, this.objects[name][i].properties[property], false, false, 0, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue