diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-01-12 20:35:46 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-01-12 20:35:46 -0300 |
commit | a2903fc51d1d20eba4dc451bdacbe477d6670163 (patch) | |
tree | bbcac01f2c30ca1e104b11321e5c7a6930f51e59 /scene/2d/tile_map.cpp | |
parent | da477b76a98ee7ca4ac16773d3baf1299e053da7 (diff) |
Must now register with set_transform_notify() to get NOTIFICATION_TRANSFORM_CHANGED
Diffstat (limited to 'scene/2d/tile_map.cpp')
-rw-r--r-- | scene/2d/tile_map.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/2d/tile_map.cpp b/scene/2d/tile_map.cpp index 7bd3a5d932..26f9f7b879 100644 --- a/scene/2d/tile_map.cpp +++ b/scene/2d/tile_map.cpp @@ -1321,6 +1321,7 @@ TileMap::TileMap() { fp_adjust=0.00001; tile_origin=TILE_ORIGIN_TOP_LEFT; + set_notify_transform(true); } TileMap::~TileMap() { |