From 2bdde74d45e0ef88a45309bd0dbb4e0f5aad4773 Mon Sep 17 00:00:00 2001 From: dankan1890 Date: Thu, 26 Sep 2019 09:22:53 +0200 Subject: Changed the appearance of the rotation icons in the Tilemap. Make them more intuitive. --- editor/icons/icon_rotate_left.svg | 1 + editor/icons/icon_rotate_right.svg | 1 + editor/plugins/tile_map_editor_plugin.cpp | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 editor/icons/icon_rotate_left.svg create mode 100644 editor/icons/icon_rotate_right.svg (limited to 'editor') diff --git a/editor/icons/icon_rotate_left.svg b/editor/icons/icon_rotate_left.svg new file mode 100644 index 0000000000..223a725332 --- /dev/null +++ b/editor/icons/icon_rotate_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/editor/icons/icon_rotate_right.svg b/editor/icons/icon_rotate_right.svg new file mode 100644 index 0000000000..2b66bae998 --- /dev/null +++ b/editor/icons/icon_rotate_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/editor/plugins/tile_map_editor_plugin.cpp b/editor/plugins/tile_map_editor_plugin.cpp index 86d538e702..2d66087699 100644 --- a/editor/plugins/tile_map_editor_plugin.cpp +++ b/editor/plugins/tile_map_editor_plugin.cpp @@ -71,8 +71,8 @@ void TileMapEditor::_notification(int p_what) { picker_button->set_icon(get_icon("ColorPick", "EditorIcons")); select_button->set_icon(get_icon("ActionCopy", "EditorIcons")); - rotate_left_button->set_icon(get_icon("Rotate270", "EditorIcons")); - rotate_right_button->set_icon(get_icon("Rotate90", "EditorIcons")); + rotate_left_button->set_icon(get_icon("RotateLeft", "EditorIcons")); + rotate_right_button->set_icon(get_icon("RotateRight", "EditorIcons")); flip_horizontal_button->set_icon(get_icon("MirrorX", "EditorIcons")); flip_vertical_button->set_icon(get_icon("MirrorY", "EditorIcons")); clear_transform_button->set_icon(get_icon("Clear", "EditorIcons")); -- cgit v1.2.3