diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-08 10:04:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 10:04:30 +0200 |
commit | de33c37196f0ddec675640fcfeaaa46a17d9ebf2 (patch) | |
tree | cc344bdc97850745618c752a029a53367fbdd0b5 /editor/plugins/tile_set_editor_plugin.h | |
parent | d211aff777ec338a5f57cece1c7bf76120d0622d (diff) | |
parent | a3af9d5714503bfdb1e524fee5ebc2da08e92d98 (diff) |
Merge pull request #27565 from SpechtMagnus/tileset_autotile_ignore_flags
Added ignore flag / wildcard bit to tileset autotile
Diffstat (limited to 'editor/plugins/tile_set_editor_plugin.h')
-rw-r--r-- | editor/plugins/tile_set_editor_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/tile_set_editor_plugin.h b/editor/plugins/tile_set_editor_plugin.h index 2827964592..1176e1bb92 100644 --- a/editor/plugins/tile_set_editor_plugin.h +++ b/editor/plugins/tile_set_editor_plugin.h @@ -126,7 +126,7 @@ class TileSetEditor : public HSplitContainer { Vector2 edited_shape_coord; PoolVector2Array current_shape; Map<Vector2i, SubtileData> current_tile_data; - Map<Vector2, uint16_t> bitmask_map_copy; + Map<Vector2, uint32_t> bitmask_map_copy; Vector2 snap_step; Vector2 snap_offset; |