diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-05-03 16:00:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 16:00:50 +0200 |
commit | 0d819ae5f57fb7940d5b31e82906f8a5fde1e141 (patch) | |
tree | dda54aa08c992650f815b1b941b235566cc786e1 /editor | |
parent | 883296382d2d03de6add0868b09577c21a344306 (diff) | |
parent | 3f1b95cfb1d7c89d5e4ca07e00afe4fbbf2ffdbc (diff) |
Merge pull request #48403 from kleonc/tilemap-editor-modulate-autotile-preview
TileMapEditor Modulate autotile previews
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/tile_map_editor_plugin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/tile_map_editor_plugin.cpp b/editor/plugins/tile_map_editor_plugin.cpp index bbc1666171..1d6ff92e0c 100644 --- a/editor/plugins/tile_map_editor_plugin.cpp +++ b/editor/plugins/tile_map_editor_plugin.cpp @@ -573,6 +573,7 @@ void TileMapEditor::_update_palette() { entries2.sort_custom<SwapComparator>(); Ref<Texture2D> tex = tileset->tile_get_texture(sel_tile); + Color modulate = tileset->tile_get_modulate(sel_tile); for (int i = 0; i < entries2.size(); i++) { manual_palette->add_item(String()); @@ -588,6 +589,7 @@ void TileMapEditor::_update_palette() { } manual_palette->set_item_icon(manual_palette->get_item_count() - 1, tex); + manual_palette->set_item_icon_modulate(manual_palette->get_item_count() - 1, modulate); } manual_palette->set_item_metadata(manual_palette->get_item_count() - 1, entries2[i]); |