diff --git a/editor/animation_editor.cpp b/editor/animation_editor.cpp index 1571131aeeb..ed80be9e17a 100644 --- a/editor/animation_editor.cpp +++ b/editor/animation_editor.cpp @@ -2904,7 +2904,7 @@ void AnimationKeyEditor::_notification(int p_what) { zoomicon->set_custom_minimum_size(Size2(24 * EDSCALE, 0)); zoomicon->set_stretch_mode(TextureRect::STRETCH_KEEP_CENTERED); - menu_add_track->set_icon(get_icon("AddTrack", "EditorIcons")); + menu_add_track->set_icon(get_icon("Add", "EditorIcons")); menu_add_track->get_popup()->add_icon_item(get_icon("KeyValue", "EditorIcons"), "Add Normal Track", ADD_TRACK_MENU_ADD_VALUE_TRACK); menu_add_track->get_popup()->add_icon_item(get_icon("KeyXform", "EditorIcons"), "Add Transform Track", ADD_TRACK_MENU_ADD_TRANSFORM_TRACK); menu_add_track->get_popup()->add_icon_item(get_icon("KeyCall", "EditorIcons"), "Add Call Func Track", ADD_TRACK_MENU_ADD_CALL_TRACK); diff --git a/editor/editor_icons.h b/editor/editor_icons.h deleted file mode 100644 index 760bb4421c1..00000000000 --- a/editor/editor_icons.h +++ /dev/null @@ -1,37 +0,0 @@ -/*************************************************************************/ -/* editor_icons.h */ -/*************************************************************************/ -/* This file is part of: */ -/* GODOT ENGINE */ -/* http://www.godotengine.org */ -/*************************************************************************/ -/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */ -/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */ -/* */ -/* Permission is hereby granted, free of charge, to any person obtaining */ -/* a copy of this software and associated documentation files (the */ -/* "Software"), to deal in the Software without restriction, including */ -/* without limitation the rights to use, copy, modify, merge, publish, */ -/* distribute, sublicense, and/or sell copies of the Software, and to */ -/* permit persons to whom the Software is furnished to do so, subject to */ -/* the following conditions: */ -/* */ -/* The above copyright notice and this permission notice shall be */ -/* included in all copies or substantial portions of the Software. */ -/* */ -/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ -/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ -/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ -/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ -/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ -/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ -/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/*************************************************************************/ -#ifndef EDITOR_ICONS_H -#define EDITOR_ICONS_H - -#include "scene/resources/theme.h" - -void editor_register_icons(Ref p_theme); - -#endif diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 9150e6a9bbb..9e34c1872c9 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -336,7 +336,7 @@ void EditorNode::_notification(int p_what) { if (p_what == EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED) { scene_tabs->set_tab_close_display_policy((bool(EDITOR_DEF("interface/always_show_close_button_in_scene_tabs", false)) ? Tabs::CLOSE_BUTTON_SHOW_ALWAYS : Tabs::CLOSE_BUTTON_SHOW_ACTIVE_ONLY)); property_editor->set_enable_capitalize_paths(bool(EDITOR_DEF("interface/capitalize_properties", true))); - Ref theme = create_editor_theme(); + Ref theme = create_editor_theme(theme_base->get_theme()); theme_base->set_theme(theme); gui_base->add_style_override("panel", gui_base->get_stylebox("Background", "EditorStyles")); play_button_panel->add_style_override("panel", gui_base->get_stylebox("PlayButtonPanel", "EditorStyles")); @@ -5242,7 +5242,7 @@ EditorNode::EditorNode() { main_vbox = memnew(VBoxContainer); gui_base->add_child(main_vbox); main_vbox->set_area_as_parent_rect(8); - main_vbox->set_margin(MARGIN_TOP, 5); + main_vbox->set_margin(MARGIN_TOP, 5 * EDSCALE); menu_hb = memnew(HBoxContainer); main_vbox->add_child(menu_hb); diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index 11150371d2f..e0dd9b315c1 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -31,9 +31,11 @@ #include "core/io/resource_loader.h" #include "editor_fonts.h" -#include "editor_icons.h" +#include "editor_icons.gen.h" #include "editor_scale.h" #include "editor_settings.h" +#include "modules/svg/image_loader_svg.h" +#include "time.h" static Ref make_stylebox(Ref texture, float p_left, float p_top, float p_right, float p_botton, float p_margin_left = -1, float p_margin_top = -1, float p_margin_right = -1, float p_margin_botton = -1, bool p_draw_center = true) { Ref style(memnew(StyleBoxTexture)); @@ -100,11 +102,44 @@ static Ref add_additional_border(Ref p_style, int p_ #define HIGHLIGHT_COLOR_LIGHT highlight_color.linear_interpolate(Color(1, 1, 1, 1), 0.3) #define HIGHLIGHT_COLOR_DARK highlight_color.linear_interpolate(Color(0, 0, 0, 1), 0.5) -Ref create_editor_theme() { +Ref editor_generate_icon(int p_index, bool dark_theme = true) { + Ref icon = memnew(ImageTexture); + Ref img = memnew(Image); + + ImageLoaderSVG::create_image_from_string(img, dark_theme ? editor_icons_sources[p_index] : editor_icons_sources_dark[p_index], EDSCALE); + if ((EDSCALE - (float)((int)EDSCALE)) > 0.0) + icon->create_from_image(img); // in this case filter really helps + else + icon->create_from_image(img, 0); + + return icon; +} + +void editor_register_icons(Ref p_theme, bool dark_theme = true) { + +#ifdef SVG_ENABLED + print_line(rtos(EDSCALE)); + + clock_t begin_time = clock(); + + for (int i = 0; i < editor_icons_count; i++) { + + Ref icon = editor_generate_icon(i, dark_theme); + p_theme->set_icon(editor_icons_names[i], "EditorIcons", icon); + } + clock_t end_time = clock(); + double time_d = (double)(end_time - begin_time) / CLOCKS_PER_SEC; + print_line("SVG_GENERATION TIME: " + rtos(time_d)); +#else + print_line("Sorry no icons for you"); +#endif +} + +Ref create_editor_theme(const Ref p_theme) { + Ref theme = Ref(memnew(Theme)); editor_register_fonts(theme); - editor_register_icons(theme); const float default_contrast = 0.25; @@ -153,10 +188,21 @@ Ref create_editor_theme() { title_color_hl = base_color.linear_interpolate(Color(1, 1, 1, 1), contrast / default_contrast / 10); bool dark_bg = ((title_color_hl.r + title_color_hl.g + title_color_hl.b) / 3.0) < 0.5; Color title_color_hl_text_color = dark_bg ? Color(1, 1, 1, 0.9) : Color(0, 0, 0, 0.9); - Ref title_hl_close_icon = theme->get_icon((dark_bg ? "GuiCloseLight" : "GuiCloseDark"), "EditorIcons"); - bool dark_base = ((base_color.r + base_color.g + base_color.b) / 3.0) < 0.5; - Color separator_color = dark_base ? Color(1, 1, 1, 0.1) : Color(0, 0, 0, 0.1); + bool dark_theme = ((base_color.r + base_color.g + base_color.b) / 3.0) < 0.5; + Color separator_color = dark_theme ? Color(1, 1, 1, 0.1) : Color(0, 0, 0, 0.1); + + // the resolution or the dark theme parameter has not changed, so we do not regenerate the icons + if (p_theme != NULL && (p_theme->get_constant("scale", "Editor") - EDSCALE) < 0.00001 && p_theme->get_constant("dark_theme", "Editor") == dark_theme) { + for (int i = 0; i < editor_icons_count; i++) { + theme->set_icon(editor_icons_names[i], "EditorIcons", p_theme->get_icon(editor_icons_names[i], "EditorIcons")); + } + } else { + editor_register_icons(theme, dark_theme); + } + + theme->set_constant("scale", "Editor", EDSCALE); + theme->set_constant("dark_theme", "Editor", dark_theme); theme->set_color("highlight_color", "Editor", highlight_color); theme->set_color("base_color", "Editor", base_color); @@ -342,7 +388,7 @@ Ref create_editor_theme() { theme->set_color("prop_section", "Editor", dark_color_1.linear_interpolate(Color(1, 1, 1, 1), 0.09)); theme->set_color("prop_subsection", "Editor", dark_color_1.linear_interpolate(Color(1, 1, 1, 1), 0.06)); theme->set_color("fg_selected", "Editor", HIGHLIGHT_COLOR_DARK); - theme->set_color("fg_error", "Editor", Color::html("ffbd8e8e")); + theme->set_color("fg_error", "Editor", theme->get_color("error_color", "Editor")); theme->set_color("drop_position_color", "Tree", highlight_color); // ItemList @@ -377,7 +423,7 @@ Ref create_editor_theme() { theme->set_icon("menu_hl", "TabContainer", theme->get_icon("GuiTabMenu", "EditorIcons")); theme->set_stylebox("SceneTabFG", "EditorStyles", make_flat_stylebox(title_color_hl, 10, 5, 10, 5)); theme->set_stylebox("SceneTabBG", "EditorStyles", make_empty_stylebox(6, 5, 6, 5)); - theme->set_icon("close", "Tabs", title_hl_close_icon); + theme->set_icon("close", "Tabs", theme->get_icon("GuiClose", "EditorIcons")); // Separators (no separators) theme->set_stylebox("separator", "HSeparator", make_line_stylebox(separator_color, border_width)); @@ -434,8 +480,8 @@ Ref create_editor_theme() { style_window->set_expand_margin_size(MARGIN_TOP, 24 * EDSCALE); theme->set_stylebox("panel", "WindowDialog", style_window); theme->set_color("title_color", "WindowDialog", title_color_hl_text_color); - theme->set_icon("close", "WindowDialog", title_hl_close_icon); - theme->set_icon("close_highlight", "WindowDialog", title_hl_close_icon); + theme->set_icon("close", "WindowDialog", theme->get_icon("GuiClose", "EditorIcons")); + theme->set_icon("close_highlight", "WindowDialog", theme->get_icon("GuiClose", "EditorIcons")); theme->set_constant("close_h_ofs", "WindowDialog", 22 * EDSCALE); theme->set_constant("close_v_ofs", "WindowDialog", 20 * EDSCALE); theme->set_constant("title_height", "WindowDialog", 24 * EDSCALE); diff --git a/editor/editor_themes.h b/editor/editor_themes.h index 2ebefee6f33..8a652ba6f19 100644 --- a/editor/editor_themes.h +++ b/editor/editor_themes.h @@ -32,7 +32,7 @@ #include "scene/resources/theme.h" -Ref create_editor_theme(); +Ref create_editor_theme(Ref p_theme = NULL); Ref create_custom_theme(); diff --git a/editor/icons/2x/icon_2_d.png b/editor/icons/2x/icon_2_d.png deleted file mode 100644 index 9b2ed646653..00000000000 Binary files a/editor/icons/2x/icon_2_d.png and /dev/null differ diff --git a/editor/icons/2x/icon_3_d.png b/editor/icons/2x/icon_3_d.png deleted file mode 100644 index 218c246870f..00000000000 Binary files a/editor/icons/2x/icon_3_d.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_checked.png b/editor/icons/2x/icon_GUI_checked.png deleted file mode 100644 index d51f20b867f..00000000000 Binary files a/editor/icons/2x/icon_GUI_checked.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_dropdown.png b/editor/icons/2x/icon_GUI_dropdown.png deleted file mode 100644 index 78d3352e4e1..00000000000 Binary files a/editor/icons/2x/icon_GUI_dropdown.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_hslider_bg.png b/editor/icons/2x/icon_GUI_hslider_bg.png deleted file mode 100644 index 38af962095a..00000000000 Binary files a/editor/icons/2x/icon_GUI_hslider_bg.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_hsplitter.png b/editor/icons/2x/icon_GUI_hsplitter.png deleted file mode 100644 index 063f0c90fc3..00000000000 Binary files a/editor/icons/2x/icon_GUI_hsplitter.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_mini_tab_menu.png b/editor/icons/2x/icon_GUI_mini_tab_menu.png deleted file mode 100644 index 8c3aa73aaf4..00000000000 Binary files a/editor/icons/2x/icon_GUI_mini_tab_menu.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_option_arrow.png b/editor/icons/2x/icon_GUI_option_arrow.png deleted file mode 100644 index 87fdc8aa51e..00000000000 Binary files a/editor/icons/2x/icon_GUI_option_arrow.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_play_button_group.png b/editor/icons/2x/icon_GUI_play_button_group.png deleted file mode 100644 index 6a569d5e802..00000000000 Binary files a/editor/icons/2x/icon_GUI_play_button_group.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_progress_bar.png b/editor/icons/2x/icon_GUI_progress_bar.png deleted file mode 100644 index ca53eba8d00..00000000000 Binary files a/editor/icons/2x/icon_GUI_progress_bar.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_progress_fill.png b/editor/icons/2x/icon_GUI_progress_fill.png deleted file mode 100644 index ac6c5626504..00000000000 Binary files a/editor/icons/2x/icon_GUI_progress_fill.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_radio_checked.png b/editor/icons/2x/icon_GUI_radio_checked.png deleted file mode 100644 index 1b38071c00e..00000000000 Binary files a/editor/icons/2x/icon_GUI_radio_checked.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_radio_unchecked.png b/editor/icons/2x/icon_GUI_radio_unchecked.png deleted file mode 100644 index b76bf63f2d8..00000000000 Binary files a/editor/icons/2x/icon_GUI_radio_unchecked.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_scroll_bg.png b/editor/icons/2x/icon_GUI_scroll_bg.png deleted file mode 100644 index 58369d6f96b..00000000000 Binary files a/editor/icons/2x/icon_GUI_scroll_bg.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_scroll_grabber.png b/editor/icons/2x/icon_GUI_scroll_grabber.png deleted file mode 100644 index 6f74a9365fb..00000000000 Binary files a/editor/icons/2x/icon_GUI_scroll_grabber.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_scroll_grabber_hl.png b/editor/icons/2x/icon_GUI_scroll_grabber_hl.png deleted file mode 100644 index c03ca1adf93..00000000000 Binary files a/editor/icons/2x/icon_GUI_scroll_grabber_hl.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_slider_grabber.png b/editor/icons/2x/icon_GUI_slider_grabber.png deleted file mode 100644 index 97e97cb5369..00000000000 Binary files a/editor/icons/2x/icon_GUI_slider_grabber.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_slider_grabber_hl.png b/editor/icons/2x/icon_GUI_slider_grabber_hl.png deleted file mode 100644 index 2229e25a603..00000000000 Binary files a/editor/icons/2x/icon_GUI_slider_grabber_hl.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_spinbox_updown.png b/editor/icons/2x/icon_GUI_spinbox_updown.png deleted file mode 100644 index a20b43f9c3a..00000000000 Binary files a/editor/icons/2x/icon_GUI_spinbox_updown.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_tab_menu.png b/editor/icons/2x/icon_GUI_tab_menu.png deleted file mode 100644 index 3887615fee9..00000000000 Binary files a/editor/icons/2x/icon_GUI_tab_menu.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_toggle_off.png b/editor/icons/2x/icon_GUI_toggle_off.png deleted file mode 100644 index 9da02707d1c..00000000000 Binary files a/editor/icons/2x/icon_GUI_toggle_off.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_toggle_on.png b/editor/icons/2x/icon_GUI_toggle_on.png deleted file mode 100644 index 41a25e9345b..00000000000 Binary files a/editor/icons/2x/icon_GUI_toggle_on.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_tree_arrow_down.png b/editor/icons/2x/icon_GUI_tree_arrow_down.png deleted file mode 100644 index c71c6f41590..00000000000 Binary files a/editor/icons/2x/icon_GUI_tree_arrow_down.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_tree_arrow_right.png b/editor/icons/2x/icon_GUI_tree_arrow_right.png deleted file mode 100644 index 66331c730a2..00000000000 Binary files a/editor/icons/2x/icon_GUI_tree_arrow_right.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_unchecked.png b/editor/icons/2x/icon_GUI_unchecked.png deleted file mode 100644 index f76b6351d81..00000000000 Binary files a/editor/icons/2x/icon_GUI_unchecked.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_vslider_bg.png b/editor/icons/2x/icon_GUI_vslider_bg.png deleted file mode 100644 index eeb68e2d7a9..00000000000 Binary files a/editor/icons/2x/icon_GUI_vslider_bg.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_vsplit_bg.png b/editor/icons/2x/icon_GUI_vsplit_bg.png deleted file mode 100644 index 09524bd25a3..00000000000 Binary files a/editor/icons/2x/icon_GUI_vsplit_bg.png and /dev/null differ diff --git a/editor/icons/2x/icon_GUI_vsplitter.png b/editor/icons/2x/icon_GUI_vsplitter.png deleted file mode 100644 index 84920525b75..00000000000 Binary files a/editor/icons/2x/icon_GUI_vsplitter.png and /dev/null differ diff --git a/editor/icons/2x/icon_accept_dialog.png b/editor/icons/2x/icon_accept_dialog.png deleted file mode 100644 index fca344aefcc..00000000000 Binary files a/editor/icons/2x/icon_accept_dialog.png and /dev/null differ diff --git a/editor/icons/2x/icon_add.png b/editor/icons/2x/icon_add.png deleted file mode 100644 index a46c521f2a0..00000000000 Binary files a/editor/icons/2x/icon_add.png and /dev/null differ diff --git a/editor/icons/2x/icon_add_track.png b/editor/icons/2x/icon_add_track.png deleted file mode 100644 index a46c521f2a0..00000000000 Binary files a/editor/icons/2x/icon_add_track.png and /dev/null differ diff --git a/editor/icons/2x/icon_anchor.png b/editor/icons/2x/icon_anchor.png deleted file mode 100644 index 7e9e259c133..00000000000 Binary files a/editor/icons/2x/icon_anchor.png and /dev/null differ diff --git a/editor/icons/2x/icon_animated_sprite.png b/editor/icons/2x/icon_animated_sprite.png deleted file mode 100644 index 461dac8f136..00000000000 Binary files a/editor/icons/2x/icon_animated_sprite.png and /dev/null differ diff --git a/editor/icons/2x/icon_animated_sprite_3d.png b/editor/icons/2x/icon_animated_sprite_3d.png deleted file mode 100644 index 6c79c388756..00000000000 Binary files a/editor/icons/2x/icon_animated_sprite_3d.png and /dev/null differ diff --git a/editor/icons/2x/icon_animation.png b/editor/icons/2x/icon_animation.png deleted file mode 100644 index ef18959a74f..00000000000 Binary files a/editor/icons/2x/icon_animation.png and /dev/null differ diff --git a/editor/icons/2x/icon_animation_player.png b/editor/icons/2x/icon_animation_player.png deleted file mode 100644 index 1a9373938b5..00000000000 Binary files a/editor/icons/2x/icon_animation_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_animation_tree.png b/editor/icons/2x/icon_animation_tree.png deleted file mode 100644 index ba7930b88fb..00000000000 Binary files a/editor/icons/2x/icon_animation_tree.png and /dev/null differ diff --git a/editor/icons/2x/icon_animation_tree_player.png b/editor/icons/2x/icon_animation_tree_player.png deleted file mode 100644 index ba7930b88fb..00000000000 Binary files a/editor/icons/2x/icon_animation_tree_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_area.png b/editor/icons/2x/icon_area.png deleted file mode 100644 index d9cefe8fc45..00000000000 Binary files a/editor/icons/2x/icon_area.png and /dev/null differ diff --git a/editor/icons/2x/icon_area_2d.png b/editor/icons/2x/icon_area_2d.png deleted file mode 100644 index 22616cc754c..00000000000 Binary files a/editor/icons/2x/icon_area_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_arrow_left.png b/editor/icons/2x/icon_arrow_left.png deleted file mode 100644 index 64bb9c81c07..00000000000 Binary files a/editor/icons/2x/icon_arrow_left.png and /dev/null differ diff --git a/editor/icons/2x/icon_arrow_right.png b/editor/icons/2x/icon_arrow_right.png deleted file mode 100644 index c3d6e664824..00000000000 Binary files a/editor/icons/2x/icon_arrow_right.png and /dev/null differ diff --git a/editor/icons/2x/icon_arrow_up.png b/editor/icons/2x/icon_arrow_up.png deleted file mode 100644 index 008ef633baf..00000000000 Binary files a/editor/icons/2x/icon_arrow_up.png and /dev/null differ diff --git a/editor/icons/2x/icon_asset_lib.png b/editor/icons/2x/icon_asset_lib.png deleted file mode 100644 index 22c31fb2d58..00000000000 Binary files a/editor/icons/2x/icon_asset_lib.png and /dev/null differ diff --git a/editor/icons/2x/icon_atlas_texture.png b/editor/icons/2x/icon_atlas_texture.png deleted file mode 100644 index bd5bdc3148b..00000000000 Binary files a/editor/icons/2x/icon_atlas_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_bus_bypass.png b/editor/icons/2x/icon_audio_bus_bypass.png deleted file mode 100644 index b44c40fb353..00000000000 Binary files a/editor/icons/2x/icon_audio_bus_bypass.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_bus_layout.png b/editor/icons/2x/icon_audio_bus_layout.png deleted file mode 100644 index d6a5cba5c18..00000000000 Binary files a/editor/icons/2x/icon_audio_bus_layout.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_bus_mute.png b/editor/icons/2x/icon_audio_bus_mute.png deleted file mode 100644 index 4b334682f00..00000000000 Binary files a/editor/icons/2x/icon_audio_bus_mute.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_bus_solo.png b/editor/icons/2x/icon_audio_bus_solo.png deleted file mode 100644 index b09a15351ad..00000000000 Binary files a/editor/icons/2x/icon_audio_bus_solo.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_effect_amplify.png b/editor/icons/2x/icon_audio_effect_amplify.png deleted file mode 100644 index 868bc6ddded..00000000000 Binary files a/editor/icons/2x/icon_audio_effect_amplify.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_stream_gibberish.png b/editor/icons/2x/icon_audio_stream_gibberish.png deleted file mode 100644 index da200740a4a..00000000000 Binary files a/editor/icons/2x/icon_audio_stream_gibberish.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_stream_player.png b/editor/icons/2x/icon_audio_stream_player.png deleted file mode 100644 index 799b93cc5d0..00000000000 Binary files a/editor/icons/2x/icon_audio_stream_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_stream_player_2_d.png b/editor/icons/2x/icon_audio_stream_player_2_d.png deleted file mode 100644 index f2eaa41769f..00000000000 Binary files a/editor/icons/2x/icon_audio_stream_player_2_d.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_stream_player_3_d.png b/editor/icons/2x/icon_audio_stream_player_3_d.png deleted file mode 100644 index 917719f54b9..00000000000 Binary files a/editor/icons/2x/icon_audio_stream_player_3_d.png and /dev/null differ diff --git a/editor/icons/2x/icon_audio_stream_sample.png b/editor/icons/2x/icon_audio_stream_sample.png deleted file mode 100644 index baaa7bf86fa..00000000000 Binary files a/editor/icons/2x/icon_audio_stream_sample.png and /dev/null differ diff --git a/editor/icons/2x/icon_auto_play.png b/editor/icons/2x/icon_auto_play.png deleted file mode 100644 index ec31dee9584..00000000000 Binary files a/editor/icons/2x/icon_auto_play.png and /dev/null differ diff --git a/editor/icons/2x/icon_back.png b/editor/icons/2x/icon_back.png deleted file mode 100644 index b3c9b302b4d..00000000000 Binary files a/editor/icons/2x/icon_back.png and /dev/null differ diff --git a/editor/icons/2x/icon_back_buffer_copy.png b/editor/icons/2x/icon_back_buffer_copy.png deleted file mode 100644 index 8b5c37b7e59..00000000000 Binary files a/editor/icons/2x/icon_back_buffer_copy.png and /dev/null differ diff --git a/editor/icons/2x/icon_bake.png b/editor/icons/2x/icon_bake.png deleted file mode 100644 index 3c1cba5586d..00000000000 Binary files a/editor/icons/2x/icon_bake.png and /dev/null differ diff --git a/editor/icons/2x/icon_baked_light.png b/editor/icons/2x/icon_baked_light.png deleted file mode 100644 index 9b13ed8ff13..00000000000 Binary files a/editor/icons/2x/icon_baked_light.png and /dev/null differ diff --git a/editor/icons/2x/icon_baked_light_instance.png b/editor/icons/2x/icon_baked_light_instance.png deleted file mode 100644 index 9b13ed8ff13..00000000000 Binary files a/editor/icons/2x/icon_baked_light_instance.png and /dev/null differ diff --git a/editor/icons/2x/icon_baked_light_sampler.png b/editor/icons/2x/icon_baked_light_sampler.png deleted file mode 100644 index 8dfc1793f12..00000000000 Binary files a/editor/icons/2x/icon_baked_light_sampler.png and /dev/null differ diff --git a/editor/icons/2x/icon_bit_map.png b/editor/icons/2x/icon_bit_map.png deleted file mode 100644 index 864d09991e2..00000000000 Binary files a/editor/icons/2x/icon_bit_map.png and /dev/null differ diff --git a/editor/icons/2x/icon_bitmap_font.png b/editor/icons/2x/icon_bitmap_font.png deleted file mode 100644 index c533b5f40e9..00000000000 Binary files a/editor/icons/2x/icon_bitmap_font.png and /dev/null differ diff --git a/editor/icons/2x/icon_blend.png b/editor/icons/2x/icon_blend.png deleted file mode 100644 index 8dd30d1a041..00000000000 Binary files a/editor/icons/2x/icon_blend.png and /dev/null differ diff --git a/editor/icons/2x/icon_bone.png b/editor/icons/2x/icon_bone.png deleted file mode 100644 index 0a8ceb4ce19..00000000000 Binary files a/editor/icons/2x/icon_bone.png and /dev/null differ diff --git a/editor/icons/2x/icon_bone_attachment.png b/editor/icons/2x/icon_bone_attachment.png deleted file mode 100644 index 4e9333d3d1c..00000000000 Binary files a/editor/icons/2x/icon_bone_attachment.png and /dev/null differ diff --git a/editor/icons/2x/icon_bone_track.png b/editor/icons/2x/icon_bone_track.png deleted file mode 100644 index a956923a07e..00000000000 Binary files a/editor/icons/2x/icon_bone_track.png and /dev/null differ diff --git a/editor/icons/2x/icon_bool.png b/editor/icons/2x/icon_bool.png deleted file mode 100644 index e2383809d83..00000000000 Binary files a/editor/icons/2x/icon_bool.png and /dev/null differ diff --git a/editor/icons/2x/icon_box_shape.png b/editor/icons/2x/icon_box_shape.png deleted file mode 100644 index 7d5356ad94d..00000000000 Binary files a/editor/icons/2x/icon_box_shape.png and /dev/null differ diff --git a/editor/icons/2x/icon_bus_vu_db.png b/editor/icons/2x/icon_bus_vu_db.png deleted file mode 100644 index 8856b026f02..00000000000 Binary files a/editor/icons/2x/icon_bus_vu_db.png and /dev/null differ diff --git a/editor/icons/2x/icon_bus_vu_empty.png b/editor/icons/2x/icon_bus_vu_empty.png deleted file mode 100644 index dfa1536fb43..00000000000 Binary files a/editor/icons/2x/icon_bus_vu_empty.png and /dev/null differ diff --git a/editor/icons/2x/icon_bus_vu_frozen.png b/editor/icons/2x/icon_bus_vu_frozen.png deleted file mode 100644 index 94d5d335d6a..00000000000 Binary files a/editor/icons/2x/icon_bus_vu_frozen.png and /dev/null differ diff --git a/editor/icons/2x/icon_bus_vu_full.png b/editor/icons/2x/icon_bus_vu_full.png deleted file mode 100644 index 2c2f0bca066..00000000000 Binary files a/editor/icons/2x/icon_bus_vu_full.png and /dev/null differ diff --git a/editor/icons/2x/icon_button.png b/editor/icons/2x/icon_button.png deleted file mode 100644 index dc07e92b739..00000000000 Binary files a/editor/icons/2x/icon_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_button_group.png b/editor/icons/2x/icon_button_group.png deleted file mode 100644 index 15bcae7690c..00000000000 Binary files a/editor/icons/2x/icon_button_group.png and /dev/null differ diff --git a/editor/icons/2x/icon_camera.png b/editor/icons/2x/icon_camera.png deleted file mode 100644 index ea177797844..00000000000 Binary files a/editor/icons/2x/icon_camera.png and /dev/null differ diff --git a/editor/icons/2x/icon_camera_2d.png b/editor/icons/2x/icon_camera_2d.png deleted file mode 100644 index c5c881c435e..00000000000 Binary files a/editor/icons/2x/icon_camera_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_canvas_item.png b/editor/icons/2x/icon_canvas_item.png deleted file mode 100644 index 42863020f01..00000000000 Binary files a/editor/icons/2x/icon_canvas_item.png and /dev/null differ diff --git a/editor/icons/2x/icon_canvas_item_material.png b/editor/icons/2x/icon_canvas_item_material.png deleted file mode 100644 index a9f7948060b..00000000000 Binary files a/editor/icons/2x/icon_canvas_item_material.png and /dev/null differ diff --git a/editor/icons/2x/icon_canvas_item_shader.png b/editor/icons/2x/icon_canvas_item_shader.png deleted file mode 100644 index 5091a947c00..00000000000 Binary files a/editor/icons/2x/icon_canvas_item_shader.png and /dev/null differ diff --git a/editor/icons/2x/icon_canvas_item_shader_graph.png b/editor/icons/2x/icon_canvas_item_shader_graph.png deleted file mode 100644 index a26a9754fef..00000000000 Binary files a/editor/icons/2x/icon_canvas_item_shader_graph.png and /dev/null differ diff --git a/editor/icons/2x/icon_canvas_layer.png b/editor/icons/2x/icon_canvas_layer.png deleted file mode 100644 index 8a4b31cd7d9..00000000000 Binary files a/editor/icons/2x/icon_canvas_layer.png and /dev/null differ diff --git a/editor/icons/2x/icon_canvas_modulate.png b/editor/icons/2x/icon_canvas_modulate.png deleted file mode 100644 index 6cc15e2655e..00000000000 Binary files a/editor/icons/2x/icon_canvas_modulate.png and /dev/null differ diff --git a/editor/icons/2x/icon_capsule_mesh.png b/editor/icons/2x/icon_capsule_mesh.png deleted file mode 100644 index ebc48ee736a..00000000000 Binary files a/editor/icons/2x/icon_capsule_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_capsule_shape.png b/editor/icons/2x/icon_capsule_shape.png deleted file mode 100644 index f8844ecef4e..00000000000 Binary files a/editor/icons/2x/icon_capsule_shape.png and /dev/null differ diff --git a/editor/icons/2x/icon_capsule_shape_2d.png b/editor/icons/2x/icon_capsule_shape_2d.png deleted file mode 100644 index e449ce49858..00000000000 Binary files a/editor/icons/2x/icon_capsule_shape_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_center_container.png b/editor/icons/2x/icon_center_container.png deleted file mode 100644 index c715f0959e2..00000000000 Binary files a/editor/icons/2x/icon_center_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_check_box.png b/editor/icons/2x/icon_check_box.png deleted file mode 100644 index bade5723042..00000000000 Binary files a/editor/icons/2x/icon_check_box.png and /dev/null differ diff --git a/editor/icons/2x/icon_check_button.png b/editor/icons/2x/icon_check_button.png deleted file mode 100644 index 4f498bb9ad3..00000000000 Binary files a/editor/icons/2x/icon_check_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_checked.png b/editor/icons/2x/icon_checked.png deleted file mode 100644 index 6083540ffe2..00000000000 Binary files a/editor/icons/2x/icon_checked.png and /dev/null differ diff --git a/editor/icons/2x/icon_circle_shape_2d.png b/editor/icons/2x/icon_circle_shape_2d.png deleted file mode 100644 index feb84d2f1c3..00000000000 Binary files a/editor/icons/2x/icon_circle_shape_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_class_list.png b/editor/icons/2x/icon_class_list.png deleted file mode 100644 index 4ae0b3edabf..00000000000 Binary files a/editor/icons/2x/icon_class_list.png and /dev/null differ diff --git a/editor/icons/2x/icon_close.png b/editor/icons/2x/icon_close.png deleted file mode 100644 index 62ab763fec5..00000000000 Binary files a/editor/icons/2x/icon_close.png and /dev/null differ diff --git a/editor/icons/2x/icon_collapse.png b/editor/icons/2x/icon_collapse.png deleted file mode 100644 index 18486c03f5d..00000000000 Binary files a/editor/icons/2x/icon_collapse.png and /dev/null differ diff --git a/editor/icons/2x/icon_collision_2d.png b/editor/icons/2x/icon_collision_2d.png deleted file mode 100644 index 491ebfaa78d..00000000000 Binary files a/editor/icons/2x/icon_collision_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_collision_polygon.png b/editor/icons/2x/icon_collision_polygon.png deleted file mode 100644 index ef786f6a3d7..00000000000 Binary files a/editor/icons/2x/icon_collision_polygon.png and /dev/null differ diff --git a/editor/icons/2x/icon_collision_polygon_2d.png b/editor/icons/2x/icon_collision_polygon_2d.png deleted file mode 100644 index 491ebfaa78d..00000000000 Binary files a/editor/icons/2x/icon_collision_polygon_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_collision_shape.png b/editor/icons/2x/icon_collision_shape.png deleted file mode 100644 index 23bec8cdd93..00000000000 Binary files a/editor/icons/2x/icon_collision_shape.png and /dev/null differ diff --git a/editor/icons/2x/icon_collision_shape_2d.png b/editor/icons/2x/icon_collision_shape_2d.png deleted file mode 100644 index c91456b58e6..00000000000 Binary files a/editor/icons/2x/icon_collision_shape_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_color.png b/editor/icons/2x/icon_color.png deleted file mode 100644 index 125dd86ec03..00000000000 Binary files a/editor/icons/2x/icon_color.png and /dev/null differ diff --git a/editor/icons/2x/icon_color_pick.png b/editor/icons/2x/icon_color_pick.png deleted file mode 100644 index c61f2d41749..00000000000 Binary files a/editor/icons/2x/icon_color_pick.png and /dev/null differ diff --git a/editor/icons/2x/icon_color_picker.png b/editor/icons/2x/icon_color_picker.png deleted file mode 100644 index 2b683c75ea0..00000000000 Binary files a/editor/icons/2x/icon_color_picker.png and /dev/null differ diff --git a/editor/icons/2x/icon_color_picker_button.png b/editor/icons/2x/icon_color_picker_button.png deleted file mode 100644 index 8d9bd17ccc9..00000000000 Binary files a/editor/icons/2x/icon_color_picker_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_color_ramp.png b/editor/icons/2x/icon_color_ramp.png deleted file mode 100644 index d0056f0c7d2..00000000000 Binary files a/editor/icons/2x/icon_color_ramp.png and /dev/null differ diff --git a/editor/icons/2x/icon_color_rect.png b/editor/icons/2x/icon_color_rect.png deleted file mode 100644 index 7f258d5d923..00000000000 Binary files a/editor/icons/2x/icon_color_rect.png and /dev/null differ diff --git a/editor/icons/2x/icon_concave_polygon_shape.png b/editor/icons/2x/icon_concave_polygon_shape.png deleted file mode 100644 index 82a67ca4d06..00000000000 Binary files a/editor/icons/2x/icon_concave_polygon_shape.png and /dev/null differ diff --git a/editor/icons/2x/icon_concave_polygon_shape_2d.png b/editor/icons/2x/icon_concave_polygon_shape_2d.png deleted file mode 100644 index 1ad3f30950d..00000000000 Binary files a/editor/icons/2x/icon_concave_polygon_shape_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_cone_twist_joint.png b/editor/icons/2x/icon_cone_twist_joint.png deleted file mode 100644 index 3aeba5855d9..00000000000 Binary files a/editor/icons/2x/icon_cone_twist_joint.png and /dev/null differ diff --git a/editor/icons/2x/icon_confirmation_dialog.png b/editor/icons/2x/icon_confirmation_dialog.png deleted file mode 100644 index ebf58864453..00000000000 Binary files a/editor/icons/2x/icon_confirmation_dialog.png and /dev/null differ diff --git a/editor/icons/2x/icon_connect.png b/editor/icons/2x/icon_connect.png deleted file mode 100644 index 2a36b1716a7..00000000000 Binary files a/editor/icons/2x/icon_connect.png and /dev/null differ diff --git a/editor/icons/2x/icon_connection_and_groups.png b/editor/icons/2x/icon_connection_and_groups.png deleted file mode 100644 index e7619327f6f..00000000000 Binary files a/editor/icons/2x/icon_connection_and_groups.png and /dev/null differ diff --git a/editor/icons/2x/icon_container.png b/editor/icons/2x/icon_container.png deleted file mode 100644 index baa09bbea99..00000000000 Binary files a/editor/icons/2x/icon_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_control.png b/editor/icons/2x/icon_control.png deleted file mode 100644 index 82d7457f3ba..00000000000 Binary files a/editor/icons/2x/icon_control.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_bottom_center.png b/editor/icons/2x/icon_control_align_bottom_center.png deleted file mode 100644 index 9dc738c7468..00000000000 Binary files a/editor/icons/2x/icon_control_align_bottom_center.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_bottom_left.png b/editor/icons/2x/icon_control_align_bottom_left.png deleted file mode 100644 index a11a13528dc..00000000000 Binary files a/editor/icons/2x/icon_control_align_bottom_left.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_bottom_right.png b/editor/icons/2x/icon_control_align_bottom_right.png deleted file mode 100644 index 7fee3f07520..00000000000 Binary files a/editor/icons/2x/icon_control_align_bottom_right.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_bottom_wide.png b/editor/icons/2x/icon_control_align_bottom_wide.png deleted file mode 100644 index 573619ccbb2..00000000000 Binary files a/editor/icons/2x/icon_control_align_bottom_wide.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_center.png b/editor/icons/2x/icon_control_align_center.png deleted file mode 100644 index 9850ecd775f..00000000000 Binary files a/editor/icons/2x/icon_control_align_center.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_center_left.png b/editor/icons/2x/icon_control_align_center_left.png deleted file mode 100644 index 2c48b889ad8..00000000000 Binary files a/editor/icons/2x/icon_control_align_center_left.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_center_right.png b/editor/icons/2x/icon_control_align_center_right.png deleted file mode 100644 index 4f87a68ad3f..00000000000 Binary files a/editor/icons/2x/icon_control_align_center_right.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_left_center.png b/editor/icons/2x/icon_control_align_left_center.png deleted file mode 100644 index c4250dcb375..00000000000 Binary files a/editor/icons/2x/icon_control_align_left_center.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_left_wide.png b/editor/icons/2x/icon_control_align_left_wide.png deleted file mode 100644 index 5436397189b..00000000000 Binary files a/editor/icons/2x/icon_control_align_left_wide.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_right_center.png b/editor/icons/2x/icon_control_align_right_center.png deleted file mode 100644 index b1fd9a075db..00000000000 Binary files a/editor/icons/2x/icon_control_align_right_center.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_right_wide.png b/editor/icons/2x/icon_control_align_right_wide.png deleted file mode 100644 index 0ce81d3a50c..00000000000 Binary files a/editor/icons/2x/icon_control_align_right_wide.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_top_center.png b/editor/icons/2x/icon_control_align_top_center.png deleted file mode 100644 index baa2601531b..00000000000 Binary files a/editor/icons/2x/icon_control_align_top_center.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_top_left.png b/editor/icons/2x/icon_control_align_top_left.png deleted file mode 100644 index 90f3cb6105c..00000000000 Binary files a/editor/icons/2x/icon_control_align_top_left.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_top_right.png b/editor/icons/2x/icon_control_align_top_right.png deleted file mode 100644 index 040b7b27eee..00000000000 Binary files a/editor/icons/2x/icon_control_align_top_right.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_top_wide.png b/editor/icons/2x/icon_control_align_top_wide.png deleted file mode 100644 index 5c14782fc26..00000000000 Binary files a/editor/icons/2x/icon_control_align_top_wide.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_align_wide.png b/editor/icons/2x/icon_control_align_wide.png deleted file mode 100644 index 383b63d0695..00000000000 Binary files a/editor/icons/2x/icon_control_align_wide.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_hcenter_wide.png b/editor/icons/2x/icon_control_hcenter_wide.png deleted file mode 100644 index 840ac557f5c..00000000000 Binary files a/editor/icons/2x/icon_control_hcenter_wide.png and /dev/null differ diff --git a/editor/icons/2x/icon_control_vcenter_wide.png b/editor/icons/2x/icon_control_vcenter_wide.png deleted file mode 100644 index a9e406d4b59..00000000000 Binary files a/editor/icons/2x/icon_control_vcenter_wide.png and /dev/null differ diff --git a/editor/icons/2x/icon_convex_polygon_shape.png b/editor/icons/2x/icon_convex_polygon_shape.png deleted file mode 100644 index 40dd40f2998..00000000000 Binary files a/editor/icons/2x/icon_convex_polygon_shape.png and /dev/null differ diff --git a/editor/icons/2x/icon_convex_polygon_shape_2d.png b/editor/icons/2x/icon_convex_polygon_shape_2d.png deleted file mode 100644 index 6d46a96f9d9..00000000000 Binary files a/editor/icons/2x/icon_convex_polygon_shape_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_copy_node_path.png b/editor/icons/2x/icon_copy_node_path.png deleted file mode 100644 index 29180d017c4..00000000000 Binary files a/editor/icons/2x/icon_copy_node_path.png and /dev/null differ diff --git a/editor/icons/2x/icon_create_new_scene_from.png b/editor/icons/2x/icon_create_new_scene_from.png deleted file mode 100644 index cc3be48033c..00000000000 Binary files a/editor/icons/2x/icon_create_new_scene_from.png and /dev/null differ diff --git a/editor/icons/2x/icon_cube_map.png b/editor/icons/2x/icon_cube_map.png deleted file mode 100644 index 0edf82a88e6..00000000000 Binary files a/editor/icons/2x/icon_cube_map.png and /dev/null differ diff --git a/editor/icons/2x/icon_cube_mesh.png b/editor/icons/2x/icon_cube_mesh.png deleted file mode 100644 index b2acdd156d7..00000000000 Binary files a/editor/icons/2x/icon_cube_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve.png b/editor/icons/2x/icon_curve.png deleted file mode 100644 index fb8c209d1e6..00000000000 Binary files a/editor/icons/2x/icon_curve.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_2d.png b/editor/icons/2x/icon_curve_2d.png deleted file mode 100644 index 69a6f9a9dc6..00000000000 Binary files a/editor/icons/2x/icon_curve_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_3d.png b/editor/icons/2x/icon_curve_3d.png deleted file mode 100644 index e989df47699..00000000000 Binary files a/editor/icons/2x/icon_curve_3d.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_close.png b/editor/icons/2x/icon_curve_close.png deleted file mode 100644 index bd2de0edc8b..00000000000 Binary files a/editor/icons/2x/icon_curve_close.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_constant.png b/editor/icons/2x/icon_curve_constant.png deleted file mode 100644 index a6e32e04672..00000000000 Binary files a/editor/icons/2x/icon_curve_constant.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_create.png b/editor/icons/2x/icon_curve_create.png deleted file mode 100644 index 39f10fd8dba..00000000000 Binary files a/editor/icons/2x/icon_curve_create.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_curve.png b/editor/icons/2x/icon_curve_curve.png deleted file mode 100644 index 6476579a64b..00000000000 Binary files a/editor/icons/2x/icon_curve_curve.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_delete.png b/editor/icons/2x/icon_curve_delete.png deleted file mode 100644 index 60c081bbd05..00000000000 Binary files a/editor/icons/2x/icon_curve_delete.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_edit.png b/editor/icons/2x/icon_curve_edit.png deleted file mode 100644 index f9701e05cb1..00000000000 Binary files a/editor/icons/2x/icon_curve_edit.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_in.png b/editor/icons/2x/icon_curve_in.png deleted file mode 100644 index a018d28035c..00000000000 Binary files a/editor/icons/2x/icon_curve_in.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_in_out.png b/editor/icons/2x/icon_curve_in_out.png deleted file mode 100644 index 8b8b8d7d8ac..00000000000 Binary files a/editor/icons/2x/icon_curve_in_out.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_linear.png b/editor/icons/2x/icon_curve_linear.png deleted file mode 100644 index 9733ec6f49d..00000000000 Binary files a/editor/icons/2x/icon_curve_linear.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_out.png b/editor/icons/2x/icon_curve_out.png deleted file mode 100644 index 49e62ef4710..00000000000 Binary files a/editor/icons/2x/icon_curve_out.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_out_in.png b/editor/icons/2x/icon_curve_out_in.png deleted file mode 100644 index cc716cdbe8e..00000000000 Binary files a/editor/icons/2x/icon_curve_out_in.png and /dev/null differ diff --git a/editor/icons/2x/icon_curve_texture.png b/editor/icons/2x/icon_curve_texture.png deleted file mode 100644 index ccdebe89f5e..00000000000 Binary files a/editor/icons/2x/icon_curve_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_cylinder_mesh.png b/editor/icons/2x/icon_cylinder_mesh.png deleted file mode 100644 index b36f599522d..00000000000 Binary files a/editor/icons/2x/icon_cylinder_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_damped_spring_joint_2d.png b/editor/icons/2x/icon_damped_spring_joint_2d.png deleted file mode 100644 index a51081efcab..00000000000 Binary files a/editor/icons/2x/icon_damped_spring_joint_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_debug.png b/editor/icons/2x/icon_debug.png deleted file mode 100644 index c007d54b6e2..00000000000 Binary files a/editor/icons/2x/icon_debug.png and /dev/null differ diff --git a/editor/icons/2x/icon_debug_continue.png b/editor/icons/2x/icon_debug_continue.png deleted file mode 100644 index be460bd61d7..00000000000 Binary files a/editor/icons/2x/icon_debug_continue.png and /dev/null differ diff --git a/editor/icons/2x/icon_debug_next.png b/editor/icons/2x/icon_debug_next.png deleted file mode 100644 index b52e276f360..00000000000 Binary files a/editor/icons/2x/icon_debug_next.png and /dev/null differ diff --git a/editor/icons/2x/icon_debug_step.png b/editor/icons/2x/icon_debug_step.png deleted file mode 100644 index e06a1ad56bd..00000000000 Binary files a/editor/icons/2x/icon_debug_step.png and /dev/null differ diff --git a/editor/icons/2x/icon_dependency_changed.png b/editor/icons/2x/icon_dependency_changed.png deleted file mode 100644 index 3ec13e0e3bb..00000000000 Binary files a/editor/icons/2x/icon_dependency_changed.png and /dev/null differ diff --git a/editor/icons/2x/icon_dependency_changed_hl.png b/editor/icons/2x/icon_dependency_changed_hl.png deleted file mode 100644 index 630ea405542..00000000000 Binary files a/editor/icons/2x/icon_dependency_changed_hl.png and /dev/null differ diff --git a/editor/icons/2x/icon_dependency_local_changed.png b/editor/icons/2x/icon_dependency_local_changed.png deleted file mode 100644 index 9bc25454399..00000000000 Binary files a/editor/icons/2x/icon_dependency_local_changed.png and /dev/null differ diff --git a/editor/icons/2x/icon_dependency_local_changed_hl.png b/editor/icons/2x/icon_dependency_local_changed_hl.png deleted file mode 100644 index 385371df9f4..00000000000 Binary files a/editor/icons/2x/icon_dependency_local_changed_hl.png and /dev/null differ diff --git a/editor/icons/2x/icon_dependency_ok.png b/editor/icons/2x/icon_dependency_ok.png deleted file mode 100644 index 80fe7f573a1..00000000000 Binary files a/editor/icons/2x/icon_dependency_ok.png and /dev/null differ diff --git a/editor/icons/2x/icon_dependency_ok_hl.png b/editor/icons/2x/icon_dependency_ok_hl.png deleted file mode 100644 index 9d496688ccb..00000000000 Binary files a/editor/icons/2x/icon_dependency_ok_hl.png and /dev/null differ diff --git a/editor/icons/2x/icon_directional_light.png b/editor/icons/2x/icon_directional_light.png deleted file mode 100644 index 9a35325aec3..00000000000 Binary files a/editor/icons/2x/icon_directional_light.png and /dev/null differ diff --git a/editor/icons/2x/icon_distraction_free.png b/editor/icons/2x/icon_distraction_free.png deleted file mode 100644 index 034239a4e70..00000000000 Binary files a/editor/icons/2x/icon_distraction_free.png and /dev/null differ diff --git a/editor/icons/2x/icon_dropdown.png b/editor/icons/2x/icon_dropdown.png deleted file mode 100644 index 626dba79ec3..00000000000 Binary files a/editor/icons/2x/icon_dropdown.png and /dev/null differ diff --git a/editor/icons/2x/icon_duplicate.png b/editor/icons/2x/icon_duplicate.png deleted file mode 100644 index 37996482ae7..00000000000 Binary files a/editor/icons/2x/icon_duplicate.png and /dev/null differ diff --git a/editor/icons/2x/icon_dynamic_font.png b/editor/icons/2x/icon_dynamic_font.png deleted file mode 100644 index 1f1dc52dfba..00000000000 Binary files a/editor/icons/2x/icon_dynamic_font.png and /dev/null differ diff --git a/editor/icons/2x/icon_dynamic_font_data.png b/editor/icons/2x/icon_dynamic_font_data.png deleted file mode 100644 index 6d76303c818..00000000000 Binary files a/editor/icons/2x/icon_dynamic_font_data.png and /dev/null differ diff --git a/editor/icons/2x/icon_edit.png b/editor/icons/2x/icon_edit.png deleted file mode 100644 index b9ed2c3e584..00000000000 Binary files a/editor/icons/2x/icon_edit.png and /dev/null differ diff --git a/editor/icons/2x/icon_edit_key.png b/editor/icons/2x/icon_edit_key.png deleted file mode 100644 index 58b9a6e749e..00000000000 Binary files a/editor/icons/2x/icon_edit_key.png and /dev/null differ diff --git a/editor/icons/2x/icon_edit_pivot.png b/editor/icons/2x/icon_edit_pivot.png deleted file mode 100644 index ac5a2cafb93..00000000000 Binary files a/editor/icons/2x/icon_edit_pivot.png and /dev/null differ diff --git a/editor/icons/2x/icon_edit_resource.png b/editor/icons/2x/icon_edit_resource.png deleted file mode 100644 index f0c75701600..00000000000 Binary files a/editor/icons/2x/icon_edit_resource.png and /dev/null differ diff --git a/editor/icons/2x/icon_editor_3d_handle.png b/editor/icons/2x/icon_editor_3d_handle.png deleted file mode 100644 index f76af85cc11..00000000000 Binary files a/editor/icons/2x/icon_editor_3d_handle.png and /dev/null differ diff --git a/editor/icons/2x/icon_editor_control_anchor.png b/editor/icons/2x/icon_editor_control_anchor.png deleted file mode 100644 index 838f85b7630..00000000000 Binary files a/editor/icons/2x/icon_editor_control_anchor.png and /dev/null differ diff --git a/editor/icons/2x/icon_editor_handle.png b/editor/icons/2x/icon_editor_handle.png deleted file mode 100644 index 355d8fe155a..00000000000 Binary files a/editor/icons/2x/icon_editor_handle.png and /dev/null differ diff --git a/editor/icons/2x/icon_editor_pivot.png b/editor/icons/2x/icon_editor_pivot.png deleted file mode 100644 index e1666e38de2..00000000000 Binary files a/editor/icons/2x/icon_editor_pivot.png and /dev/null differ diff --git a/editor/icons/2x/icon_editor_plugin.png b/editor/icons/2x/icon_editor_plugin.png deleted file mode 100644 index f6411bb3237..00000000000 Binary files a/editor/icons/2x/icon_editor_plugin.png and /dev/null differ diff --git a/editor/icons/2x/icon_enum.png b/editor/icons/2x/icon_enum.png deleted file mode 100644 index d9df3a3ec3b..00000000000 Binary files a/editor/icons/2x/icon_enum.png and /dev/null differ diff --git a/editor/icons/2x/icon_environment.png b/editor/icons/2x/icon_environment.png deleted file mode 100644 index b8438202c17..00000000000 Binary files a/editor/icons/2x/icon_environment.png and /dev/null differ diff --git a/editor/icons/2x/icon_error.png b/editor/icons/2x/icon_error.png deleted file mode 100644 index c915da1d271..00000000000 Binary files a/editor/icons/2x/icon_error.png and /dev/null differ diff --git a/editor/icons/2x/icon_error_sign.png b/editor/icons/2x/icon_error_sign.png deleted file mode 100644 index f1d16ea669f..00000000000 Binary files a/editor/icons/2x/icon_error_sign.png and /dev/null differ diff --git a/editor/icons/2x/icon_event_player.png b/editor/icons/2x/icon_event_player.png deleted file mode 100644 index 2482c576db3..00000000000 Binary files a/editor/icons/2x/icon_event_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_favorites.png b/editor/icons/2x/icon_favorites.png deleted file mode 100644 index 7a63835b3de..00000000000 Binary files a/editor/icons/2x/icon_favorites.png and /dev/null differ diff --git a/editor/icons/2x/icon_file.png b/editor/icons/2x/icon_file.png deleted file mode 100644 index a10fe2cc60e..00000000000 Binary files a/editor/icons/2x/icon_file.png and /dev/null differ diff --git a/editor/icons/2x/icon_file_big.png b/editor/icons/2x/icon_file_big.png deleted file mode 100644 index 092132ff361..00000000000 Binary files a/editor/icons/2x/icon_file_big.png and /dev/null differ diff --git a/editor/icons/2x/icon_file_dialog.png b/editor/icons/2x/icon_file_dialog.png deleted file mode 100644 index ca340902964..00000000000 Binary files a/editor/icons/2x/icon_file_dialog.png and /dev/null differ diff --git a/editor/icons/2x/icon_file_list.png b/editor/icons/2x/icon_file_list.png deleted file mode 100644 index d9df3a3ec3b..00000000000 Binary files a/editor/icons/2x/icon_file_list.png and /dev/null differ diff --git a/editor/icons/2x/icon_file_server.png b/editor/icons/2x/icon_file_server.png deleted file mode 100644 index d8021a4067c..00000000000 Binary files a/editor/icons/2x/icon_file_server.png and /dev/null differ diff --git a/editor/icons/2x/icon_file_server_active.png b/editor/icons/2x/icon_file_server_active.png deleted file mode 100644 index f503fe406b6..00000000000 Binary files a/editor/icons/2x/icon_file_server_active.png and /dev/null differ diff --git a/editor/icons/2x/icon_file_thumbnail.png b/editor/icons/2x/icon_file_thumbnail.png deleted file mode 100644 index 5a8d282fe16..00000000000 Binary files a/editor/icons/2x/icon_file_thumbnail.png and /dev/null differ diff --git a/editor/icons/2x/icon_filesystem.png b/editor/icons/2x/icon_filesystem.png deleted file mode 100644 index 4ae0b3edabf..00000000000 Binary files a/editor/icons/2x/icon_filesystem.png and /dev/null differ diff --git a/editor/icons/2x/icon_fixed_material.png b/editor/icons/2x/icon_fixed_material.png deleted file mode 100644 index 21bfb158384..00000000000 Binary files a/editor/icons/2x/icon_fixed_material.png and /dev/null differ diff --git a/editor/icons/2x/icon_fixed_spatial_material.png b/editor/icons/2x/icon_fixed_spatial_material.png deleted file mode 100644 index 65509a590e2..00000000000 Binary files a/editor/icons/2x/icon_fixed_spatial_material.png and /dev/null differ diff --git a/editor/icons/2x/icon_folder.png b/editor/icons/2x/icon_folder.png deleted file mode 100644 index 2e797c448b0..00000000000 Binary files a/editor/icons/2x/icon_folder.png and /dev/null differ diff --git a/editor/icons/2x/icon_folder_big.png b/editor/icons/2x/icon_folder_big.png deleted file mode 100644 index b89600619a2..00000000000 Binary files a/editor/icons/2x/icon_folder_big.png and /dev/null differ diff --git a/editor/icons/2x/icon_font.png b/editor/icons/2x/icon_font.png deleted file mode 100644 index b78c95a827a..00000000000 Binary files a/editor/icons/2x/icon_font.png and /dev/null differ diff --git a/editor/icons/2x/icon_forward.png b/editor/icons/2x/icon_forward.png deleted file mode 100644 index 60294493546..00000000000 Binary files a/editor/icons/2x/icon_forward.png and /dev/null differ diff --git a/editor/icons/2x/icon_g_d_native_library.png b/editor/icons/2x/icon_g_d_native_library.png deleted file mode 100644 index 1deb0664edd..00000000000 Binary files a/editor/icons/2x/icon_g_d_native_library.png and /dev/null differ diff --git a/editor/icons/2x/icon_g_d_native_script.png b/editor/icons/2x/icon_g_d_native_script.png deleted file mode 100644 index 31cc130867c..00000000000 Binary files a/editor/icons/2x/icon_g_d_native_script.png and /dev/null differ diff --git a/editor/icons/2x/icon_g_d_script.png b/editor/icons/2x/icon_g_d_script.png deleted file mode 100644 index 6143191fc71..00000000000 Binary files a/editor/icons/2x/icon_g_d_script.png and /dev/null differ diff --git a/editor/icons/2x/icon_g_i_probe.png b/editor/icons/2x/icon_g_i_probe.png deleted file mode 100644 index 921f1cca424..00000000000 Binary files a/editor/icons/2x/icon_g_i_probe.png and /dev/null differ diff --git a/editor/icons/2x/icon_g_i_probe_data.png b/editor/icons/2x/icon_g_i_probe_data.png deleted file mode 100644 index 69c4ed71840..00000000000 Binary files a/editor/icons/2x/icon_g_i_probe_data.png and /dev/null differ diff --git a/editor/icons/2x/icon_generic_6_d_o_f_joint.png b/editor/icons/2x/icon_generic_6_d_o_f_joint.png deleted file mode 100644 index 506c8733760..00000000000 Binary files a/editor/icons/2x/icon_generic_6_d_o_f_joint.png and /dev/null differ diff --git a/editor/icons/2x/icon_gizmo_directional_light.png b/editor/icons/2x/icon_gizmo_directional_light.png deleted file mode 100644 index 0d02788040b..00000000000 Binary files a/editor/icons/2x/icon_gizmo_directional_light.png and /dev/null differ diff --git a/editor/icons/2x/icon_gizmo_light.png b/editor/icons/2x/icon_gizmo_light.png deleted file mode 100644 index 2ba9689107f..00000000000 Binary files a/editor/icons/2x/icon_gizmo_light.png and /dev/null differ diff --git a/editor/icons/2x/icon_gizmo_listener.png b/editor/icons/2x/icon_gizmo_listener.png deleted file mode 100644 index bc2908824d4..00000000000 Binary files a/editor/icons/2x/icon_gizmo_listener.png and /dev/null differ diff --git a/editor/icons/2x/icon_gizmo_spatial_sample_player.png b/editor/icons/2x/icon_gizmo_spatial_sample_player.png deleted file mode 100644 index 78a88c55c16..00000000000 Binary files a/editor/icons/2x/icon_gizmo_spatial_sample_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_gizmo_spatial_stream_player.png b/editor/icons/2x/icon_gizmo_spatial_stream_player.png deleted file mode 100644 index 631f03e874a..00000000000 Binary files a/editor/icons/2x/icon_gizmo_spatial_stream_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_godot.png b/editor/icons/2x/icon_godot.png deleted file mode 100644 index d40c25cae73..00000000000 Binary files a/editor/icons/2x/icon_godot.png and /dev/null differ diff --git a/editor/icons/2x/icon_godot_docs.png b/editor/icons/2x/icon_godot_docs.png deleted file mode 100644 index be30f092ef8..00000000000 Binary files a/editor/icons/2x/icon_godot_docs.png and /dev/null differ diff --git a/editor/icons/2x/icon_gradient.png b/editor/icons/2x/icon_gradient.png deleted file mode 100644 index caf6da58368..00000000000 Binary files a/editor/icons/2x/icon_gradient.png and /dev/null differ diff --git a/editor/icons/2x/icon_gradient_texture.png b/editor/icons/2x/icon_gradient_texture.png deleted file mode 100644 index d002c8534c9..00000000000 Binary files a/editor/icons/2x/icon_gradient_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_color_ramp.png b/editor/icons/2x/icon_graph_color_ramp.png deleted file mode 100644 index d0056f0c7d2..00000000000 Binary files a/editor/icons/2x/icon_graph_color_ramp.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_comment.png b/editor/icons/2x/icon_graph_comment.png deleted file mode 100644 index 3dedbfab52c..00000000000 Binary files a/editor/icons/2x/icon_graph_comment.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_cube_uniform.png b/editor/icons/2x/icon_graph_cube_uniform.png deleted file mode 100644 index 43ec1fa6d69..00000000000 Binary files a/editor/icons/2x/icon_graph_cube_uniform.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_curve_map.png b/editor/icons/2x/icon_graph_curve_map.png deleted file mode 100644 index f29086e503b..00000000000 Binary files a/editor/icons/2x/icon_graph_curve_map.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_default_texture.png b/editor/icons/2x/icon_graph_default_texture.png deleted file mode 100644 index 45e44705020..00000000000 Binary files a/editor/icons/2x/icon_graph_default_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_edit.png b/editor/icons/2x/icon_graph_edit.png deleted file mode 100644 index bd4386839d9..00000000000 Binary files a/editor/icons/2x/icon_graph_edit.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_input.png b/editor/icons/2x/icon_graph_input.png deleted file mode 100644 index 3eeb29a3e73..00000000000 Binary files a/editor/icons/2x/icon_graph_input.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_node.png b/editor/icons/2x/icon_graph_node.png deleted file mode 100644 index 7ce633af4d2..00000000000 Binary files a/editor/icons/2x/icon_graph_node.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_rgb.png b/editor/icons/2x/icon_graph_rgb.png deleted file mode 100644 index a9c39f02229..00000000000 Binary files a/editor/icons/2x/icon_graph_rgb.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_rgb_op.png b/editor/icons/2x/icon_graph_rgb_op.png deleted file mode 100644 index 44812d8dd86..00000000000 Binary files a/editor/icons/2x/icon_graph_rgb_op.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_rgb_uniform.png b/editor/icons/2x/icon_graph_rgb_uniform.png deleted file mode 100644 index b06f1d4d8d2..00000000000 Binary files a/editor/icons/2x/icon_graph_rgb_uniform.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_scalar.png b/editor/icons/2x/icon_graph_scalar.png deleted file mode 100644 index 382c429d350..00000000000 Binary files a/editor/icons/2x/icon_graph_scalar.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_scalar_interp.png b/editor/icons/2x/icon_graph_scalar_interp.png deleted file mode 100644 index 430e35470fa..00000000000 Binary files a/editor/icons/2x/icon_graph_scalar_interp.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_scalar_op.png b/editor/icons/2x/icon_graph_scalar_op.png deleted file mode 100644 index b90b6a6190a..00000000000 Binary files a/editor/icons/2x/icon_graph_scalar_op.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_scalar_uniform.png b/editor/icons/2x/icon_graph_scalar_uniform.png deleted file mode 100644 index dff850df039..00000000000 Binary files a/editor/icons/2x/icon_graph_scalar_uniform.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_scalars_to_vec.png b/editor/icons/2x/icon_graph_scalars_to_vec.png deleted file mode 100644 index 7363a47db3c..00000000000 Binary files a/editor/icons/2x/icon_graph_scalars_to_vec.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_texscreen.png b/editor/icons/2x/icon_graph_texscreen.png deleted file mode 100644 index 8b1d2501293..00000000000 Binary files a/editor/icons/2x/icon_graph_texscreen.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_texture_uniform.png b/editor/icons/2x/icon_graph_texture_uniform.png deleted file mode 100644 index ee211b6c03c..00000000000 Binary files a/editor/icons/2x/icon_graph_texture_uniform.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_time.png b/editor/icons/2x/icon_graph_time.png deleted file mode 100644 index 3cf9bf2035c..00000000000 Binary files a/editor/icons/2x/icon_graph_time.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_vec_dp.png b/editor/icons/2x/icon_graph_vec_dp.png deleted file mode 100644 index e339f6a1e8c..00000000000 Binary files a/editor/icons/2x/icon_graph_vec_dp.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_vec_interp.png b/editor/icons/2x/icon_graph_vec_interp.png deleted file mode 100644 index 02e79157487..00000000000 Binary files a/editor/icons/2x/icon_graph_vec_interp.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_vec_length.png b/editor/icons/2x/icon_graph_vec_length.png deleted file mode 100644 index 857e006b6e5..00000000000 Binary files a/editor/icons/2x/icon_graph_vec_length.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_vec_op.png b/editor/icons/2x/icon_graph_vec_op.png deleted file mode 100644 index 282336f9d03..00000000000 Binary files a/editor/icons/2x/icon_graph_vec_op.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_vec_scalar_op.png b/editor/icons/2x/icon_graph_vec_scalar_op.png deleted file mode 100644 index 38d355ef06b..00000000000 Binary files a/editor/icons/2x/icon_graph_vec_scalar_op.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_vec_to_scalars.png b/editor/icons/2x/icon_graph_vec_to_scalars.png deleted file mode 100644 index 6d16ea72fec..00000000000 Binary files a/editor/icons/2x/icon_graph_vec_to_scalars.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_vecs_to_xform.png b/editor/icons/2x/icon_graph_vecs_to_xform.png deleted file mode 100644 index 0f2ad7a83ad..00000000000 Binary files a/editor/icons/2x/icon_graph_vecs_to_xform.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_vector.png b/editor/icons/2x/icon_graph_vector.png deleted file mode 100644 index eb4e94acee7..00000000000 Binary files a/editor/icons/2x/icon_graph_vector.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_vector_uniform.png b/editor/icons/2x/icon_graph_vector_uniform.png deleted file mode 100644 index 94cde729043..00000000000 Binary files a/editor/icons/2x/icon_graph_vector_uniform.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_xform.png b/editor/icons/2x/icon_graph_xform.png deleted file mode 100644 index 4d823e2aa9e..00000000000 Binary files a/editor/icons/2x/icon_graph_xform.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_xform_mult.png b/editor/icons/2x/icon_graph_xform_mult.png deleted file mode 100644 index a6d41e43a43..00000000000 Binary files a/editor/icons/2x/icon_graph_xform_mult.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_xform_scalar_func.png b/editor/icons/2x/icon_graph_xform_scalar_func.png deleted file mode 100644 index 06826a1ca25..00000000000 Binary files a/editor/icons/2x/icon_graph_xform_scalar_func.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_xform_to_vecs.png b/editor/icons/2x/icon_graph_xform_to_vecs.png deleted file mode 100644 index d274ad99a6e..00000000000 Binary files a/editor/icons/2x/icon_graph_xform_to_vecs.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_xform_uniform.png b/editor/icons/2x/icon_graph_xform_uniform.png deleted file mode 100644 index b87f9936b8c..00000000000 Binary files a/editor/icons/2x/icon_graph_xform_uniform.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_xform_vec_func.png b/editor/icons/2x/icon_graph_xform_vec_func.png deleted file mode 100644 index 007555ff7b2..00000000000 Binary files a/editor/icons/2x/icon_graph_xform_vec_func.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_xform_vec_imult.png b/editor/icons/2x/icon_graph_xform_vec_imult.png deleted file mode 100644 index 39e25ef9b3a..00000000000 Binary files a/editor/icons/2x/icon_graph_xform_vec_imult.png and /dev/null differ diff --git a/editor/icons/2x/icon_graph_xform_vec_mult.png b/editor/icons/2x/icon_graph_xform_vec_mult.png deleted file mode 100644 index 32802fa1edb..00000000000 Binary files a/editor/icons/2x/icon_graph_xform_vec_mult.png and /dev/null differ diff --git a/editor/icons/2x/icon_grid.png b/editor/icons/2x/icon_grid.png deleted file mode 100644 index 99d896c0127..00000000000 Binary files a/editor/icons/2x/icon_grid.png and /dev/null differ diff --git a/editor/icons/2x/icon_grid_container.png b/editor/icons/2x/icon_grid_container.png deleted file mode 100644 index b83b1f4347f..00000000000 Binary files a/editor/icons/2x/icon_grid_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_grid_map.png b/editor/icons/2x/icon_grid_map.png deleted file mode 100644 index 83baf36c1b4..00000000000 Binary files a/editor/icons/2x/icon_grid_map.png and /dev/null differ diff --git a/editor/icons/2x/icon_groove_joint_2d.png b/editor/icons/2x/icon_groove_joint_2d.png deleted file mode 100644 index ab9cd4f3eb1..00000000000 Binary files a/editor/icons/2x/icon_groove_joint_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_group.png b/editor/icons/2x/icon_group.png deleted file mode 100644 index 158efa5fe4b..00000000000 Binary files a/editor/icons/2x/icon_group.png and /dev/null differ diff --git a/editor/icons/2x/icon_groups.png b/editor/icons/2x/icon_groups.png deleted file mode 100644 index 203d36071b3..00000000000 Binary files a/editor/icons/2x/icon_groups.png and /dev/null differ diff --git a/editor/icons/2x/icon_gui_close_dark.png b/editor/icons/2x/icon_gui_close_dark.png deleted file mode 100644 index fe47e003f9b..00000000000 Binary files a/editor/icons/2x/icon_gui_close_dark.png and /dev/null differ diff --git a/editor/icons/2x/icon_gui_close_light.png b/editor/icons/2x/icon_gui_close_light.png deleted file mode 100644 index 2d93123f207..00000000000 Binary files a/editor/icons/2x/icon_gui_close_light.png and /dev/null differ diff --git a/editor/icons/2x/icon_h_box_container.png b/editor/icons/2x/icon_h_box_container.png deleted file mode 100644 index 3767cab1cfa..00000000000 Binary files a/editor/icons/2x/icon_h_box_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_h_button_array.png b/editor/icons/2x/icon_h_button_array.png deleted file mode 100644 index 3e4464f33e6..00000000000 Binary files a/editor/icons/2x/icon_h_button_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_h_scroll_bar.png b/editor/icons/2x/icon_h_scroll_bar.png deleted file mode 100644 index 6186d237428..00000000000 Binary files a/editor/icons/2x/icon_h_scroll_bar.png and /dev/null differ diff --git a/editor/icons/2x/icon_h_separator.png b/editor/icons/2x/icon_h_separator.png deleted file mode 100644 index 7dd7e1e314b..00000000000 Binary files a/editor/icons/2x/icon_h_separator.png and /dev/null differ diff --git a/editor/icons/2x/icon_h_slider.png b/editor/icons/2x/icon_h_slider.png deleted file mode 100644 index dee580d9099..00000000000 Binary files a/editor/icons/2x/icon_h_slider.png and /dev/null differ diff --git a/editor/icons/2x/icon_h_split_container.png b/editor/icons/2x/icon_h_split_container.png deleted file mode 100644 index 33e18946c1c..00000000000 Binary files a/editor/icons/2x/icon_h_split_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_h_t_t_p_request.png b/editor/icons/2x/icon_h_t_t_p_request.png deleted file mode 100644 index a334dea4e24..00000000000 Binary files a/editor/icons/2x/icon_h_t_t_p_request.png and /dev/null differ diff --git a/editor/icons/2x/icon_headphones.png b/editor/icons/2x/icon_headphones.png deleted file mode 100644 index eca62b93725..00000000000 Binary files a/editor/icons/2x/icon_headphones.png and /dev/null differ diff --git a/editor/icons/2x/icon_help.png b/editor/icons/2x/icon_help.png deleted file mode 100644 index 771b8150207..00000000000 Binary files a/editor/icons/2x/icon_help.png and /dev/null differ diff --git a/editor/icons/2x/icon_help_search.png b/editor/icons/2x/icon_help_search.png deleted file mode 100644 index a35c4b6070b..00000000000 Binary files a/editor/icons/2x/icon_help_search.png and /dev/null differ diff --git a/editor/icons/2x/icon_hidden.png b/editor/icons/2x/icon_hidden.png deleted file mode 100644 index 09d38c5bef2..00000000000 Binary files a/editor/icons/2x/icon_hidden.png and /dev/null differ diff --git a/editor/icons/2x/icon_hinge_joint.png b/editor/icons/2x/icon_hinge_joint.png deleted file mode 100644 index b8881025732..00000000000 Binary files a/editor/icons/2x/icon_hinge_joint.png and /dev/null differ diff --git a/editor/icons/2x/icon_history.png b/editor/icons/2x/icon_history.png deleted file mode 100644 index 153a2b4edff..00000000000 Binary files a/editor/icons/2x/icon_history.png and /dev/null differ diff --git a/editor/icons/2x/icon_hsize.png b/editor/icons/2x/icon_hsize.png deleted file mode 100644 index 3b096dce884..00000000000 Binary files a/editor/icons/2x/icon_hsize.png and /dev/null differ diff --git a/editor/icons/2x/icon_hslider_bg.png b/editor/icons/2x/icon_hslider_bg.png deleted file mode 100644 index e3c61f25e0d..00000000000 Binary files a/editor/icons/2x/icon_hslider_bg.png and /dev/null differ diff --git a/editor/icons/2x/icon_image.png b/editor/icons/2x/icon_image.png deleted file mode 100644 index 951b2242f17..00000000000 Binary files a/editor/icons/2x/icon_image.png and /dev/null differ diff --git a/editor/icons/2x/icon_image_sky_box.png b/editor/icons/2x/icon_image_sky_box.png deleted file mode 100644 index 487178afabe..00000000000 Binary files a/editor/icons/2x/icon_image_sky_box.png and /dev/null differ diff --git a/editor/icons/2x/icon_image_texture.png b/editor/icons/2x/icon_image_texture.png deleted file mode 100644 index ad5d04dfeec..00000000000 Binary files a/editor/icons/2x/icon_image_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_immediate_geometry.png b/editor/icons/2x/icon_immediate_geometry.png deleted file mode 100644 index 5fafecadc36..00000000000 Binary files a/editor/icons/2x/icon_immediate_geometry.png and /dev/null differ diff --git a/editor/icons/2x/icon_import_check.png b/editor/icons/2x/icon_import_check.png deleted file mode 100644 index 98e76e2640f..00000000000 Binary files a/editor/icons/2x/icon_import_check.png and /dev/null differ diff --git a/editor/icons/2x/icon_import_fail.png b/editor/icons/2x/icon_import_fail.png deleted file mode 100644 index f89c2f5c75c..00000000000 Binary files a/editor/icons/2x/icon_import_fail.png and /dev/null differ diff --git a/editor/icons/2x/icon_instance.png b/editor/icons/2x/icon_instance.png deleted file mode 100644 index 9b4731de037..00000000000 Binary files a/editor/icons/2x/icon_instance.png and /dev/null differ diff --git a/editor/icons/2x/icon_instance_options.png b/editor/icons/2x/icon_instance_options.png deleted file mode 100644 index 28e2db25f29..00000000000 Binary files a/editor/icons/2x/icon_instance_options.png and /dev/null differ diff --git a/editor/icons/2x/icon_integer.png b/editor/icons/2x/icon_integer.png deleted file mode 100644 index 7ad2f624581..00000000000 Binary files a/editor/icons/2x/icon_integer.png and /dev/null differ diff --git a/editor/icons/2x/icon_interp_cubic.png b/editor/icons/2x/icon_interp_cubic.png deleted file mode 100644 index e33bb655770..00000000000 Binary files a/editor/icons/2x/icon_interp_cubic.png and /dev/null differ diff --git a/editor/icons/2x/icon_interp_linear.png b/editor/icons/2x/icon_interp_linear.png deleted file mode 100644 index 205f7febd5b..00000000000 Binary files a/editor/icons/2x/icon_interp_linear.png and /dev/null differ diff --git a/editor/icons/2x/icon_interp_raw.png b/editor/icons/2x/icon_interp_raw.png deleted file mode 100644 index 848ef07be64..00000000000 Binary files a/editor/icons/2x/icon_interp_raw.png and /dev/null differ diff --git a/editor/icons/2x/icon_interp_wrap_clamp.png b/editor/icons/2x/icon_interp_wrap_clamp.png deleted file mode 100644 index 93a5bc56eec..00000000000 Binary files a/editor/icons/2x/icon_interp_wrap_clamp.png and /dev/null differ diff --git a/editor/icons/2x/icon_interp_wrap_loop.png b/editor/icons/2x/icon_interp_wrap_loop.png deleted file mode 100644 index 3e656f7b071..00000000000 Binary files a/editor/icons/2x/icon_interp_wrap_loop.png and /dev/null differ diff --git a/editor/icons/2x/icon_interpolated_camera.png b/editor/icons/2x/icon_interpolated_camera.png deleted file mode 100644 index e4551a84cee..00000000000 Binary files a/editor/icons/2x/icon_interpolated_camera.png and /dev/null differ diff --git a/editor/icons/2x/icon_invalid_key.png b/editor/icons/2x/icon_invalid_key.png deleted file mode 100644 index c34f2bc2768..00000000000 Binary files a/editor/icons/2x/icon_invalid_key.png and /dev/null differ diff --git a/editor/icons/2x/icon_inverse_kinematics.png b/editor/icons/2x/icon_inverse_kinematics.png deleted file mode 100644 index 3b10c9590c9..00000000000 Binary files a/editor/icons/2x/icon_inverse_kinematics.png and /dev/null differ diff --git a/editor/icons/2x/icon_item_list.png b/editor/icons/2x/icon_item_list.png deleted file mode 100644 index 11a375caac8..00000000000 Binary files a/editor/icons/2x/icon_item_list.png and /dev/null differ diff --git a/editor/icons/2x/icon_joy_axis.png b/editor/icons/2x/icon_joy_axis.png deleted file mode 100644 index 90f3d7a4447..00000000000 Binary files a/editor/icons/2x/icon_joy_axis.png and /dev/null differ diff --git a/editor/icons/2x/icon_joy_button.png b/editor/icons/2x/icon_joy_button.png deleted file mode 100644 index a6b911ba1b7..00000000000 Binary files a/editor/icons/2x/icon_joy_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_joypad.png b/editor/icons/2x/icon_joypad.png deleted file mode 100644 index 285d048544a..00000000000 Binary files a/editor/icons/2x/icon_joypad.png and /dev/null differ diff --git a/editor/icons/2x/icon_key.png b/editor/icons/2x/icon_key.png deleted file mode 100644 index d0c07bb1eab..00000000000 Binary files a/editor/icons/2x/icon_key.png and /dev/null differ diff --git a/editor/icons/2x/icon_key_hover.png b/editor/icons/2x/icon_key_hover.png deleted file mode 100644 index 5dd96e8dca1..00000000000 Binary files a/editor/icons/2x/icon_key_hover.png and /dev/null differ diff --git a/editor/icons/2x/icon_key_invalid.png b/editor/icons/2x/icon_key_invalid.png deleted file mode 100644 index c34f2bc2768..00000000000 Binary files a/editor/icons/2x/icon_key_invalid.png and /dev/null differ diff --git a/editor/icons/2x/icon_key_next.png b/editor/icons/2x/icon_key_next.png deleted file mode 100644 index d35b52d3c78..00000000000 Binary files a/editor/icons/2x/icon_key_next.png and /dev/null differ diff --git a/editor/icons/2x/icon_key_selected.png b/editor/icons/2x/icon_key_selected.png deleted file mode 100644 index 7fc9ffdeb42..00000000000 Binary files a/editor/icons/2x/icon_key_selected.png and /dev/null differ diff --git a/editor/icons/2x/icon_key_value.png b/editor/icons/2x/icon_key_value.png deleted file mode 100644 index 94921e24464..00000000000 Binary files a/editor/icons/2x/icon_key_value.png and /dev/null differ diff --git a/editor/icons/2x/icon_key_xform.png b/editor/icons/2x/icon_key_xform.png deleted file mode 100644 index 5749aac8f4d..00000000000 Binary files a/editor/icons/2x/icon_key_xform.png and /dev/null differ diff --git a/editor/icons/2x/icon_keyboard.png b/editor/icons/2x/icon_keyboard.png deleted file mode 100644 index a7daa06cc22..00000000000 Binary files a/editor/icons/2x/icon_keyboard.png and /dev/null differ diff --git a/editor/icons/2x/icon_kinematic_body.png b/editor/icons/2x/icon_kinematic_body.png deleted file mode 100644 index 59298dfa725..00000000000 Binary files a/editor/icons/2x/icon_kinematic_body.png and /dev/null differ diff --git a/editor/icons/2x/icon_kinematic_body_2d.png b/editor/icons/2x/icon_kinematic_body_2d.png deleted file mode 100644 index 5fd3b319ac9..00000000000 Binary files a/editor/icons/2x/icon_kinematic_body_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_label.png b/editor/icons/2x/icon_label.png deleted file mode 100644 index c5e3bc844d1..00000000000 Binary files a/editor/icons/2x/icon_label.png and /dev/null differ diff --git a/editor/icons/2x/icon_large_texture.png b/editor/icons/2x/icon_large_texture.png deleted file mode 100644 index dd1ec86d39f..00000000000 Binary files a/editor/icons/2x/icon_large_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_light_2d.png b/editor/icons/2x/icon_light_2d.png deleted file mode 100644 index d441659354e..00000000000 Binary files a/editor/icons/2x/icon_light_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_light_occluder_2d.png b/editor/icons/2x/icon_light_occluder_2d.png deleted file mode 100644 index 90e43872979..00000000000 Binary files a/editor/icons/2x/icon_light_occluder_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_line_2d.png b/editor/icons/2x/icon_line_2d.png deleted file mode 100644 index 66e5bbc5ba4..00000000000 Binary files a/editor/icons/2x/icon_line_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_line_edit.png b/editor/icons/2x/icon_line_edit.png deleted file mode 100644 index e6a0bc47776..00000000000 Binary files a/editor/icons/2x/icon_line_edit.png and /dev/null differ diff --git a/editor/icons/2x/icon_line_shape_2d.png b/editor/icons/2x/icon_line_shape_2d.png deleted file mode 100644 index 490db5ca5b2..00000000000 Binary files a/editor/icons/2x/icon_line_shape_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_link_button.png b/editor/icons/2x/icon_link_button.png deleted file mode 100644 index 20f300a5538..00000000000 Binary files a/editor/icons/2x/icon_link_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_list_select.png b/editor/icons/2x/icon_list_select.png deleted file mode 100644 index 9f7fa5b865c..00000000000 Binary files a/editor/icons/2x/icon_list_select.png and /dev/null differ diff --git a/editor/icons/2x/icon_listener.png b/editor/icons/2x/icon_listener.png deleted file mode 100644 index 1441a81bdd7..00000000000 Binary files a/editor/icons/2x/icon_listener.png and /dev/null differ diff --git a/editor/icons/2x/icon_load.png b/editor/icons/2x/icon_load.png deleted file mode 100644 index 759381d636b..00000000000 Binary files a/editor/icons/2x/icon_load.png and /dev/null differ diff --git a/editor/icons/2x/icon_lock.png b/editor/icons/2x/icon_lock.png deleted file mode 100644 index 912eaf9eb9e..00000000000 Binary files a/editor/icons/2x/icon_lock.png and /dev/null differ diff --git a/editor/icons/2x/icon_loop.png b/editor/icons/2x/icon_loop.png deleted file mode 100644 index bd1322ae006..00000000000 Binary files a/editor/icons/2x/icon_loop.png and /dev/null differ diff --git a/editor/icons/2x/icon_loop_interpolation.png b/editor/icons/2x/icon_loop_interpolation.png deleted file mode 100644 index 6009b503005..00000000000 Binary files a/editor/icons/2x/icon_loop_interpolation.png and /dev/null differ diff --git a/editor/icons/2x/icon_main_play.png b/editor/icons/2x/icon_main_play.png deleted file mode 100644 index 1f69ce6f17a..00000000000 Binary files a/editor/icons/2x/icon_main_play.png and /dev/null differ diff --git a/editor/icons/2x/icon_main_stop.png b/editor/icons/2x/icon_main_stop.png deleted file mode 100644 index 5048141485c..00000000000 Binary files a/editor/icons/2x/icon_main_stop.png and /dev/null differ diff --git a/editor/icons/2x/icon_margin_container.png b/editor/icons/2x/icon_margin_container.png deleted file mode 100644 index 10eda265e09..00000000000 Binary files a/editor/icons/2x/icon_margin_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_preview_cube.png b/editor/icons/2x/icon_material_preview_cube.png deleted file mode 100644 index 2507c969c3f..00000000000 Binary files a/editor/icons/2x/icon_material_preview_cube.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_preview_cube_off.png b/editor/icons/2x/icon_material_preview_cube_off.png deleted file mode 100644 index 079b3a66457..00000000000 Binary files a/editor/icons/2x/icon_material_preview_cube_off.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_preview_light_1.png b/editor/icons/2x/icon_material_preview_light_1.png deleted file mode 100644 index f1d0ccdacab..00000000000 Binary files a/editor/icons/2x/icon_material_preview_light_1.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_preview_light_1_off.png b/editor/icons/2x/icon_material_preview_light_1_off.png deleted file mode 100644 index 5a42b7f2a18..00000000000 Binary files a/editor/icons/2x/icon_material_preview_light_1_off.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_preview_light_2.png b/editor/icons/2x/icon_material_preview_light_2.png deleted file mode 100644 index 934e696b519..00000000000 Binary files a/editor/icons/2x/icon_material_preview_light_2.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_preview_light_2_off.png b/editor/icons/2x/icon_material_preview_light_2_off.png deleted file mode 100644 index 1aa4c0bb79d..00000000000 Binary files a/editor/icons/2x/icon_material_preview_light_2_off.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_preview_sphere.png b/editor/icons/2x/icon_material_preview_sphere.png deleted file mode 100644 index f5cc7f78197..00000000000 Binary files a/editor/icons/2x/icon_material_preview_sphere.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_preview_sphere_off.png b/editor/icons/2x/icon_material_preview_sphere_off.png deleted file mode 100644 index 7ccef625533..00000000000 Binary files a/editor/icons/2x/icon_material_preview_sphere_off.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_shader.png b/editor/icons/2x/icon_material_shader.png deleted file mode 100644 index f8c2e15fcbe..00000000000 Binary files a/editor/icons/2x/icon_material_shader.png and /dev/null differ diff --git a/editor/icons/2x/icon_material_shader_graph.png b/editor/icons/2x/icon_material_shader_graph.png deleted file mode 100644 index a26a9754fef..00000000000 Binary files a/editor/icons/2x/icon_material_shader_graph.png and /dev/null differ diff --git a/editor/icons/2x/icon_matrix.png b/editor/icons/2x/icon_matrix.png deleted file mode 100644 index 0ac4ae170b9..00000000000 Binary files a/editor/icons/2x/icon_matrix.png and /dev/null differ diff --git a/editor/icons/2x/icon_menu_button.png b/editor/icons/2x/icon_menu_button.png deleted file mode 100644 index abf9b490e35..00000000000 Binary files a/editor/icons/2x/icon_menu_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_mesh.png b/editor/icons/2x/icon_mesh.png deleted file mode 100644 index 19b90956190..00000000000 Binary files a/editor/icons/2x/icon_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_mesh_instance.png b/editor/icons/2x/icon_mesh_instance.png deleted file mode 100644 index 02f3f5ffaab..00000000000 Binary files a/editor/icons/2x/icon_mesh_instance.png and /dev/null differ diff --git a/editor/icons/2x/icon_mesh_library.png b/editor/icons/2x/icon_mesh_library.png deleted file mode 100644 index 2495e4a037d..00000000000 Binary files a/editor/icons/2x/icon_mesh_library.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_aabb.png b/editor/icons/2x/icon_mini_aabb.png deleted file mode 100644 index 25603eec492..00000000000 Binary files a/editor/icons/2x/icon_mini_aabb.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_array.png b/editor/icons/2x/icon_mini_array.png deleted file mode 100644 index 5c7bde2639d..00000000000 Binary files a/editor/icons/2x/icon_mini_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_basis.png b/editor/icons/2x/icon_mini_basis.png deleted file mode 100644 index 276b48d7227..00000000000 Binary files a/editor/icons/2x/icon_mini_basis.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_boolean.png b/editor/icons/2x/icon_mini_boolean.png deleted file mode 100644 index a7d00056bb3..00000000000 Binary files a/editor/icons/2x/icon_mini_boolean.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_color.png b/editor/icons/2x/icon_mini_color.png deleted file mode 100644 index f4059bfb914..00000000000 Binary files a/editor/icons/2x/icon_mini_color.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_color_array.png b/editor/icons/2x/icon_mini_color_array.png deleted file mode 100644 index 26f1d9fce4b..00000000000 Binary files a/editor/icons/2x/icon_mini_color_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_dictionary.png b/editor/icons/2x/icon_mini_dictionary.png deleted file mode 100644 index 241e0587b49..00000000000 Binary files a/editor/icons/2x/icon_mini_dictionary.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_float.png b/editor/icons/2x/icon_mini_float.png deleted file mode 100644 index 6edf76ece1e..00000000000 Binary files a/editor/icons/2x/icon_mini_float.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_float_array.png b/editor/icons/2x/icon_mini_float_array.png deleted file mode 100644 index 5a79fab7219..00000000000 Binary files a/editor/icons/2x/icon_mini_float_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_image.png b/editor/icons/2x/icon_mini_image.png deleted file mode 100644 index 98faebeef23..00000000000 Binary files a/editor/icons/2x/icon_mini_image.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_input.png b/editor/icons/2x/icon_mini_input.png deleted file mode 100644 index 48536e156c9..00000000000 Binary files a/editor/icons/2x/icon_mini_input.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_int_array.png b/editor/icons/2x/icon_mini_int_array.png deleted file mode 100644 index 790ed44c308..00000000000 Binary files a/editor/icons/2x/icon_mini_int_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_integer.png b/editor/icons/2x/icon_mini_integer.png deleted file mode 100644 index cd9118f024c..00000000000 Binary files a/editor/icons/2x/icon_mini_integer.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_matrix3.png b/editor/icons/2x/icon_mini_matrix3.png deleted file mode 100644 index 276b48d7227..00000000000 Binary files a/editor/icons/2x/icon_mini_matrix3.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_matrix32.png b/editor/icons/2x/icon_mini_matrix32.png deleted file mode 100644 index c2f7ea38175..00000000000 Binary files a/editor/icons/2x/icon_mini_matrix32.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_object.png b/editor/icons/2x/icon_mini_object.png deleted file mode 100644 index 7987f750ffe..00000000000 Binary files a/editor/icons/2x/icon_mini_object.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_path.png b/editor/icons/2x/icon_mini_path.png deleted file mode 100644 index 2e60a460867..00000000000 Binary files a/editor/icons/2x/icon_mini_path.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_plane.png b/editor/icons/2x/icon_mini_plane.png deleted file mode 100644 index 12b5cd26cc4..00000000000 Binary files a/editor/icons/2x/icon_mini_plane.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_quat.png b/editor/icons/2x/icon_mini_quat.png deleted file mode 100644 index 9a33902e596..00000000000 Binary files a/editor/icons/2x/icon_mini_quat.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_raw_array.png b/editor/icons/2x/icon_mini_raw_array.png deleted file mode 100644 index 629b01e72a7..00000000000 Binary files a/editor/icons/2x/icon_mini_raw_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_rect2.png b/editor/icons/2x/icon_mini_rect2.png deleted file mode 100644 index 88b12e3a3a0..00000000000 Binary files a/editor/icons/2x/icon_mini_rect2.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_rid.png b/editor/icons/2x/icon_mini_rid.png deleted file mode 100644 index 5388c198178..00000000000 Binary files a/editor/icons/2x/icon_mini_rid.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_string.png b/editor/icons/2x/icon_mini_string.png deleted file mode 100644 index 2264451c739..00000000000 Binary files a/editor/icons/2x/icon_mini_string.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_string_array.png b/editor/icons/2x/icon_mini_string_array.png deleted file mode 100644 index fa8109b88a5..00000000000 Binary files a/editor/icons/2x/icon_mini_string_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_transform.png b/editor/icons/2x/icon_mini_transform.png deleted file mode 100644 index 5144871c5c0..00000000000 Binary files a/editor/icons/2x/icon_mini_transform.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_transform2D.png b/editor/icons/2x/icon_mini_transform2D.png deleted file mode 100644 index 4237eced180..00000000000 Binary files a/editor/icons/2x/icon_mini_transform2D.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_variant.png b/editor/icons/2x/icon_mini_variant.png deleted file mode 100644 index ae0aad16cf1..00000000000 Binary files a/editor/icons/2x/icon_mini_variant.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_vector2.png b/editor/icons/2x/icon_mini_vector2.png deleted file mode 100644 index 9e608e61c13..00000000000 Binary files a/editor/icons/2x/icon_mini_vector2.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_vector2_array.png b/editor/icons/2x/icon_mini_vector2_array.png deleted file mode 100644 index 247c0e25925..00000000000 Binary files a/editor/icons/2x/icon_mini_vector2_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_vector3.png b/editor/icons/2x/icon_mini_vector3.png deleted file mode 100644 index 0b84b4628ff..00000000000 Binary files a/editor/icons/2x/icon_mini_vector3.png and /dev/null differ diff --git a/editor/icons/2x/icon_mini_vector3_array.png b/editor/icons/2x/icon_mini_vector3_array.png deleted file mode 100644 index 68058e42323..00000000000 Binary files a/editor/icons/2x/icon_mini_vector3_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_mirror_x.png b/editor/icons/2x/icon_mirror_x.png deleted file mode 100644 index b5a8867a16b..00000000000 Binary files a/editor/icons/2x/icon_mirror_x.png and /dev/null differ diff --git a/editor/icons/2x/icon_mirror_y.png b/editor/icons/2x/icon_mirror_y.png deleted file mode 100644 index 4a0483eb707..00000000000 Binary files a/editor/icons/2x/icon_mirror_y.png and /dev/null differ diff --git a/editor/icons/2x/icon_mouse.png b/editor/icons/2x/icon_mouse.png deleted file mode 100644 index 9c4a76bd4f0..00000000000 Binary files a/editor/icons/2x/icon_mouse.png and /dev/null differ diff --git a/editor/icons/2x/icon_move_down.png b/editor/icons/2x/icon_move_down.png deleted file mode 100644 index 2a17aab2044..00000000000 Binary files a/editor/icons/2x/icon_move_down.png and /dev/null differ diff --git a/editor/icons/2x/icon_move_point.png b/editor/icons/2x/icon_move_point.png deleted file mode 100644 index 5d135ae2946..00000000000 Binary files a/editor/icons/2x/icon_move_point.png and /dev/null differ diff --git a/editor/icons/2x/icon_move_up.png b/editor/icons/2x/icon_move_up.png deleted file mode 100644 index d8d7f5a2070..00000000000 Binary files a/editor/icons/2x/icon_move_up.png and /dev/null differ diff --git a/editor/icons/2x/icon_multi_edit.png b/editor/icons/2x/icon_multi_edit.png deleted file mode 100644 index 93360b93f70..00000000000 Binary files a/editor/icons/2x/icon_multi_edit.png and /dev/null differ diff --git a/editor/icons/2x/icon_multi_line.png b/editor/icons/2x/icon_multi_line.png deleted file mode 100644 index 5d43b79e8a7..00000000000 Binary files a/editor/icons/2x/icon_multi_line.png and /dev/null differ diff --git a/editor/icons/2x/icon_multi_mesh.png b/editor/icons/2x/icon_multi_mesh.png deleted file mode 100644 index 35b99d66987..00000000000 Binary files a/editor/icons/2x/icon_multi_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_multi_mesh_instance.png b/editor/icons/2x/icon_multi_mesh_instance.png deleted file mode 100644 index f69768c6e35..00000000000 Binary files a/editor/icons/2x/icon_multi_mesh_instance.png and /dev/null differ diff --git a/editor/icons/2x/icon_multi_node_edit.png b/editor/icons/2x/icon_multi_node_edit.png deleted file mode 100644 index 93360b93f70..00000000000 Binary files a/editor/icons/2x/icon_multi_node_edit.png and /dev/null differ diff --git a/editor/icons/2x/icon_multi_script.png b/editor/icons/2x/icon_multi_script.png deleted file mode 100644 index 8a7dd4ee112..00000000000 Binary files a/editor/icons/2x/icon_multi_script.png and /dev/null differ diff --git a/editor/icons/2x/icon_native_script.png b/editor/icons/2x/icon_native_script.png deleted file mode 100644 index 31cc130867c..00000000000 Binary files a/editor/icons/2x/icon_native_script.png and /dev/null differ diff --git a/editor/icons/2x/icon_navigation.png b/editor/icons/2x/icon_navigation.png deleted file mode 100644 index 3cd838d2fc7..00000000000 Binary files a/editor/icons/2x/icon_navigation.png and /dev/null differ diff --git a/editor/icons/2x/icon_navigation_2d.png b/editor/icons/2x/icon_navigation_2d.png deleted file mode 100644 index 9efbeaaef09..00000000000 Binary files a/editor/icons/2x/icon_navigation_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_navigation_mesh.png b/editor/icons/2x/icon_navigation_mesh.png deleted file mode 100644 index 35b893c3bb6..00000000000 Binary files a/editor/icons/2x/icon_navigation_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_navigation_mesh_instance.png b/editor/icons/2x/icon_navigation_mesh_instance.png deleted file mode 100644 index 404fad2d318..00000000000 Binary files a/editor/icons/2x/icon_navigation_mesh_instance.png and /dev/null differ diff --git a/editor/icons/2x/icon_navigation_polygon.png b/editor/icons/2x/icon_navigation_polygon.png deleted file mode 100644 index 3f4845e2068..00000000000 Binary files a/editor/icons/2x/icon_navigation_polygon.png and /dev/null differ diff --git a/editor/icons/2x/icon_navigation_polygon_instance.png b/editor/icons/2x/icon_navigation_polygon_instance.png deleted file mode 100644 index 5556835d76a..00000000000 Binary files a/editor/icons/2x/icon_navigation_polygon_instance.png and /dev/null differ diff --git a/editor/icons/2x/icon_new.png b/editor/icons/2x/icon_new.png deleted file mode 100644 index a10fe2cc60e..00000000000 Binary files a/editor/icons/2x/icon_new.png and /dev/null differ diff --git a/editor/icons/2x/icon_nine_patch_rect.png b/editor/icons/2x/icon_nine_patch_rect.png deleted file mode 100644 index 95edb799364..00000000000 Binary files a/editor/icons/2x/icon_nine_patch_rect.png and /dev/null differ diff --git a/editor/icons/2x/icon_node.png b/editor/icons/2x/icon_node.png deleted file mode 100644 index e487f988a28..00000000000 Binary files a/editor/icons/2x/icon_node.png and /dev/null differ diff --git a/editor/icons/2x/icon_node_2d.png b/editor/icons/2x/icon_node_2d.png deleted file mode 100644 index 967d4b7da6b..00000000000 Binary files a/editor/icons/2x/icon_node_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_node_warning.png b/editor/icons/2x/icon_node_warning.png deleted file mode 100644 index 397a57bf1f8..00000000000 Binary files a/editor/icons/2x/icon_node_warning.png and /dev/null differ diff --git a/editor/icons/2x/icon_non_favorite.png b/editor/icons/2x/icon_non_favorite.png deleted file mode 100644 index 18aa94e6b91..00000000000 Binary files a/editor/icons/2x/icon_non_favorite.png and /dev/null differ diff --git a/editor/icons/2x/icon_object.png b/editor/icons/2x/icon_object.png deleted file mode 100644 index dc0a94aacd7..00000000000 Binary files a/editor/icons/2x/icon_object.png and /dev/null differ diff --git a/editor/icons/2x/icon_occluder_polygon_2d.png b/editor/icons/2x/icon_occluder_polygon_2d.png deleted file mode 100644 index e5e27dda32a..00000000000 Binary files a/editor/icons/2x/icon_occluder_polygon_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_omni_light.png b/editor/icons/2x/icon_omni_light.png deleted file mode 100644 index 2c44252b9c1..00000000000 Binary files a/editor/icons/2x/icon_omni_light.png and /dev/null differ diff --git a/editor/icons/2x/icon_open.png b/editor/icons/2x/icon_open.png deleted file mode 100644 index 759381d636b..00000000000 Binary files a/editor/icons/2x/icon_open.png and /dev/null differ diff --git a/editor/icons/2x/icon_option_arrow.png b/editor/icons/2x/icon_option_arrow.png deleted file mode 100644 index ed177a44512..00000000000 Binary files a/editor/icons/2x/icon_option_arrow.png and /dev/null differ diff --git a/editor/icons/2x/icon_option_button.png b/editor/icons/2x/icon_option_button.png deleted file mode 100644 index 0e9998f8566..00000000000 Binary files a/editor/icons/2x/icon_option_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_override.png b/editor/icons/2x/icon_override.png deleted file mode 100644 index d735a1c7348..00000000000 Binary files a/editor/icons/2x/icon_override.png and /dev/null differ diff --git a/editor/icons/2x/icon_p_hash_translation.png b/editor/icons/2x/icon_p_hash_translation.png deleted file mode 100644 index 0ddc1da2821..00000000000 Binary files a/editor/icons/2x/icon_p_hash_translation.png and /dev/null differ diff --git a/editor/icons/2x/icon_packed_data_container.png b/editor/icons/2x/icon_packed_data_container.png deleted file mode 100644 index 958e41ede2f..00000000000 Binary files a/editor/icons/2x/icon_packed_data_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_packed_scene.png b/editor/icons/2x/icon_packed_scene.png deleted file mode 100644 index 00778e8c0ae..00000000000 Binary files a/editor/icons/2x/icon_packed_scene.png and /dev/null differ diff --git a/editor/icons/2x/icon_panel.png b/editor/icons/2x/icon_panel.png deleted file mode 100644 index 23491a73580..00000000000 Binary files a/editor/icons/2x/icon_panel.png and /dev/null differ diff --git a/editor/icons/2x/icon_panel_container.png b/editor/icons/2x/icon_panel_container.png deleted file mode 100644 index fb2980ee8bd..00000000000 Binary files a/editor/icons/2x/icon_panel_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_panels_1.png b/editor/icons/2x/icon_panels_1.png deleted file mode 100644 index b8386daa2e0..00000000000 Binary files a/editor/icons/2x/icon_panels_1.png and /dev/null differ diff --git a/editor/icons/2x/icon_panels_2.png b/editor/icons/2x/icon_panels_2.png deleted file mode 100644 index 4d9f3ef7247..00000000000 Binary files a/editor/icons/2x/icon_panels_2.png and /dev/null differ diff --git a/editor/icons/2x/icon_panels_2_alt.png b/editor/icons/2x/icon_panels_2_alt.png deleted file mode 100644 index 69aeecce346..00000000000 Binary files a/editor/icons/2x/icon_panels_2_alt.png and /dev/null differ diff --git a/editor/icons/2x/icon_panels_3.png b/editor/icons/2x/icon_panels_3.png deleted file mode 100644 index e889504f158..00000000000 Binary files a/editor/icons/2x/icon_panels_3.png and /dev/null differ diff --git a/editor/icons/2x/icon_panels_3_alt.png b/editor/icons/2x/icon_panels_3_alt.png deleted file mode 100644 index 1e9a17ca758..00000000000 Binary files a/editor/icons/2x/icon_panels_3_alt.png and /dev/null differ diff --git a/editor/icons/2x/icon_panels_4.png b/editor/icons/2x/icon_panels_4.png deleted file mode 100644 index 62e77e417a1..00000000000 Binary files a/editor/icons/2x/icon_panels_4.png and /dev/null differ diff --git a/editor/icons/2x/icon_panorama_sky.png b/editor/icons/2x/icon_panorama_sky.png deleted file mode 100644 index 984b92c682a..00000000000 Binary files a/editor/icons/2x/icon_panorama_sky.png and /dev/null differ diff --git a/editor/icons/2x/icon_parallax_background.png b/editor/icons/2x/icon_parallax_background.png deleted file mode 100644 index a81046e805a..00000000000 Binary files a/editor/icons/2x/icon_parallax_background.png and /dev/null differ diff --git a/editor/icons/2x/icon_parallax_layer.png b/editor/icons/2x/icon_parallax_layer.png deleted file mode 100644 index 285999df61c..00000000000 Binary files a/editor/icons/2x/icon_parallax_layer.png and /dev/null differ diff --git a/editor/icons/2x/icon_particle_attractor_2d.png b/editor/icons/2x/icon_particle_attractor_2d.png deleted file mode 100644 index b985a0ba57d..00000000000 Binary files a/editor/icons/2x/icon_particle_attractor_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_particles.png b/editor/icons/2x/icon_particles.png deleted file mode 100644 index 68f30b42133..00000000000 Binary files a/editor/icons/2x/icon_particles.png and /dev/null differ diff --git a/editor/icons/2x/icon_particles_2d.png b/editor/icons/2x/icon_particles_2d.png deleted file mode 100644 index 13fc8a35e6d..00000000000 Binary files a/editor/icons/2x/icon_particles_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_particles_material.png b/editor/icons/2x/icon_particles_material.png deleted file mode 100644 index 26ce8f6809b..00000000000 Binary files a/editor/icons/2x/icon_particles_material.png and /dev/null differ diff --git a/editor/icons/2x/icon_particles_shader.png b/editor/icons/2x/icon_particles_shader.png deleted file mode 100644 index 26ce8f6809b..00000000000 Binary files a/editor/icons/2x/icon_particles_shader.png and /dev/null differ diff --git a/editor/icons/2x/icon_patch_9_rect.png b/editor/icons/2x/icon_patch_9_rect.png deleted file mode 100644 index 5762a0392e3..00000000000 Binary files a/editor/icons/2x/icon_patch_9_rect.png and /dev/null differ diff --git a/editor/icons/2x/icon_path.png b/editor/icons/2x/icon_path.png deleted file mode 100644 index d10cb37bcdc..00000000000 Binary files a/editor/icons/2x/icon_path.png and /dev/null differ diff --git a/editor/icons/2x/icon_path_2d.png b/editor/icons/2x/icon_path_2d.png deleted file mode 100644 index dabf5ccc49b..00000000000 Binary files a/editor/icons/2x/icon_path_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_path_follow.png b/editor/icons/2x/icon_path_follow.png deleted file mode 100644 index 8538b1f3b9a..00000000000 Binary files a/editor/icons/2x/icon_path_follow.png and /dev/null differ diff --git a/editor/icons/2x/icon_path_follow_2d.png b/editor/icons/2x/icon_path_follow_2d.png deleted file mode 100644 index a83ed837ba9..00000000000 Binary files a/editor/icons/2x/icon_path_follow_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_pause.png b/editor/icons/2x/icon_pause.png deleted file mode 100644 index 35e6b252945..00000000000 Binary files a/editor/icons/2x/icon_pause.png and /dev/null differ diff --git a/editor/icons/2x/icon_pin.png b/editor/icons/2x/icon_pin.png deleted file mode 100644 index d19fe7afef7..00000000000 Binary files a/editor/icons/2x/icon_pin.png and /dev/null differ diff --git a/editor/icons/2x/icon_pin_joint.png b/editor/icons/2x/icon_pin_joint.png deleted file mode 100644 index 304cb39724a..00000000000 Binary files a/editor/icons/2x/icon_pin_joint.png and /dev/null differ diff --git a/editor/icons/2x/icon_pin_joint_2d.png b/editor/icons/2x/icon_pin_joint_2d.png deleted file mode 100644 index a2302c4756a..00000000000 Binary files a/editor/icons/2x/icon_pin_joint_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_pin_pressed.png b/editor/icons/2x/icon_pin_pressed.png deleted file mode 100644 index d19fe7afef7..00000000000 Binary files a/editor/icons/2x/icon_pin_pressed.png and /dev/null differ diff --git a/editor/icons/2x/icon_plane.png b/editor/icons/2x/icon_plane.png deleted file mode 100644 index a096e300654..00000000000 Binary files a/editor/icons/2x/icon_plane.png and /dev/null differ diff --git a/editor/icons/2x/icon_plane_mesh.png b/editor/icons/2x/icon_plane_mesh.png deleted file mode 100644 index d7692eae727..00000000000 Binary files a/editor/icons/2x/icon_plane_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_plane_shape.png b/editor/icons/2x/icon_plane_shape.png deleted file mode 100644 index 8ebd38fe83e..00000000000 Binary files a/editor/icons/2x/icon_plane_shape.png and /dev/null differ diff --git a/editor/icons/2x/icon_play.png b/editor/icons/2x/icon_play.png deleted file mode 100644 index b84ed230916..00000000000 Binary files a/editor/icons/2x/icon_play.png and /dev/null differ diff --git a/editor/icons/2x/icon_play_backwards.png b/editor/icons/2x/icon_play_backwards.png deleted file mode 100644 index 42aeca74e57..00000000000 Binary files a/editor/icons/2x/icon_play_backwards.png and /dev/null differ diff --git a/editor/icons/2x/icon_play_button_group.png b/editor/icons/2x/icon_play_button_group.png deleted file mode 100644 index e28cb52e644..00000000000 Binary files a/editor/icons/2x/icon_play_button_group.png and /dev/null differ diff --git a/editor/icons/2x/icon_play_custom.png b/editor/icons/2x/icon_play_custom.png deleted file mode 100644 index 299ac3ffbc6..00000000000 Binary files a/editor/icons/2x/icon_play_custom.png and /dev/null differ diff --git a/editor/icons/2x/icon_play_scene.png b/editor/icons/2x/icon_play_scene.png deleted file mode 100644 index 948a2e9ba5b..00000000000 Binary files a/editor/icons/2x/icon_play_scene.png and /dev/null differ diff --git a/editor/icons/2x/icon_play_start.png b/editor/icons/2x/icon_play_start.png deleted file mode 100644 index 227e1b6f19b..00000000000 Binary files a/editor/icons/2x/icon_play_start.png and /dev/null differ diff --git a/editor/icons/2x/icon_play_start_backwards.png b/editor/icons/2x/icon_play_start_backwards.png deleted file mode 100644 index e9a46325f61..00000000000 Binary files a/editor/icons/2x/icon_play_start_backwards.png and /dev/null differ diff --git a/editor/icons/2x/icon_polygon_2d.png b/editor/icons/2x/icon_polygon_2d.png deleted file mode 100644 index 491ebfaa78d..00000000000 Binary files a/editor/icons/2x/icon_polygon_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_polygon_path_finder.png b/editor/icons/2x/icon_polygon_path_finder.png deleted file mode 100644 index ee6423c2656..00000000000 Binary files a/editor/icons/2x/icon_polygon_path_finder.png and /dev/null differ diff --git a/editor/icons/2x/icon_popup.png b/editor/icons/2x/icon_popup.png deleted file mode 100644 index 7bcfb114da7..00000000000 Binary files a/editor/icons/2x/icon_popup.png and /dev/null differ diff --git a/editor/icons/2x/icon_popup_dialog.png b/editor/icons/2x/icon_popup_dialog.png deleted file mode 100644 index 6920fa27bf3..00000000000 Binary files a/editor/icons/2x/icon_popup_dialog.png and /dev/null differ diff --git a/editor/icons/2x/icon_popup_menu.png b/editor/icons/2x/icon_popup_menu.png deleted file mode 100644 index 4e0246879bf..00000000000 Binary files a/editor/icons/2x/icon_popup_menu.png and /dev/null differ diff --git a/editor/icons/2x/icon_popup_panel.png b/editor/icons/2x/icon_popup_panel.png deleted file mode 100644 index 15d977cc81a..00000000000 Binary files a/editor/icons/2x/icon_popup_panel.png and /dev/null differ diff --git a/editor/icons/2x/icon_portal.png b/editor/icons/2x/icon_portal.png deleted file mode 100644 index c934e65fc4d..00000000000 Binary files a/editor/icons/2x/icon_portal.png and /dev/null differ diff --git a/editor/icons/2x/icon_position_2d.png b/editor/icons/2x/icon_position_2d.png deleted file mode 100644 index 176a2300efa..00000000000 Binary files a/editor/icons/2x/icon_position_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_position_3d.png b/editor/icons/2x/icon_position_3d.png deleted file mode 100644 index ed19f011b0d..00000000000 Binary files a/editor/icons/2x/icon_position_3d.png and /dev/null differ diff --git a/editor/icons/2x/icon_prism_mesh.png b/editor/icons/2x/icon_prism_mesh.png deleted file mode 100644 index fcf34ba7a6f..00000000000 Binary files a/editor/icons/2x/icon_prism_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_procedural_sky.png b/editor/icons/2x/icon_procedural_sky.png deleted file mode 100644 index b615c16ecbe..00000000000 Binary files a/editor/icons/2x/icon_procedural_sky.png and /dev/null differ diff --git a/editor/icons/2x/icon_progress_1.png b/editor/icons/2x/icon_progress_1.png deleted file mode 100644 index b73dded521f..00000000000 Binary files a/editor/icons/2x/icon_progress_1.png and /dev/null differ diff --git a/editor/icons/2x/icon_progress_2.png b/editor/icons/2x/icon_progress_2.png deleted file mode 100644 index 19d89bd3693..00000000000 Binary files a/editor/icons/2x/icon_progress_2.png and /dev/null differ diff --git a/editor/icons/2x/icon_progress_3.png b/editor/icons/2x/icon_progress_3.png deleted file mode 100644 index ca6b270ef75..00000000000 Binary files a/editor/icons/2x/icon_progress_3.png and /dev/null differ diff --git a/editor/icons/2x/icon_progress_4.png b/editor/icons/2x/icon_progress_4.png deleted file mode 100644 index 3afa1f845e9..00000000000 Binary files a/editor/icons/2x/icon_progress_4.png and /dev/null differ diff --git a/editor/icons/2x/icon_progress_5.png b/editor/icons/2x/icon_progress_5.png deleted file mode 100644 index 8230048771f..00000000000 Binary files a/editor/icons/2x/icon_progress_5.png and /dev/null differ diff --git a/editor/icons/2x/icon_progress_6.png b/editor/icons/2x/icon_progress_6.png deleted file mode 100644 index 6c21a5d0537..00000000000 Binary files a/editor/icons/2x/icon_progress_6.png and /dev/null differ diff --git a/editor/icons/2x/icon_progress_7.png b/editor/icons/2x/icon_progress_7.png deleted file mode 100644 index 96316b54cab..00000000000 Binary files a/editor/icons/2x/icon_progress_7.png and /dev/null differ diff --git a/editor/icons/2x/icon_progress_8.png b/editor/icons/2x/icon_progress_8.png deleted file mode 100644 index 95133b380db..00000000000 Binary files a/editor/icons/2x/icon_progress_8.png and /dev/null differ diff --git a/editor/icons/2x/icon_progress_bar.png b/editor/icons/2x/icon_progress_bar.png deleted file mode 100644 index f9a243032ea..00000000000 Binary files a/editor/icons/2x/icon_progress_bar.png and /dev/null differ diff --git a/editor/icons/2x/icon_proximity_group.png b/editor/icons/2x/icon_proximity_group.png deleted file mode 100644 index 6602afa7ced..00000000000 Binary files a/editor/icons/2x/icon_proximity_group.png and /dev/null differ diff --git a/editor/icons/2x/icon_quad.png b/editor/icons/2x/icon_quad.png deleted file mode 100644 index a4074cd5b63..00000000000 Binary files a/editor/icons/2x/icon_quad.png and /dev/null differ diff --git a/editor/icons/2x/icon_quad_mesh.png b/editor/icons/2x/icon_quad_mesh.png deleted file mode 100644 index a8a3513b6de..00000000000 Binary files a/editor/icons/2x/icon_quad_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_quat.png b/editor/icons/2x/icon_quat.png deleted file mode 100644 index f909e134f40..00000000000 Binary files a/editor/icons/2x/icon_quat.png and /dev/null differ diff --git a/editor/icons/2x/icon_range.png b/editor/icons/2x/icon_range.png deleted file mode 100644 index 92c0934df67..00000000000 Binary files a/editor/icons/2x/icon_range.png and /dev/null differ diff --git a/editor/icons/2x/icon_rating_no_star.png b/editor/icons/2x/icon_rating_no_star.png deleted file mode 100644 index f855fd8b569..00000000000 Binary files a/editor/icons/2x/icon_rating_no_star.png and /dev/null differ diff --git a/editor/icons/2x/icon_rating_star.png b/editor/icons/2x/icon_rating_star.png deleted file mode 100644 index bfe082d330d..00000000000 Binary files a/editor/icons/2x/icon_rating_star.png and /dev/null differ diff --git a/editor/icons/2x/icon_ray_cast.png b/editor/icons/2x/icon_ray_cast.png deleted file mode 100644 index 26d958ac2ba..00000000000 Binary files a/editor/icons/2x/icon_ray_cast.png and /dev/null differ diff --git a/editor/icons/2x/icon_ray_cast_2d.png b/editor/icons/2x/icon_ray_cast_2d.png deleted file mode 100644 index e496cdcc2b8..00000000000 Binary files a/editor/icons/2x/icon_ray_cast_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_ray_shape.png b/editor/icons/2x/icon_ray_shape.png deleted file mode 100644 index 54a1cf8fe96..00000000000 Binary files a/editor/icons/2x/icon_ray_shape.png and /dev/null differ diff --git a/editor/icons/2x/icon_ray_shape_2d.png b/editor/icons/2x/icon_ray_shape_2d.png deleted file mode 100644 index 2dc7041a93c..00000000000 Binary files a/editor/icons/2x/icon_ray_shape_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_rayito.png b/editor/icons/2x/icon_rayito.png deleted file mode 100644 index 1959b8bf002..00000000000 Binary files a/editor/icons/2x/icon_rayito.png and /dev/null differ diff --git a/editor/icons/2x/icon_real.png b/editor/icons/2x/icon_real.png deleted file mode 100644 index 5ec56ebcac4..00000000000 Binary files a/editor/icons/2x/icon_real.png and /dev/null differ diff --git a/editor/icons/2x/icon_rectangle_shape_2d.png b/editor/icons/2x/icon_rectangle_shape_2d.png deleted file mode 100644 index 51a93cdb1da..00000000000 Binary files a/editor/icons/2x/icon_rectangle_shape_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_reference_rect.png b/editor/icons/2x/icon_reference_rect.png deleted file mode 100644 index 41130f7fdd2..00000000000 Binary files a/editor/icons/2x/icon_reference_rect.png and /dev/null differ diff --git a/editor/icons/2x/icon_reflection_probe.png b/editor/icons/2x/icon_reflection_probe.png deleted file mode 100644 index 5604b403df0..00000000000 Binary files a/editor/icons/2x/icon_reflection_probe.png and /dev/null differ diff --git a/editor/icons/2x/icon_region_edit.png b/editor/icons/2x/icon_region_edit.png deleted file mode 100644 index bcaba769d49..00000000000 Binary files a/editor/icons/2x/icon_region_edit.png and /dev/null differ diff --git a/editor/icons/2x/icon_reload.png b/editor/icons/2x/icon_reload.png deleted file mode 100644 index b13c8581245..00000000000 Binary files a/editor/icons/2x/icon_reload.png and /dev/null differ diff --git a/editor/icons/2x/icon_reload_small.png b/editor/icons/2x/icon_reload_small.png deleted file mode 100644 index a278c34e4c4..00000000000 Binary files a/editor/icons/2x/icon_reload_small.png and /dev/null differ diff --git a/editor/icons/2x/icon_remote.png b/editor/icons/2x/icon_remote.png deleted file mode 100644 index 87883ed7e15..00000000000 Binary files a/editor/icons/2x/icon_remote.png and /dev/null differ diff --git a/editor/icons/2x/icon_remote_transform.png b/editor/icons/2x/icon_remote_transform.png deleted file mode 100644 index 38bfaad6442..00000000000 Binary files a/editor/icons/2x/icon_remote_transform.png and /dev/null differ diff --git a/editor/icons/2x/icon_remote_transform_2d.png b/editor/icons/2x/icon_remote_transform_2d.png deleted file mode 100644 index 022da8a9efa..00000000000 Binary files a/editor/icons/2x/icon_remote_transform_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_remove.png b/editor/icons/2x/icon_remove.png deleted file mode 100644 index dbed177745a..00000000000 Binary files a/editor/icons/2x/icon_remove.png and /dev/null differ diff --git a/editor/icons/2x/icon_rename.png b/editor/icons/2x/icon_rename.png deleted file mode 100644 index a306a7b8c8a..00000000000 Binary files a/editor/icons/2x/icon_rename.png and /dev/null differ diff --git a/editor/icons/2x/icon_reparent.png b/editor/icons/2x/icon_reparent.png deleted file mode 100644 index 3063da4b431..00000000000 Binary files a/editor/icons/2x/icon_reparent.png and /dev/null differ diff --git a/editor/icons/2x/icon_resource_preloader.png b/editor/icons/2x/icon_resource_preloader.png deleted file mode 100644 index d48f37d21fe..00000000000 Binary files a/editor/icons/2x/icon_resource_preloader.png and /dev/null differ diff --git a/editor/icons/2x/icon_rich_text_label.png b/editor/icons/2x/icon_rich_text_label.png deleted file mode 100644 index 598913d8966..00000000000 Binary files a/editor/icons/2x/icon_rich_text_label.png and /dev/null differ diff --git a/editor/icons/2x/icon_rigid_body.png b/editor/icons/2x/icon_rigid_body.png deleted file mode 100644 index 3b682f0033d..00000000000 Binary files a/editor/icons/2x/icon_rigid_body.png and /dev/null differ diff --git a/editor/icons/2x/icon_rigid_body_2d.png b/editor/icons/2x/icon_rigid_body_2d.png deleted file mode 100644 index bd45d2f01a5..00000000000 Binary files a/editor/icons/2x/icon_rigid_body_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_room.png b/editor/icons/2x/icon_room.png deleted file mode 100644 index 946f95e9551..00000000000 Binary files a/editor/icons/2x/icon_room.png and /dev/null differ diff --git a/editor/icons/2x/icon_room_bounds.png b/editor/icons/2x/icon_room_bounds.png deleted file mode 100644 index 94da9c437d5..00000000000 Binary files a/editor/icons/2x/icon_room_bounds.png and /dev/null differ diff --git a/editor/icons/2x/icon_rotate_0.png b/editor/icons/2x/icon_rotate_0.png deleted file mode 100644 index a4524b7856b..00000000000 Binary files a/editor/icons/2x/icon_rotate_0.png and /dev/null differ diff --git a/editor/icons/2x/icon_rotate_180.png b/editor/icons/2x/icon_rotate_180.png deleted file mode 100644 index a00e1b727c8..00000000000 Binary files a/editor/icons/2x/icon_rotate_180.png and /dev/null differ diff --git a/editor/icons/2x/icon_rotate_270.png b/editor/icons/2x/icon_rotate_270.png deleted file mode 100644 index be56f080a96..00000000000 Binary files a/editor/icons/2x/icon_rotate_270.png and /dev/null differ diff --git a/editor/icons/2x/icon_rotate_90.png b/editor/icons/2x/icon_rotate_90.png deleted file mode 100644 index a3a937892d6..00000000000 Binary files a/editor/icons/2x/icon_rotate_90.png and /dev/null differ diff --git a/editor/icons/2x/icon_sample.png b/editor/icons/2x/icon_sample.png deleted file mode 100644 index b01674f923b..00000000000 Binary files a/editor/icons/2x/icon_sample.png and /dev/null differ diff --git a/editor/icons/2x/icon_sample_library.png b/editor/icons/2x/icon_sample_library.png deleted file mode 100644 index 3f76a78aca9..00000000000 Binary files a/editor/icons/2x/icon_sample_library.png and /dev/null differ diff --git a/editor/icons/2x/icon_sample_player.png b/editor/icons/2x/icon_sample_player.png deleted file mode 100644 index aac4c1bbed5..00000000000 Binary files a/editor/icons/2x/icon_sample_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_sample_player_2d.png b/editor/icons/2x/icon_sample_player_2d.png deleted file mode 100644 index 9308d431281..00000000000 Binary files a/editor/icons/2x/icon_sample_player_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_save.png b/editor/icons/2x/icon_save.png deleted file mode 100644 index 0a643f2c884..00000000000 Binary files a/editor/icons/2x/icon_save.png and /dev/null differ diff --git a/editor/icons/2x/icon_script.png b/editor/icons/2x/icon_script.png deleted file mode 100644 index 6f54c204426..00000000000 Binary files a/editor/icons/2x/icon_script.png and /dev/null differ diff --git a/editor/icons/2x/icon_script_create.png b/editor/icons/2x/icon_script_create.png deleted file mode 100644 index f1e25efe1c5..00000000000 Binary files a/editor/icons/2x/icon_script_create.png and /dev/null differ diff --git a/editor/icons/2x/icon_script_remove.png b/editor/icons/2x/icon_script_remove.png deleted file mode 100644 index f9a1bb19a4c..00000000000 Binary files a/editor/icons/2x/icon_script_remove.png and /dev/null differ diff --git a/editor/icons/2x/icon_scroll_bar.png b/editor/icons/2x/icon_scroll_bar.png deleted file mode 100644 index d15a36bb16e..00000000000 Binary files a/editor/icons/2x/icon_scroll_bar.png and /dev/null differ diff --git a/editor/icons/2x/icon_scroll_container.png b/editor/icons/2x/icon_scroll_container.png deleted file mode 100644 index 4ffe2f78f5c..00000000000 Binary files a/editor/icons/2x/icon_scroll_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_search.png b/editor/icons/2x/icon_search.png deleted file mode 100644 index 0c4a6a8c84d..00000000000 Binary files a/editor/icons/2x/icon_search.png and /dev/null differ diff --git a/editor/icons/2x/icon_segment_shape_2d.png b/editor/icons/2x/icon_segment_shape_2d.png deleted file mode 100644 index 43d5d837ccd..00000000000 Binary files a/editor/icons/2x/icon_segment_shape_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_shader.png b/editor/icons/2x/icon_shader.png deleted file mode 100644 index f8c2e15fcbe..00000000000 Binary files a/editor/icons/2x/icon_shader.png and /dev/null differ diff --git a/editor/icons/2x/icon_shader_material.png b/editor/icons/2x/icon_shader_material.png deleted file mode 100644 index f8c2e15fcbe..00000000000 Binary files a/editor/icons/2x/icon_shader_material.png and /dev/null differ diff --git a/editor/icons/2x/icon_short_cut.png b/editor/icons/2x/icon_short_cut.png deleted file mode 100644 index 58c3e08ca42..00000000000 Binary files a/editor/icons/2x/icon_short_cut.png and /dev/null differ diff --git a/editor/icons/2x/icon_signal.png b/editor/icons/2x/icon_signal.png deleted file mode 100644 index 22b6da361e3..00000000000 Binary files a/editor/icons/2x/icon_signal.png and /dev/null differ diff --git a/editor/icons/2x/icon_skeleton.png b/editor/icons/2x/icon_skeleton.png deleted file mode 100644 index 5345dfbd5cf..00000000000 Binary files a/editor/icons/2x/icon_skeleton.png and /dev/null differ diff --git a/editor/icons/2x/icon_slider_grabber.png b/editor/icons/2x/icon_slider_grabber.png deleted file mode 100644 index 64cf83270a3..00000000000 Binary files a/editor/icons/2x/icon_slider_grabber.png and /dev/null differ diff --git a/editor/icons/2x/icon_slider_grabber_hl.png b/editor/icons/2x/icon_slider_grabber_hl.png deleted file mode 100644 index d68da0d12a9..00000000000 Binary files a/editor/icons/2x/icon_slider_grabber_hl.png and /dev/null differ diff --git a/editor/icons/2x/icon_slider_joint.png b/editor/icons/2x/icon_slider_joint.png deleted file mode 100644 index d3bb501bac0..00000000000 Binary files a/editor/icons/2x/icon_slider_joint.png and /dev/null differ diff --git a/editor/icons/2x/icon_slot.png b/editor/icons/2x/icon_slot.png deleted file mode 100644 index 2176544c798..00000000000 Binary files a/editor/icons/2x/icon_slot.png and /dev/null differ diff --git a/editor/icons/2x/icon_snap.png b/editor/icons/2x/icon_snap.png deleted file mode 100644 index 509b1c73f39..00000000000 Binary files a/editor/icons/2x/icon_snap.png and /dev/null differ diff --git a/editor/icons/2x/icon_sound_room_params.png b/editor/icons/2x/icon_sound_room_params.png deleted file mode 100644 index 32927eaabcc..00000000000 Binary files a/editor/icons/2x/icon_sound_room_params.png and /dev/null differ diff --git a/editor/icons/2x/icon_spatial.png b/editor/icons/2x/icon_spatial.png deleted file mode 100644 index 999771a7fe2..00000000000 Binary files a/editor/icons/2x/icon_spatial.png and /dev/null differ diff --git a/editor/icons/2x/icon_spatial_material.png b/editor/icons/2x/icon_spatial_material.png deleted file mode 100644 index 68f6cf8dac8..00000000000 Binary files a/editor/icons/2x/icon_spatial_material.png and /dev/null differ diff --git a/editor/icons/2x/icon_spatial_sample_player.png b/editor/icons/2x/icon_spatial_sample_player.png deleted file mode 100644 index f1926c446e6..00000000000 Binary files a/editor/icons/2x/icon_spatial_sample_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_spatial_shader.png b/editor/icons/2x/icon_spatial_shader.png deleted file mode 100644 index 68f6cf8dac8..00000000000 Binary files a/editor/icons/2x/icon_spatial_shader.png and /dev/null differ diff --git a/editor/icons/2x/icon_spatial_stream_player.png b/editor/icons/2x/icon_spatial_stream_player.png deleted file mode 100644 index 835c5c0bbc1..00000000000 Binary files a/editor/icons/2x/icon_spatial_stream_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_sphere_mesh.png b/editor/icons/2x/icon_sphere_mesh.png deleted file mode 100644 index 29b01ebd1b1..00000000000 Binary files a/editor/icons/2x/icon_sphere_mesh.png and /dev/null differ diff --git a/editor/icons/2x/icon_sphere_shape.png b/editor/icons/2x/icon_sphere_shape.png deleted file mode 100644 index bdb7881e70b..00000000000 Binary files a/editor/icons/2x/icon_sphere_shape.png and /dev/null differ diff --git a/editor/icons/2x/icon_spin_box.png b/editor/icons/2x/icon_spin_box.png deleted file mode 100644 index 3d12664b862..00000000000 Binary files a/editor/icons/2x/icon_spin_box.png and /dev/null differ diff --git a/editor/icons/2x/icon_spinbox_updown.png b/editor/icons/2x/icon_spinbox_updown.png deleted file mode 100644 index e711fbf08bf..00000000000 Binary files a/editor/icons/2x/icon_spinbox_updown.png and /dev/null differ diff --git a/editor/icons/2x/icon_spot_light.png b/editor/icons/2x/icon_spot_light.png deleted file mode 100644 index e7aa35cbbfd..00000000000 Binary files a/editor/icons/2x/icon_spot_light.png and /dev/null differ diff --git a/editor/icons/2x/icon_sprite.png b/editor/icons/2x/icon_sprite.png deleted file mode 100644 index 3f18d313e7c..00000000000 Binary files a/editor/icons/2x/icon_sprite.png and /dev/null differ diff --git a/editor/icons/2x/icon_sprite_3d.png b/editor/icons/2x/icon_sprite_3d.png deleted file mode 100644 index d3a491b9ee1..00000000000 Binary files a/editor/icons/2x/icon_sprite_3d.png and /dev/null differ diff --git a/editor/icons/2x/icon_sprite_frames.png b/editor/icons/2x/icon_sprite_frames.png deleted file mode 100644 index 263f5c4aad9..00000000000 Binary files a/editor/icons/2x/icon_sprite_frames.png and /dev/null differ diff --git a/editor/icons/2x/icon_static_body.png b/editor/icons/2x/icon_static_body.png deleted file mode 100644 index 74f65ef4902..00000000000 Binary files a/editor/icons/2x/icon_static_body.png and /dev/null differ diff --git a/editor/icons/2x/icon_static_body_2d.png b/editor/icons/2x/icon_static_body_2d.png deleted file mode 100644 index 220c829edd5..00000000000 Binary files a/editor/icons/2x/icon_static_body_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_stream_player.png b/editor/icons/2x/icon_stream_player.png deleted file mode 100644 index 8ff471cb8a6..00000000000 Binary files a/editor/icons/2x/icon_stream_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_stream_texture.png b/editor/icons/2x/icon_stream_texture.png deleted file mode 100644 index 85cc3e7206e..00000000000 Binary files a/editor/icons/2x/icon_stream_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_string.png b/editor/icons/2x/icon_string.png deleted file mode 100644 index e25a81f24e2..00000000000 Binary files a/editor/icons/2x/icon_string.png and /dev/null differ diff --git a/editor/icons/2x/icon_style_box_empty.png b/editor/icons/2x/icon_style_box_empty.png deleted file mode 100644 index e790af4de4e..00000000000 Binary files a/editor/icons/2x/icon_style_box_empty.png and /dev/null differ diff --git a/editor/icons/2x/icon_style_box_flat.png b/editor/icons/2x/icon_style_box_flat.png deleted file mode 100644 index 1cd5c7f69a3..00000000000 Binary files a/editor/icons/2x/icon_style_box_flat.png and /dev/null differ diff --git a/editor/icons/2x/icon_style_box_texture.png b/editor/icons/2x/icon_style_box_texture.png deleted file mode 100644 index a93e0228bd7..00000000000 Binary files a/editor/icons/2x/icon_style_box_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_tab_container.png b/editor/icons/2x/icon_tab_container.png deleted file mode 100644 index 93b7161a699..00000000000 Binary files a/editor/icons/2x/icon_tab_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_tab_menu.png b/editor/icons/2x/icon_tab_menu.png deleted file mode 100644 index becad9db764..00000000000 Binary files a/editor/icons/2x/icon_tab_menu.png and /dev/null differ diff --git a/editor/icons/2x/icon_tabs.png b/editor/icons/2x/icon_tabs.png deleted file mode 100644 index af61bc5ab15..00000000000 Binary files a/editor/icons/2x/icon_tabs.png and /dev/null differ diff --git a/editor/icons/2x/icon_test_cube.png b/editor/icons/2x/icon_test_cube.png deleted file mode 100644 index f2e523be3fe..00000000000 Binary files a/editor/icons/2x/icon_test_cube.png and /dev/null differ diff --git a/editor/icons/2x/icon_text_edit.png b/editor/icons/2x/icon_text_edit.png deleted file mode 100644 index 4fd92e518ea..00000000000 Binary files a/editor/icons/2x/icon_text_edit.png and /dev/null differ diff --git a/editor/icons/2x/icon_texture.png b/editor/icons/2x/icon_texture.png deleted file mode 100644 index ad5d04dfeec..00000000000 Binary files a/editor/icons/2x/icon_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_texture_button.png b/editor/icons/2x/icon_texture_button.png deleted file mode 100644 index 84494209d7a..00000000000 Binary files a/editor/icons/2x/icon_texture_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_texture_progress.png b/editor/icons/2x/icon_texture_progress.png deleted file mode 100644 index c11c1bbe4b4..00000000000 Binary files a/editor/icons/2x/icon_texture_progress.png and /dev/null differ diff --git a/editor/icons/2x/icon_texture_rect.png b/editor/icons/2x/icon_texture_rect.png deleted file mode 100644 index 4eba75c4e7d..00000000000 Binary files a/editor/icons/2x/icon_texture_rect.png and /dev/null differ diff --git a/editor/icons/2x/icon_theme.png b/editor/icons/2x/icon_theme.png deleted file mode 100644 index 55b51428dde..00000000000 Binary files a/editor/icons/2x/icon_theme.png and /dev/null differ diff --git a/editor/icons/2x/icon_tile_map.png b/editor/icons/2x/icon_tile_map.png deleted file mode 100644 index fd98fb6a39f..00000000000 Binary files a/editor/icons/2x/icon_tile_map.png and /dev/null differ diff --git a/editor/icons/2x/icon_tile_set.png b/editor/icons/2x/icon_tile_set.png deleted file mode 100644 index 9fbd0b4719e..00000000000 Binary files a/editor/icons/2x/icon_tile_set.png and /dev/null differ diff --git a/editor/icons/2x/icon_timer.png b/editor/icons/2x/icon_timer.png deleted file mode 100644 index bc07f418283..00000000000 Binary files a/editor/icons/2x/icon_timer.png and /dev/null differ diff --git a/editor/icons/2x/icon_tool_button.png b/editor/icons/2x/icon_tool_button.png deleted file mode 100644 index b9dd65518f5..00000000000 Binary files a/editor/icons/2x/icon_tool_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_tool_move.png b/editor/icons/2x/icon_tool_move.png deleted file mode 100644 index 86419cb6a93..00000000000 Binary files a/editor/icons/2x/icon_tool_move.png and /dev/null differ diff --git a/editor/icons/2x/icon_tool_pan.png b/editor/icons/2x/icon_tool_pan.png deleted file mode 100644 index b7a6c3566f2..00000000000 Binary files a/editor/icons/2x/icon_tool_pan.png and /dev/null differ diff --git a/editor/icons/2x/icon_tool_rotate.png b/editor/icons/2x/icon_tool_rotate.png deleted file mode 100644 index b13c8581245..00000000000 Binary files a/editor/icons/2x/icon_tool_rotate.png and /dev/null differ diff --git a/editor/icons/2x/icon_tool_scale.png b/editor/icons/2x/icon_tool_scale.png deleted file mode 100644 index 1bc29f4acc2..00000000000 Binary files a/editor/icons/2x/icon_tool_scale.png and /dev/null differ diff --git a/editor/icons/2x/icon_tool_select.png b/editor/icons/2x/icon_tool_select.png deleted file mode 100644 index 7421b98ef69..00000000000 Binary files a/editor/icons/2x/icon_tool_select.png and /dev/null differ diff --git a/editor/icons/2x/icon_tools.png b/editor/icons/2x/icon_tools.png deleted file mode 100644 index be76e8fc3a5..00000000000 Binary files a/editor/icons/2x/icon_tools.png and /dev/null differ diff --git a/editor/icons/2x/icon_touch_screen_button.png b/editor/icons/2x/icon_touch_screen_button.png deleted file mode 100644 index b1af644e421..00000000000 Binary files a/editor/icons/2x/icon_touch_screen_button.png and /dev/null differ diff --git a/editor/icons/2x/icon_track_add_key.png b/editor/icons/2x/icon_track_add_key.png deleted file mode 100644 index 9b7bd14fb47..00000000000 Binary files a/editor/icons/2x/icon_track_add_key.png and /dev/null differ diff --git a/editor/icons/2x/icon_track_add_key_hl.png b/editor/icons/2x/icon_track_add_key_hl.png deleted file mode 100644 index 0763836c3a1..00000000000 Binary files a/editor/icons/2x/icon_track_add_key_hl.png and /dev/null differ diff --git a/editor/icons/2x/icon_track_continuous.png b/editor/icons/2x/icon_track_continuous.png deleted file mode 100644 index 5b4515f6423..00000000000 Binary files a/editor/icons/2x/icon_track_continuous.png and /dev/null differ diff --git a/editor/icons/2x/icon_track_discrete.png b/editor/icons/2x/icon_track_discrete.png deleted file mode 100644 index 19f479657bf..00000000000 Binary files a/editor/icons/2x/icon_track_discrete.png and /dev/null differ diff --git a/editor/icons/2x/icon_track_trigger.png b/editor/icons/2x/icon_track_trigger.png deleted file mode 100644 index c04d47f9a46..00000000000 Binary files a/editor/icons/2x/icon_track_trigger.png and /dev/null differ diff --git a/editor/icons/2x/icon_translation.png b/editor/icons/2x/icon_translation.png deleted file mode 100644 index 0ddc1da2821..00000000000 Binary files a/editor/icons/2x/icon_translation.png and /dev/null differ diff --git a/editor/icons/2x/icon_transparent.png b/editor/icons/2x/icon_transparent.png deleted file mode 100644 index 627607039b6..00000000000 Binary files a/editor/icons/2x/icon_transparent.png and /dev/null differ diff --git a/editor/icons/2x/icon_transpose.png b/editor/icons/2x/icon_transpose.png deleted file mode 100644 index 589dc549198..00000000000 Binary files a/editor/icons/2x/icon_transpose.png and /dev/null differ diff --git a/editor/icons/2x/icon_tree.png b/editor/icons/2x/icon_tree.png deleted file mode 100644 index 7fb4f97f830..00000000000 Binary files a/editor/icons/2x/icon_tree.png and /dev/null differ diff --git a/editor/icons/2x/icon_tree_arrow_down.png b/editor/icons/2x/icon_tree_arrow_down.png deleted file mode 100644 index 00012dea390..00000000000 Binary files a/editor/icons/2x/icon_tree_arrow_down.png and /dev/null differ diff --git a/editor/icons/2x/icon_tree_arrow_right.png b/editor/icons/2x/icon_tree_arrow_right.png deleted file mode 100644 index baaf0167843..00000000000 Binary files a/editor/icons/2x/icon_tree_arrow_right.png and /dev/null differ diff --git a/editor/icons/2x/icon_tween.png b/editor/icons/2x/icon_tween.png deleted file mode 100644 index 1f020a0e797..00000000000 Binary files a/editor/icons/2x/icon_tween.png and /dev/null differ diff --git a/editor/icons/2x/icon_unbone.png b/editor/icons/2x/icon_unbone.png deleted file mode 100644 index c20d6d9b2c7..00000000000 Binary files a/editor/icons/2x/icon_unbone.png and /dev/null differ diff --git a/editor/icons/2x/icon_unchecked.png b/editor/icons/2x/icon_unchecked.png deleted file mode 100644 index cd8b7810001..00000000000 Binary files a/editor/icons/2x/icon_unchecked.png and /dev/null differ diff --git a/editor/icons/2x/icon_ungroup.png b/editor/icons/2x/icon_ungroup.png deleted file mode 100644 index bb461853708..00000000000 Binary files a/editor/icons/2x/icon_ungroup.png and /dev/null differ diff --git a/editor/icons/2x/icon_uninstance.png b/editor/icons/2x/icon_uninstance.png deleted file mode 100644 index bf3dc00368a..00000000000 Binary files a/editor/icons/2x/icon_uninstance.png and /dev/null differ diff --git a/editor/icons/2x/icon_unlock.png b/editor/icons/2x/icon_unlock.png deleted file mode 100644 index 40ff3f25a09..00000000000 Binary files a/editor/icons/2x/icon_unlock.png and /dev/null differ diff --git a/editor/icons/2x/icon_uv.png b/editor/icons/2x/icon_uv.png deleted file mode 100644 index e06be54edd1..00000000000 Binary files a/editor/icons/2x/icon_uv.png and /dev/null differ diff --git a/editor/icons/2x/icon_v_box_container.png b/editor/icons/2x/icon_v_box_container.png deleted file mode 100644 index 97eb18c528a..00000000000 Binary files a/editor/icons/2x/icon_v_box_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_v_button_array.png b/editor/icons/2x/icon_v_button_array.png deleted file mode 100644 index c91d7ec1cbd..00000000000 Binary files a/editor/icons/2x/icon_v_button_array.png and /dev/null differ diff --git a/editor/icons/2x/icon_v_scroll_bar.png b/editor/icons/2x/icon_v_scroll_bar.png deleted file mode 100644 index 2601f681b7f..00000000000 Binary files a/editor/icons/2x/icon_v_scroll_bar.png and /dev/null differ diff --git a/editor/icons/2x/icon_v_separator.png b/editor/icons/2x/icon_v_separator.png deleted file mode 100644 index 58cdc3e8ded..00000000000 Binary files a/editor/icons/2x/icon_v_separator.png and /dev/null differ diff --git a/editor/icons/2x/icon_v_slider.png b/editor/icons/2x/icon_v_slider.png deleted file mode 100644 index fb7d8c2e565..00000000000 Binary files a/editor/icons/2x/icon_v_slider.png and /dev/null differ diff --git a/editor/icons/2x/icon_v_split_container.png b/editor/icons/2x/icon_v_split_container.png deleted file mode 100644 index b0f68381fc9..00000000000 Binary files a/editor/icons/2x/icon_v_split_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_variant.png b/editor/icons/2x/icon_variant.png deleted file mode 100644 index bb8075a0694..00000000000 Binary files a/editor/icons/2x/icon_variant.png and /dev/null differ diff --git a/editor/icons/2x/icon_vector.png b/editor/icons/2x/icon_vector.png deleted file mode 100644 index 9950d950ac3..00000000000 Binary files a/editor/icons/2x/icon_vector.png and /dev/null differ diff --git a/editor/icons/2x/icon_vector2.png b/editor/icons/2x/icon_vector2.png deleted file mode 100644 index 73c1ca007fc..00000000000 Binary files a/editor/icons/2x/icon_vector2.png and /dev/null differ diff --git a/editor/icons/2x/icon_vehicle_body.png b/editor/icons/2x/icon_vehicle_body.png deleted file mode 100644 index 215f7ac0211..00000000000 Binary files a/editor/icons/2x/icon_vehicle_body.png and /dev/null differ diff --git a/editor/icons/2x/icon_vehicle_wheel.png b/editor/icons/2x/icon_vehicle_wheel.png deleted file mode 100644 index 6f7fecac4a6..00000000000 Binary files a/editor/icons/2x/icon_vehicle_wheel.png and /dev/null differ diff --git a/editor/icons/2x/icon_video_player.png b/editor/icons/2x/icon_video_player.png deleted file mode 100644 index 4c1961f2ae4..00000000000 Binary files a/editor/icons/2x/icon_video_player.png and /dev/null differ diff --git a/editor/icons/2x/icon_viewport.png b/editor/icons/2x/icon_viewport.png deleted file mode 100644 index 7e588333fb3..00000000000 Binary files a/editor/icons/2x/icon_viewport.png and /dev/null differ diff --git a/editor/icons/2x/icon_viewport_container.png b/editor/icons/2x/icon_viewport_container.png deleted file mode 100644 index c43e53c34eb..00000000000 Binary files a/editor/icons/2x/icon_viewport_container.png and /dev/null differ diff --git a/editor/icons/2x/icon_viewport_sprite.png b/editor/icons/2x/icon_viewport_sprite.png deleted file mode 100644 index adb336103fc..00000000000 Binary files a/editor/icons/2x/icon_viewport_sprite.png and /dev/null differ diff --git a/editor/icons/2x/icon_viewport_texture.png b/editor/icons/2x/icon_viewport_texture.png deleted file mode 100644 index f798f1d221b..00000000000 Binary files a/editor/icons/2x/icon_viewport_texture.png and /dev/null differ diff --git a/editor/icons/2x/icon_visibility_enabler.png b/editor/icons/2x/icon_visibility_enabler.png deleted file mode 100644 index 4be06a5123e..00000000000 Binary files a/editor/icons/2x/icon_visibility_enabler.png and /dev/null differ diff --git a/editor/icons/2x/icon_visibility_enabler_2d.png b/editor/icons/2x/icon_visibility_enabler_2d.png deleted file mode 100644 index 3d592e89830..00000000000 Binary files a/editor/icons/2x/icon_visibility_enabler_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_visibility_notifier.png b/editor/icons/2x/icon_visibility_notifier.png deleted file mode 100644 index aa73402d8e7..00000000000 Binary files a/editor/icons/2x/icon_visibility_notifier.png and /dev/null differ diff --git a/editor/icons/2x/icon_visibility_notifier_2d.png b/editor/icons/2x/icon_visibility_notifier_2d.png deleted file mode 100644 index 5f3b7ecf42d..00000000000 Binary files a/editor/icons/2x/icon_visibility_notifier_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_visible.png b/editor/icons/2x/icon_visible.png deleted file mode 100644 index 761ff12c66e..00000000000 Binary files a/editor/icons/2x/icon_visible.png and /dev/null differ diff --git a/editor/icons/2x/icon_visual_script.png b/editor/icons/2x/icon_visual_script.png deleted file mode 100644 index eefd214811b..00000000000 Binary files a/editor/icons/2x/icon_visual_script.png and /dev/null differ diff --git a/editor/icons/2x/icon_visual_shader_port.png b/editor/icons/2x/icon_visual_shader_port.png deleted file mode 100644 index 3f9bf96b017..00000000000 Binary files a/editor/icons/2x/icon_visual_shader_port.png and /dev/null differ diff --git a/editor/icons/2x/icon_vslider_bg.png b/editor/icons/2x/icon_vslider_bg.png deleted file mode 100644 index a7e0e785648..00000000000 Binary files a/editor/icons/2x/icon_vslider_bg.png and /dev/null differ diff --git a/editor/icons/2x/icon_vu_empty.png b/editor/icons/2x/icon_vu_empty.png deleted file mode 100644 index 7ecf215933e..00000000000 Binary files a/editor/icons/2x/icon_vu_empty.png and /dev/null differ diff --git a/editor/icons/2x/icon_vu_full.png b/editor/icons/2x/icon_vu_full.png deleted file mode 100644 index cfd29fa8330..00000000000 Binary files a/editor/icons/2x/icon_vu_full.png and /dev/null differ diff --git a/editor/icons/2x/icon_warning.png b/editor/icons/2x/icon_warning.png deleted file mode 100644 index e953c02ce36..00000000000 Binary files a/editor/icons/2x/icon_warning.png and /dev/null differ diff --git a/editor/icons/2x/icon_window_dialog.png b/editor/icons/2x/icon_window_dialog.png deleted file mode 100644 index 995381ed5f9..00000000000 Binary files a/editor/icons/2x/icon_window_dialog.png and /dev/null differ diff --git a/editor/icons/2x/icon_world.png b/editor/icons/2x/icon_world.png deleted file mode 100644 index 51b587c01ec..00000000000 Binary files a/editor/icons/2x/icon_world.png and /dev/null differ diff --git a/editor/icons/2x/icon_world_2d.png b/editor/icons/2x/icon_world_2d.png deleted file mode 100644 index e9cfa10461c..00000000000 Binary files a/editor/icons/2x/icon_world_2d.png and /dev/null differ diff --git a/editor/icons/2x/icon_world_environment.png b/editor/icons/2x/icon_world_environment.png deleted file mode 100644 index c680dd99bda..00000000000 Binary files a/editor/icons/2x/icon_world_environment.png and /dev/null differ diff --git a/editor/icons/2x/icon_y_sort.png b/editor/icons/2x/icon_y_sort.png deleted file mode 100644 index a38cbbe8639..00000000000 Binary files a/editor/icons/2x/icon_y_sort.png and /dev/null differ diff --git a/editor/icons/2x/icon_zoom.png b/editor/icons/2x/icon_zoom.png deleted file mode 100644 index 0de25b4db71..00000000000 Binary files a/editor/icons/2x/icon_zoom.png and /dev/null differ diff --git a/editor/icons/2x/icon_zoom_less.png b/editor/icons/2x/icon_zoom_less.png deleted file mode 100644 index d483db55cec..00000000000 Binary files a/editor/icons/2x/icon_zoom_less.png and /dev/null differ diff --git a/editor/icons/2x/icon_zoom_more.png b/editor/icons/2x/icon_zoom_more.png deleted file mode 100644 index 8f9ef778495..00000000000 Binary files a/editor/icons/2x/icon_zoom_more.png and /dev/null differ diff --git a/editor/icons/2x/icon_zoom_reset.png b/editor/icons/2x/icon_zoom_reset.png deleted file mode 100644 index 092215b3e28..00000000000 Binary files a/editor/icons/2x/icon_zoom_reset.png and /dev/null differ diff --git a/editor/icons/SCsub b/editor/icons/SCsub index 182624a80df..564188f315c 100644 --- a/editor/icons/SCsub +++ b/editor/icons/SCsub @@ -9,88 +9,84 @@ def make_editor_icons_action(target, source, env): import cStringIO dst = target[0].srcnode().abspath - pixmaps = source + svg_icons = source + + whites = cStringIO.StringIO() + darks = cStringIO.StringIO() + + for f in svg_icons: + + fname = str(f) + + whites.write('\t"') + darks.write('\t"') + + with open(fname, 'rb') as svgf: + b = svgf.read(1) + while(len(b) == 1): + whites.write("\\" + str(hex(ord(b)))[1:]) + b = svgf.read(1) + try: + with open(os.path.dirname(fname) + "/dark/" + os.path.basename(fname), 'rb') as svgf: + b = svgf.read(1) + while(len(b) == 1): + darks.write("\\" + str(hex(ord(b)))[1:]) + b = svgf.read(1) + except IOError: + with open(fname, 'rb') as svgf: + b = svgf.read(1) + while(len(b) == 1): + darks.write("\\" + str(hex(ord(b)))[1:]) + b = svgf.read(1) + + + whites.write('"') + darks.write('"') + if fname != svg_icons[-1]: + whites.write(",") + darks.write(",") + whites.write('\n') + darks.write('\n') s = cStringIO.StringIO() + s.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n") + s.write("#ifndef _EDITOR_ICONS_H\n") + s.write("#define _EDITOR_ICONS_H\n") + s.write("static const int editor_icons_count = %s;\n" % len(svg_icons)) + s.write("static const char *editor_icons_sources[] = {\n") + s.write(whites.getvalue()) + s.write('};\n\n') + s.write("static const char *editor_icons_sources_dark[] = {\n") + s.write(darks.getvalue()) + s.write('};\n\n') + s.write("static const char *editor_icons_names[] = {\n") + for f in svg_icons: - s.write("#include \"editor_icons.h\"\n\n") - s.write("#include \"editor_scale.h\"\n\n") - s.write("#include \"scene/resources/theme.h\"\n\n") + fname = str(f) - hidpi_list = [] + icon_name = os.path.basename(fname)[5:-4].title().replace("_", "") - for x in pixmaps: + s.write('\t"%s"' % icon_name) - x = str(x) - var_str = os.path.basename(x)[:-4] + "_png" - # print(var_str) + if fname != svg_icons[-1]: + s.write(",") + s.write('\n') + s.write('};\n') + s.write("#endif\n") - s.write("static const unsigned char " + var_str + "[]={\n") - - pngf = open(x, "rb") - - b = pngf.read(1) - while(len(b) == 1): - s.write(hex(ord(b))) - b = pngf.read(1) - if (len(b) == 1): - s.write(",") - - s.write("\n};\n\n") - - pngf.close() - var_str = os.path.basename(x)[:-4] + "_hidpi_png" - try: - - pngf = open(os.path.dirname(x) + "/2x/" + os.path.basename(x), "rb") - - s.write("static const unsigned char " + var_str + "[]={\n") - - b = pngf.read(1) - while(len(b) == 1): - s.write(hex(ord(b))) - b = pngf.read(1) - if (len(b) == 1): - s.write(",") - - s.write("\n};\n\n\n") - hidpi_list.append(x) - - except: - s.write("static const unsigned char* " + var_str + "=NULL;\n\n\n") - - s.write("static Ref make_icon(const uint8_t* p_png,const uint8_t* p_hidpi_png) {\n") - s.write("\tRef texture( memnew( ImageTexture ) );\n") - s.write("\tbool use_hidpi_image=(editor_get_scale()>1.0&&p_hidpi_png);\n") - s.write("\tRef img = memnew(Image(use_hidpi_image?p_hidpi_png:p_png));\n") - s.write("\tif (editor_get_scale()>1.0 && !p_hidpi_png) { img->convert(Image::FORMAT_RGBA8); img->expand_x2_hq2x(); use_hidpi_image=true;}\n") - s.write("\timg->resize(img->get_width()*EDSCALE/(use_hidpi_image?2:1),img->get_height()*EDSCALE/(use_hidpi_image?2:1));\n") - s.write("\ttexture->create_from_image( img,ImageTexture::FLAG_FILTER );\n") - s.write("\treturn texture;\n") - s.write("}\n\n") - - s.write("void editor_register_icons(Ref p_theme) {\n\n") - - for x in pixmaps: - - x = os.path.basename(str(x)) - type = x[5:-4].title().replace("_", "") - var_str = x[:-4] + "_png" - var_str_hidpi = x[:-4] + "_hidpi_png" - s.write("\tp_theme->set_icon(\"" + type + "\",\"EditorIcons\",make_icon(" + var_str + "," + var_str_hidpi + "));\n") - - s.write("\n\n}\n\n") f = open(dst, "wb") f.write(s.getvalue()) f.close() s.close() + whites.close() + darks.close() make_editor_icons_builder = Builder(action=make_editor_icons_action, - suffix='.cpp', - src_suffix='.png') + suffix='.h', + src_suffix='.svg') env['BUILDERS']['MakeEditorIconsBuilder'] = make_editor_icons_builder -env.Alias('editor_icons', [env.MakeEditorIconsBuilder('#editor/editor_icons.gen.cpp', Glob("*.png"))]) +env.Alias('editor_icons', [env.MakeEditorIconsBuilder('#editor/editor_icons.gen.h', Glob("*.svg"))]) -env.editor_sources.append("#editor/editor_icons.gen.cpp") +env.editor_sources.append("#editor/editor_icons.gen.h") Export('env') diff --git a/editor/icons/dark/icon_2_d.svg b/editor/icons/dark/icon_2_d.svg new file mode 100644 index 00000000000..2f2bfbff8a6 --- /dev/null +++ b/editor/icons/dark/icon_2_d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_3_d.svg b/editor/icons/dark/icon_3_d.svg new file mode 100644 index 00000000000..be55e1d90fc --- /dev/null +++ b/editor/icons/dark/icon_3_d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_checked.svg b/editor/icons/dark/icon_GUI_checked.svg new file mode 100644 index 00000000000..5ae9a8c57cd --- /dev/null +++ b/editor/icons/dark/icon_GUI_checked.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_dropdown.svg b/editor/icons/dark/icon_GUI_dropdown.svg new file mode 100644 index 00000000000..9115b5d83f7 --- /dev/null +++ b/editor/icons/dark/icon_GUI_dropdown.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_GUI_hslider_bg.svg b/editor/icons/dark/icon_GUI_hslider_bg.svg new file mode 100644 index 00000000000..e298d06c4c7 --- /dev/null +++ b/editor/icons/dark/icon_GUI_hslider_bg.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_hsplitter.svg b/editor/icons/dark/icon_GUI_hsplitter.svg new file mode 100644 index 00000000000..73f3f483d86 --- /dev/null +++ b/editor/icons/dark/icon_GUI_hsplitter.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_mini_tab_menu.svg b/editor/icons/dark/icon_GUI_mini_tab_menu.svg new file mode 100644 index 00000000000..44236ebab9b --- /dev/null +++ b/editor/icons/dark/icon_GUI_mini_tab_menu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_GUI_option_arrow.svg b/editor/icons/dark/icon_GUI_option_arrow.svg new file mode 100644 index 00000000000..2942998a8d6 --- /dev/null +++ b/editor/icons/dark/icon_GUI_option_arrow.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_play_button_group.svg b/editor/icons/dark/icon_GUI_play_button_group.svg new file mode 100644 index 00000000000..1d67816b3a9 --- /dev/null +++ b/editor/icons/dark/icon_GUI_play_button_group.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_progress_bar.svg b/editor/icons/dark/icon_GUI_progress_bar.svg new file mode 100644 index 00000000000..b052cfb50ef --- /dev/null +++ b/editor/icons/dark/icon_GUI_progress_bar.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_progress_fill.svg b/editor/icons/dark/icon_GUI_progress_fill.svg new file mode 100644 index 00000000000..91e6722c337 --- /dev/null +++ b/editor/icons/dark/icon_GUI_progress_fill.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_radio_checked.svg b/editor/icons/dark/icon_GUI_radio_checked.svg new file mode 100644 index 00000000000..5b5fd23a78c --- /dev/null +++ b/editor/icons/dark/icon_GUI_radio_checked.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_GUI_radio_unchecked.svg b/editor/icons/dark/icon_GUI_radio_unchecked.svg new file mode 100644 index 00000000000..f3deacc9925 --- /dev/null +++ b/editor/icons/dark/icon_GUI_radio_unchecked.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_scroll_bg.svg b/editor/icons/dark/icon_GUI_scroll_bg.svg new file mode 100644 index 00000000000..302368b19ab --- /dev/null +++ b/editor/icons/dark/icon_GUI_scroll_bg.svg @@ -0,0 +1 @@ + diff --git a/editor/icons/dark/icon_GUI_scroll_grabber.svg b/editor/icons/dark/icon_GUI_scroll_grabber.svg new file mode 100644 index 00000000000..bf1bc195230 --- /dev/null +++ b/editor/icons/dark/icon_GUI_scroll_grabber.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_scroll_grabber_hl.svg b/editor/icons/dark/icon_GUI_scroll_grabber_hl.svg new file mode 100644 index 00000000000..e165cf3cfbe --- /dev/null +++ b/editor/icons/dark/icon_GUI_scroll_grabber_hl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_scroll_grabber_pressed.svg b/editor/icons/dark/icon_GUI_scroll_grabber_pressed.svg new file mode 100644 index 00000000000..729289e756e --- /dev/null +++ b/editor/icons/dark/icon_GUI_scroll_grabber_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_slider_grabber.svg b/editor/icons/dark/icon_GUI_slider_grabber.svg new file mode 100644 index 00000000000..63332d7da94 --- /dev/null +++ b/editor/icons/dark/icon_GUI_slider_grabber.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_slider_grabber_hl.svg b/editor/icons/dark/icon_GUI_slider_grabber_hl.svg new file mode 100644 index 00000000000..5ba266ce067 --- /dev/null +++ b/editor/icons/dark/icon_GUI_slider_grabber_hl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_GUI_spinbox_updown.svg b/editor/icons/dark/icon_GUI_spinbox_updown.svg new file mode 100644 index 00000000000..94d2044284c --- /dev/null +++ b/editor/icons/dark/icon_GUI_spinbox_updown.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_tab_menu.svg b/editor/icons/dark/icon_GUI_tab_menu.svg new file mode 100644 index 00000000000..70757134259 --- /dev/null +++ b/editor/icons/dark/icon_GUI_tab_menu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_GUI_toggle_off.svg b/editor/icons/dark/icon_GUI_toggle_off.svg new file mode 100644 index 00000000000..bf479e62d73 --- /dev/null +++ b/editor/icons/dark/icon_GUI_toggle_off.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_toggle_on.svg b/editor/icons/dark/icon_GUI_toggle_on.svg new file mode 100644 index 00000000000..b81391c88dc --- /dev/null +++ b/editor/icons/dark/icon_GUI_toggle_on.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_tree_arrow_down.svg b/editor/icons/dark/icon_GUI_tree_arrow_down.svg new file mode 100644 index 00000000000..fc071c84ca9 --- /dev/null +++ b/editor/icons/dark/icon_GUI_tree_arrow_down.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_tree_arrow_right.svg b/editor/icons/dark/icon_GUI_tree_arrow_right.svg new file mode 100644 index 00000000000..ffd84f57744 --- /dev/null +++ b/editor/icons/dark/icon_GUI_tree_arrow_right.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_unchecked.svg b/editor/icons/dark/icon_GUI_unchecked.svg new file mode 100644 index 00000000000..cbf3bd3dc01 --- /dev/null +++ b/editor/icons/dark/icon_GUI_unchecked.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_vslider_bg.svg b/editor/icons/dark/icon_GUI_vslider_bg.svg new file mode 100644 index 00000000000..99d01420b62 --- /dev/null +++ b/editor/icons/dark/icon_GUI_vslider_bg.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_vsplit_bg.svg b/editor/icons/dark/icon_GUI_vsplit_bg.svg new file mode 100644 index 00000000000..8294c446118 --- /dev/null +++ b/editor/icons/dark/icon_GUI_vsplit_bg.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_GUI_vsplitter.svg b/editor/icons/dark/icon_GUI_vsplitter.svg new file mode 100644 index 00000000000..002108a24af --- /dev/null +++ b/editor/icons/dark/icon_GUI_vsplitter.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_accept_dialog.svg b/editor/icons/dark/icon_accept_dialog.svg new file mode 100644 index 00000000000..ad33c8e97f6 --- /dev/null +++ b/editor/icons/dark/icon_accept_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_add.svg b/editor/icons/dark/icon_add.svg new file mode 100644 index 00000000000..762c95df8ff --- /dev/null +++ b/editor/icons/dark/icon_add.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_anchor.svg b/editor/icons/dark/icon_anchor.svg new file mode 100644 index 00000000000..1c00b027d86 --- /dev/null +++ b/editor/icons/dark/icon_anchor.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_animated_sprite.svg b/editor/icons/dark/icon_animated_sprite.svg new file mode 100644 index 00000000000..a90181fa455 --- /dev/null +++ b/editor/icons/dark/icon_animated_sprite.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_animated_sprite_3d.svg b/editor/icons/dark/icon_animated_sprite_3d.svg new file mode 100644 index 00000000000..40dad30a7eb --- /dev/null +++ b/editor/icons/dark/icon_animated_sprite_3d.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_animation.svg b/editor/icons/dark/icon_animation.svg new file mode 100644 index 00000000000..39b7a44d02b --- /dev/null +++ b/editor/icons/dark/icon_animation.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_animation_player.svg b/editor/icons/dark/icon_animation_player.svg new file mode 100644 index 00000000000..4de8694a9b3 --- /dev/null +++ b/editor/icons/dark/icon_animation_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_animation_tree_player.svg b/editor/icons/dark/icon_animation_tree_player.svg new file mode 100644 index 00000000000..c475b16127d --- /dev/null +++ b/editor/icons/dark/icon_animation_tree_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_area.svg b/editor/icons/dark/icon_area.svg new file mode 100644 index 00000000000..ebea4e40084 --- /dev/null +++ b/editor/icons/dark/icon_area.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_area_2d.svg b/editor/icons/dark/icon_area_2d.svg new file mode 100644 index 00000000000..f8d5cddef40 --- /dev/null +++ b/editor/icons/dark/icon_area_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_arrow_left.svg b/editor/icons/dark/icon_arrow_left.svg new file mode 100644 index 00000000000..12d9360c518 --- /dev/null +++ b/editor/icons/dark/icon_arrow_left.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_arrow_right.svg b/editor/icons/dark/icon_arrow_right.svg new file mode 100644 index 00000000000..ca3b4a02678 --- /dev/null +++ b/editor/icons/dark/icon_arrow_right.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_arrow_up.svg b/editor/icons/dark/icon_arrow_up.svg new file mode 100644 index 00000000000..08e77d2c65c --- /dev/null +++ b/editor/icons/dark/icon_arrow_up.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_asset_lib.svg b/editor/icons/dark/icon_asset_lib.svg new file mode 100644 index 00000000000..b9ef0db3169 --- /dev/null +++ b/editor/icons/dark/icon_asset_lib.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_atlas_texture.svg b/editor/icons/dark/icon_atlas_texture.svg new file mode 100644 index 00000000000..1d2de124468 --- /dev/null +++ b/editor/icons/dark/icon_atlas_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_audio_bus_bypass.svg b/editor/icons/dark/icon_audio_bus_bypass.svg new file mode 100644 index 00000000000..d683928e279 --- /dev/null +++ b/editor/icons/dark/icon_audio_bus_bypass.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_audio_bus_layout.svg b/editor/icons/dark/icon_audio_bus_layout.svg new file mode 100644 index 00000000000..c6fa4b21ee9 --- /dev/null +++ b/editor/icons/dark/icon_audio_bus_layout.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_audio_bus_mute.svg b/editor/icons/dark/icon_audio_bus_mute.svg new file mode 100644 index 00000000000..3f8f0888cce --- /dev/null +++ b/editor/icons/dark/icon_audio_bus_mute.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_audio_bus_solo.svg b/editor/icons/dark/icon_audio_bus_solo.svg new file mode 100644 index 00000000000..c4a3f16c04a --- /dev/null +++ b/editor/icons/dark/icon_audio_bus_solo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_audio_effect_amplify.svg b/editor/icons/dark/icon_audio_effect_amplify.svg new file mode 100644 index 00000000000..3a37ae26fd6 --- /dev/null +++ b/editor/icons/dark/icon_audio_effect_amplify.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_audio_stream_gibberish.svg b/editor/icons/dark/icon_audio_stream_gibberish.svg new file mode 100644 index 00000000000..69704c1bbcb --- /dev/null +++ b/editor/icons/dark/icon_audio_stream_gibberish.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_audio_stream_player.svg b/editor/icons/dark/icon_audio_stream_player.svg new file mode 100644 index 00000000000..76fb1d83089 --- /dev/null +++ b/editor/icons/dark/icon_audio_stream_player.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_audio_stream_player_2_d.svg b/editor/icons/dark/icon_audio_stream_player_2_d.svg new file mode 100644 index 00000000000..09b137d901e --- /dev/null +++ b/editor/icons/dark/icon_audio_stream_player_2_d.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_audio_stream_player_3_d.svg b/editor/icons/dark/icon_audio_stream_player_3_d.svg new file mode 100644 index 00000000000..aa2da200dab --- /dev/null +++ b/editor/icons/dark/icon_audio_stream_player_3_d.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_audio_stream_sample.svg b/editor/icons/dark/icon_audio_stream_sample.svg new file mode 100644 index 00000000000..7d99e5405e1 --- /dev/null +++ b/editor/icons/dark/icon_audio_stream_sample.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_auto_play.svg b/editor/icons/dark/icon_auto_play.svg new file mode 100644 index 00000000000..1842a2784c9 --- /dev/null +++ b/editor/icons/dark/icon_auto_play.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_back.svg b/editor/icons/dark/icon_back.svg new file mode 100644 index 00000000000..b28962f3211 --- /dev/null +++ b/editor/icons/dark/icon_back.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_back_buffer_copy.svg b/editor/icons/dark/icon_back_buffer_copy.svg new file mode 100644 index 00000000000..601c1446dfc --- /dev/null +++ b/editor/icons/dark/icon_back_buffer_copy.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_bake.svg b/editor/icons/dark/icon_bake.svg new file mode 100644 index 00000000000..ec1cbc66ae4 --- /dev/null +++ b/editor/icons/dark/icon_bake.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_baked_light.svg b/editor/icons/dark/icon_baked_light.svg new file mode 100644 index 00000000000..d6c6bbf9031 --- /dev/null +++ b/editor/icons/dark/icon_baked_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_baked_light_instance.svg b/editor/icons/dark/icon_baked_light_instance.svg new file mode 100644 index 00000000000..d6c6bbf9031 --- /dev/null +++ b/editor/icons/dark/icon_baked_light_instance.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_baked_light_sampler.svg b/editor/icons/dark/icon_baked_light_sampler.svg new file mode 100644 index 00000000000..a2db34b648d --- /dev/null +++ b/editor/icons/dark/icon_baked_light_sampler.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_bit_map.svg b/editor/icons/dark/icon_bit_map.svg new file mode 100644 index 00000000000..beed73c550a --- /dev/null +++ b/editor/icons/dark/icon_bit_map.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_bitmap_font.svg b/editor/icons/dark/icon_bitmap_font.svg new file mode 100644 index 00000000000..8d38bf76994 --- /dev/null +++ b/editor/icons/dark/icon_bitmap_font.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_blend.svg b/editor/icons/dark/icon_blend.svg new file mode 100644 index 00000000000..9e9b7259ed7 --- /dev/null +++ b/editor/icons/dark/icon_blend.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_bone.svg b/editor/icons/dark/icon_bone.svg new file mode 100644 index 00000000000..43deb5fc4a1 --- /dev/null +++ b/editor/icons/dark/icon_bone.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_bone_attachment.svg b/editor/icons/dark/icon_bone_attachment.svg new file mode 100644 index 00000000000..7209cf603bc --- /dev/null +++ b/editor/icons/dark/icon_bone_attachment.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_bone_track.svg b/editor/icons/dark/icon_bone_track.svg new file mode 100644 index 00000000000..850826ea5e6 --- /dev/null +++ b/editor/icons/dark/icon_bone_track.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_bool.svg b/editor/icons/dark/icon_bool.svg new file mode 100644 index 00000000000..56fcba5833b --- /dev/null +++ b/editor/icons/dark/icon_bool.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_box_shape.svg b/editor/icons/dark/icon_box_shape.svg new file mode 100644 index 00000000000..b11edb16ca7 --- /dev/null +++ b/editor/icons/dark/icon_box_shape.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_bus_vu_db.svg b/editor/icons/dark/icon_bus_vu_db.svg new file mode 100644 index 00000000000..83163a2c28c --- /dev/null +++ b/editor/icons/dark/icon_bus_vu_db.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_bus_vu_empty.svg b/editor/icons/dark/icon_bus_vu_empty.svg new file mode 100644 index 00000000000..15d82744619 --- /dev/null +++ b/editor/icons/dark/icon_bus_vu_empty.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_bus_vu_frozen.svg b/editor/icons/dark/icon_bus_vu_frozen.svg new file mode 100644 index 00000000000..99884d33fc8 --- /dev/null +++ b/editor/icons/dark/icon_bus_vu_frozen.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_bus_vu_full.svg b/editor/icons/dark/icon_bus_vu_full.svg new file mode 100644 index 00000000000..1187841d71b --- /dev/null +++ b/editor/icons/dark/icon_bus_vu_full.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_button.svg b/editor/icons/dark/icon_button.svg new file mode 100644 index 00000000000..078f47b3965 --- /dev/null +++ b/editor/icons/dark/icon_button.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_button_group.svg b/editor/icons/dark/icon_button_group.svg new file mode 100644 index 00000000000..ceb9d3ada81 --- /dev/null +++ b/editor/icons/dark/icon_button_group.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_camera.svg b/editor/icons/dark/icon_camera.svg new file mode 100644 index 00000000000..ee80e38cf26 --- /dev/null +++ b/editor/icons/dark/icon_camera.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_camera_2d.svg b/editor/icons/dark/icon_camera_2d.svg new file mode 100644 index 00000000000..978f5b8964c --- /dev/null +++ b/editor/icons/dark/icon_camera_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_canvas_item.svg b/editor/icons/dark/icon_canvas_item.svg new file mode 100644 index 00000000000..a8c99108677 --- /dev/null +++ b/editor/icons/dark/icon_canvas_item.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_canvas_item_material.svg b/editor/icons/dark/icon_canvas_item_material.svg new file mode 100644 index 00000000000..821d882471d --- /dev/null +++ b/editor/icons/dark/icon_canvas_item_material.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_canvas_item_shader.svg b/editor/icons/dark/icon_canvas_item_shader.svg new file mode 100644 index 00000000000..f1dbc569f44 --- /dev/null +++ b/editor/icons/dark/icon_canvas_item_shader.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_canvas_item_shader_graph.svg b/editor/icons/dark/icon_canvas_item_shader_graph.svg new file mode 100644 index 00000000000..015765c7750 --- /dev/null +++ b/editor/icons/dark/icon_canvas_item_shader_graph.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_canvas_layer.svg b/editor/icons/dark/icon_canvas_layer.svg new file mode 100644 index 00000000000..6a129761009 --- /dev/null +++ b/editor/icons/dark/icon_canvas_layer.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_canvas_modulate.svg b/editor/icons/dark/icon_canvas_modulate.svg new file mode 100644 index 00000000000..997992ef852 --- /dev/null +++ b/editor/icons/dark/icon_canvas_modulate.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_capsule_mesh.svg b/editor/icons/dark/icon_capsule_mesh.svg new file mode 100644 index 00000000000..512a307b9ce --- /dev/null +++ b/editor/icons/dark/icon_capsule_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_capsule_shape.svg b/editor/icons/dark/icon_capsule_shape.svg new file mode 100644 index 00000000000..2940816d605 --- /dev/null +++ b/editor/icons/dark/icon_capsule_shape.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_capsule_shape_2d.svg b/editor/icons/dark/icon_capsule_shape_2d.svg new file mode 100644 index 00000000000..3549a289e01 --- /dev/null +++ b/editor/icons/dark/icon_capsule_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_center_container.svg b/editor/icons/dark/icon_center_container.svg new file mode 100644 index 00000000000..6c847f1db99 --- /dev/null +++ b/editor/icons/dark/icon_center_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_check_box.svg b/editor/icons/dark/icon_check_box.svg new file mode 100644 index 00000000000..0b7bbdb8a68 --- /dev/null +++ b/editor/icons/dark/icon_check_box.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_check_button.svg b/editor/icons/dark/icon_check_button.svg new file mode 100644 index 00000000000..c49beca2626 --- /dev/null +++ b/editor/icons/dark/icon_check_button.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_circle_shape_2d.svg b/editor/icons/dark/icon_circle_shape_2d.svg new file mode 100644 index 00000000000..bfe5aec81a1 --- /dev/null +++ b/editor/icons/dark/icon_circle_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_class_list.svg b/editor/icons/dark/icon_class_list.svg new file mode 100644 index 00000000000..84c80fadeda --- /dev/null +++ b/editor/icons/dark/icon_class_list.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_close.svg b/editor/icons/dark/icon_close.svg new file mode 100644 index 00000000000..351bdc55473 --- /dev/null +++ b/editor/icons/dark/icon_close.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_collapse.svg b/editor/icons/dark/icon_collapse.svg new file mode 100644 index 00000000000..7c9be68c448 --- /dev/null +++ b/editor/icons/dark/icon_collapse.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_collision_2d.svg b/editor/icons/dark/icon_collision_2d.svg new file mode 100644 index 00000000000..a1e6d9fbef7 --- /dev/null +++ b/editor/icons/dark/icon_collision_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_collision_polygon.svg b/editor/icons/dark/icon_collision_polygon.svg new file mode 100644 index 00000000000..7b46cf030e4 --- /dev/null +++ b/editor/icons/dark/icon_collision_polygon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_collision_shape.svg b/editor/icons/dark/icon_collision_shape.svg new file mode 100644 index 00000000000..340b182cf56 --- /dev/null +++ b/editor/icons/dark/icon_collision_shape.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_collision_shape_2d.svg b/editor/icons/dark/icon_collision_shape_2d.svg new file mode 100644 index 00000000000..5e672ab1a8c --- /dev/null +++ b/editor/icons/dark/icon_collision_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_color.svg b/editor/icons/dark/icon_color.svg new file mode 100644 index 00000000000..4a6b3548493 --- /dev/null +++ b/editor/icons/dark/icon_color.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_color_pick.svg b/editor/icons/dark/icon_color_pick.svg new file mode 100644 index 00000000000..e2a9f30853d --- /dev/null +++ b/editor/icons/dark/icon_color_pick.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_color_picker.svg b/editor/icons/dark/icon_color_picker.svg new file mode 100644 index 00000000000..775678e6440 --- /dev/null +++ b/editor/icons/dark/icon_color_picker.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_color_picker_button.svg b/editor/icons/dark/icon_color_picker_button.svg new file mode 100644 index 00000000000..3b0643ef4ca --- /dev/null +++ b/editor/icons/dark/icon_color_picker_button.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_color_ramp.svg b/editor/icons/dark/icon_color_ramp.svg new file mode 100644 index 00000000000..d05355d8c72 --- /dev/null +++ b/editor/icons/dark/icon_color_ramp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_color_rect.svg b/editor/icons/dark/icon_color_rect.svg new file mode 100644 index 00000000000..ca913c123e0 --- /dev/null +++ b/editor/icons/dark/icon_color_rect.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_concave_polygon_shape.svg b/editor/icons/dark/icon_concave_polygon_shape.svg new file mode 100644 index 00000000000..0df696f8b73 --- /dev/null +++ b/editor/icons/dark/icon_concave_polygon_shape.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_concave_polygon_shape_2d.svg b/editor/icons/dark/icon_concave_polygon_shape_2d.svg new file mode 100644 index 00000000000..3264e69ffc8 --- /dev/null +++ b/editor/icons/dark/icon_concave_polygon_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_cone_twist_joint.svg b/editor/icons/dark/icon_cone_twist_joint.svg new file mode 100644 index 00000000000..1ec0abb8304 --- /dev/null +++ b/editor/icons/dark/icon_cone_twist_joint.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_confirmation_dialog.svg b/editor/icons/dark/icon_confirmation_dialog.svg new file mode 100644 index 00000000000..0520d3101f6 --- /dev/null +++ b/editor/icons/dark/icon_confirmation_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_connect.svg b/editor/icons/dark/icon_connect.svg new file mode 100644 index 00000000000..1c96a195f0d --- /dev/null +++ b/editor/icons/dark/icon_connect.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_connection_and_groups.svg b/editor/icons/dark/icon_connection_and_groups.svg new file mode 100644 index 00000000000..2ae14d9bdda --- /dev/null +++ b/editor/icons/dark/icon_connection_and_groups.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_container.svg b/editor/icons/dark/icon_container.svg new file mode 100644 index 00000000000..07382b3bf76 --- /dev/null +++ b/editor/icons/dark/icon_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_control.svg b/editor/icons/dark/icon_control.svg new file mode 100644 index 00000000000..94518d5d75f --- /dev/null +++ b/editor/icons/dark/icon_control.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_control_align_bottom_center.svg b/editor/icons/dark/icon_control_align_bottom_center.svg new file mode 100644 index 00000000000..9d1219078e9 --- /dev/null +++ b/editor/icons/dark/icon_control_align_bottom_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_bottom_left.svg b/editor/icons/dark/icon_control_align_bottom_left.svg new file mode 100644 index 00000000000..fc8e7adb3e9 --- /dev/null +++ b/editor/icons/dark/icon_control_align_bottom_left.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_bottom_right.svg b/editor/icons/dark/icon_control_align_bottom_right.svg new file mode 100644 index 00000000000..9a9bc0f2ec6 --- /dev/null +++ b/editor/icons/dark/icon_control_align_bottom_right.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_bottom_wide.svg b/editor/icons/dark/icon_control_align_bottom_wide.svg new file mode 100644 index 00000000000..111ea52be7a --- /dev/null +++ b/editor/icons/dark/icon_control_align_bottom_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_center.svg b/editor/icons/dark/icon_control_align_center.svg new file mode 100644 index 00000000000..5dd012c3896 --- /dev/null +++ b/editor/icons/dark/icon_control_align_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_center_left.svg b/editor/icons/dark/icon_control_align_center_left.svg new file mode 100644 index 00000000000..38542419cf2 --- /dev/null +++ b/editor/icons/dark/icon_control_align_center_left.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_control_align_center_right.svg b/editor/icons/dark/icon_control_align_center_right.svg new file mode 100644 index 00000000000..371436a6ad1 --- /dev/null +++ b/editor/icons/dark/icon_control_align_center_right.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_control_align_left_center.svg b/editor/icons/dark/icon_control_align_left_center.svg new file mode 100644 index 00000000000..dbf11be914e --- /dev/null +++ b/editor/icons/dark/icon_control_align_left_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_left_wide.svg b/editor/icons/dark/icon_control_align_left_wide.svg new file mode 100644 index 00000000000..7020a8a406c --- /dev/null +++ b/editor/icons/dark/icon_control_align_left_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_right_center.svg b/editor/icons/dark/icon_control_align_right_center.svg new file mode 100644 index 00000000000..2ce0ebdf30c --- /dev/null +++ b/editor/icons/dark/icon_control_align_right_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_right_wide.svg b/editor/icons/dark/icon_control_align_right_wide.svg new file mode 100644 index 00000000000..0c1713cfe8f --- /dev/null +++ b/editor/icons/dark/icon_control_align_right_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_top_center.svg b/editor/icons/dark/icon_control_align_top_center.svg new file mode 100644 index 00000000000..4b13ab28b9b --- /dev/null +++ b/editor/icons/dark/icon_control_align_top_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_top_left.svg b/editor/icons/dark/icon_control_align_top_left.svg new file mode 100644 index 00000000000..cd06aaad82e --- /dev/null +++ b/editor/icons/dark/icon_control_align_top_left.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_top_right.svg b/editor/icons/dark/icon_control_align_top_right.svg new file mode 100644 index 00000000000..3bbbb89ecae --- /dev/null +++ b/editor/icons/dark/icon_control_align_top_right.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_top_wide.svg b/editor/icons/dark/icon_control_align_top_wide.svg new file mode 100644 index 00000000000..d704d5cc816 --- /dev/null +++ b/editor/icons/dark/icon_control_align_top_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_align_wide.svg b/editor/icons/dark/icon_control_align_wide.svg new file mode 100644 index 00000000000..683504128c4 --- /dev/null +++ b/editor/icons/dark/icon_control_align_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_hcenter_wide.svg b/editor/icons/dark/icon_control_hcenter_wide.svg new file mode 100644 index 00000000000..c96ba7ca110 --- /dev/null +++ b/editor/icons/dark/icon_control_hcenter_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_control_vcenter_wide.svg b/editor/icons/dark/icon_control_vcenter_wide.svg new file mode 100644 index 00000000000..892bfcc50dd --- /dev/null +++ b/editor/icons/dark/icon_control_vcenter_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_convex_polygon_shape.svg b/editor/icons/dark/icon_convex_polygon_shape.svg new file mode 100644 index 00000000000..143780da534 --- /dev/null +++ b/editor/icons/dark/icon_convex_polygon_shape.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_convex_polygon_shape_2d.svg b/editor/icons/dark/icon_convex_polygon_shape_2d.svg new file mode 100644 index 00000000000..5bd177d1c6b --- /dev/null +++ b/editor/icons/dark/icon_convex_polygon_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_copy_node_path.svg b/editor/icons/dark/icon_copy_node_path.svg new file mode 100644 index 00000000000..6716a34f02e --- /dev/null +++ b/editor/icons/dark/icon_copy_node_path.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_create_new_scene_from.svg b/editor/icons/dark/icon_create_new_scene_from.svg new file mode 100644 index 00000000000..5b09b402b06 --- /dev/null +++ b/editor/icons/dark/icon_create_new_scene_from.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_cube_map.svg b/editor/icons/dark/icon_cube_map.svg new file mode 100644 index 00000000000..39c1debecd1 --- /dev/null +++ b/editor/icons/dark/icon_cube_map.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_cube_mesh.svg b/editor/icons/dark/icon_cube_mesh.svg new file mode 100644 index 00000000000..cf5589e942c --- /dev/null +++ b/editor/icons/dark/icon_cube_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_curve.svg b/editor/icons/dark/icon_curve.svg new file mode 100644 index 00000000000..9cc935c38f2 --- /dev/null +++ b/editor/icons/dark/icon_curve.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_curve_2d.svg b/editor/icons/dark/icon_curve_2d.svg new file mode 100644 index 00000000000..9697918d325 --- /dev/null +++ b/editor/icons/dark/icon_curve_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_curve_3d.svg b/editor/icons/dark/icon_curve_3d.svg new file mode 100644 index 00000000000..9aa63ff5379 --- /dev/null +++ b/editor/icons/dark/icon_curve_3d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_curve_close.svg b/editor/icons/dark/icon_curve_close.svg new file mode 100644 index 00000000000..42817f31b01 --- /dev/null +++ b/editor/icons/dark/icon_curve_close.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_curve_constant.svg b/editor/icons/dark/icon_curve_constant.svg new file mode 100644 index 00000000000..08436b14e85 --- /dev/null +++ b/editor/icons/dark/icon_curve_constant.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_curve_create.svg b/editor/icons/dark/icon_curve_create.svg new file mode 100644 index 00000000000..8b2f7edb519 --- /dev/null +++ b/editor/icons/dark/icon_curve_create.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_curve_curve.svg b/editor/icons/dark/icon_curve_curve.svg new file mode 100644 index 00000000000..fdbf9409e50 --- /dev/null +++ b/editor/icons/dark/icon_curve_curve.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_curve_delete.svg b/editor/icons/dark/icon_curve_delete.svg new file mode 100644 index 00000000000..c666b5f6d17 --- /dev/null +++ b/editor/icons/dark/icon_curve_delete.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_curve_edit.svg b/editor/icons/dark/icon_curve_edit.svg new file mode 100644 index 00000000000..f24840f054f --- /dev/null +++ b/editor/icons/dark/icon_curve_edit.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_curve_in.svg b/editor/icons/dark/icon_curve_in.svg new file mode 100644 index 00000000000..a79664642e7 --- /dev/null +++ b/editor/icons/dark/icon_curve_in.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_curve_in_out.svg b/editor/icons/dark/icon_curve_in_out.svg new file mode 100644 index 00000000000..c1b4db7787c --- /dev/null +++ b/editor/icons/dark/icon_curve_in_out.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_curve_linear.svg b/editor/icons/dark/icon_curve_linear.svg new file mode 100644 index 00000000000..21770628a96 --- /dev/null +++ b/editor/icons/dark/icon_curve_linear.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_curve_out.svg b/editor/icons/dark/icon_curve_out.svg new file mode 100644 index 00000000000..69cbef8bce9 --- /dev/null +++ b/editor/icons/dark/icon_curve_out.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_curve_out_in.svg b/editor/icons/dark/icon_curve_out_in.svg new file mode 100644 index 00000000000..833deed675a --- /dev/null +++ b/editor/icons/dark/icon_curve_out_in.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_curve_texture.svg b/editor/icons/dark/icon_curve_texture.svg new file mode 100644 index 00000000000..3648f5c73b3 --- /dev/null +++ b/editor/icons/dark/icon_curve_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_cylinder_mesh.svg b/editor/icons/dark/icon_cylinder_mesh.svg new file mode 100644 index 00000000000..01b6571884b --- /dev/null +++ b/editor/icons/dark/icon_cylinder_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_damped_spring_joint_2d.svg b/editor/icons/dark/icon_damped_spring_joint_2d.svg new file mode 100644 index 00000000000..b3a8e89ef98 --- /dev/null +++ b/editor/icons/dark/icon_damped_spring_joint_2d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_debug.svg b/editor/icons/dark/icon_debug.svg new file mode 100644 index 00000000000..3819c10c187 --- /dev/null +++ b/editor/icons/dark/icon_debug.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_debug_continue.svg b/editor/icons/dark/icon_debug_continue.svg new file mode 100644 index 00000000000..94c14d80dd5 --- /dev/null +++ b/editor/icons/dark/icon_debug_continue.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_debug_next.svg b/editor/icons/dark/icon_debug_next.svg new file mode 100644 index 00000000000..2c1a7d24969 --- /dev/null +++ b/editor/icons/dark/icon_debug_next.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_debug_step.svg b/editor/icons/dark/icon_debug_step.svg new file mode 100644 index 00000000000..ca708b5f355 --- /dev/null +++ b/editor/icons/dark/icon_debug_step.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_dependency_changed.svg b/editor/icons/dark/icon_dependency_changed.svg new file mode 100644 index 00000000000..bba1f032ca3 --- /dev/null +++ b/editor/icons/dark/icon_dependency_changed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_dependency_changed_hl.svg b/editor/icons/dark/icon_dependency_changed_hl.svg new file mode 100644 index 00000000000..b8c45153ca1 --- /dev/null +++ b/editor/icons/dark/icon_dependency_changed_hl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_dependency_local_changed.svg b/editor/icons/dark/icon_dependency_local_changed.svg new file mode 100644 index 00000000000..e6021b9a80c --- /dev/null +++ b/editor/icons/dark/icon_dependency_local_changed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_dependency_local_changed_hl.svg b/editor/icons/dark/icon_dependency_local_changed_hl.svg new file mode 100644 index 00000000000..89d9c663cbe --- /dev/null +++ b/editor/icons/dark/icon_dependency_local_changed_hl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_dependency_ok.svg b/editor/icons/dark/icon_dependency_ok.svg new file mode 100644 index 00000000000..aecdbb63bac --- /dev/null +++ b/editor/icons/dark/icon_dependency_ok.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_dependency_ok_hl.svg b/editor/icons/dark/icon_dependency_ok_hl.svg new file mode 100644 index 00000000000..8de94755b14 --- /dev/null +++ b/editor/icons/dark/icon_dependency_ok_hl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_directional_light.svg b/editor/icons/dark/icon_directional_light.svg new file mode 100644 index 00000000000..a5954655343 --- /dev/null +++ b/editor/icons/dark/icon_directional_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_distraction_free.svg b/editor/icons/dark/icon_distraction_free.svg new file mode 100644 index 00000000000..2ec6f20fd21 --- /dev/null +++ b/editor/icons/dark/icon_distraction_free.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_duplicate.svg b/editor/icons/dark/icon_duplicate.svg new file mode 100644 index 00000000000..9bb1e24b308 --- /dev/null +++ b/editor/icons/dark/icon_duplicate.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_dynamic_font.svg b/editor/icons/dark/icon_dynamic_font.svg new file mode 100644 index 00000000000..a7fb18c9cc3 --- /dev/null +++ b/editor/icons/dark/icon_dynamic_font.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_dynamic_font_data.svg b/editor/icons/dark/icon_dynamic_font_data.svg new file mode 100644 index 00000000000..9655726f114 --- /dev/null +++ b/editor/icons/dark/icon_dynamic_font_data.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_edit.svg b/editor/icons/dark/icon_edit.svg new file mode 100644 index 00000000000..5d03cdfa299 --- /dev/null +++ b/editor/icons/dark/icon_edit.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_edit_key.svg b/editor/icons/dark/icon_edit_key.svg new file mode 100644 index 00000000000..ad4e626ace6 --- /dev/null +++ b/editor/icons/dark/icon_edit_key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_edit_pivot.svg b/editor/icons/dark/icon_edit_pivot.svg new file mode 100644 index 00000000000..bac968e3a22 --- /dev/null +++ b/editor/icons/dark/icon_edit_pivot.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_edit_resource.svg b/editor/icons/dark/icon_edit_resource.svg new file mode 100644 index 00000000000..996b1bf7d62 --- /dev/null +++ b/editor/icons/dark/icon_edit_resource.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_editor_3d_handle.svg b/editor/icons/dark/icon_editor_3d_handle.svg new file mode 100644 index 00000000000..189baf3dad9 --- /dev/null +++ b/editor/icons/dark/icon_editor_3d_handle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_editor_control_anchor.svg b/editor/icons/dark/icon_editor_control_anchor.svg new file mode 100644 index 00000000000..eeee2c182f4 --- /dev/null +++ b/editor/icons/dark/icon_editor_control_anchor.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_editor_handle.svg b/editor/icons/dark/icon_editor_handle.svg new file mode 100644 index 00000000000..7e58aaa8032 --- /dev/null +++ b/editor/icons/dark/icon_editor_handle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_editor_pivot.svg b/editor/icons/dark/icon_editor_pivot.svg new file mode 100644 index 00000000000..d59d2d804d9 --- /dev/null +++ b/editor/icons/dark/icon_editor_pivot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_editor_plugin.svg b/editor/icons/dark/icon_editor_plugin.svg new file mode 100644 index 00000000000..7c919029985 --- /dev/null +++ b/editor/icons/dark/icon_editor_plugin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_environment.svg b/editor/icons/dark/icon_environment.svg new file mode 100644 index 00000000000..833346bd28d --- /dev/null +++ b/editor/icons/dark/icon_environment.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_error.svg b/editor/icons/dark/icon_error.svg new file mode 100644 index 00000000000..ae743285091 --- /dev/null +++ b/editor/icons/dark/icon_error.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_error_sign.svg b/editor/icons/dark/icon_error_sign.svg new file mode 100644 index 00000000000..ae384978a55 --- /dev/null +++ b/editor/icons/dark/icon_error_sign.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_event_player.svg b/editor/icons/dark/icon_event_player.svg new file mode 100644 index 00000000000..2d13800c91d --- /dev/null +++ b/editor/icons/dark/icon_event_player.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_favorites.svg b/editor/icons/dark/icon_favorites.svg new file mode 100644 index 00000000000..3343ca69ec8 --- /dev/null +++ b/editor/icons/dark/icon_favorites.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_file_big.svg b/editor/icons/dark/icon_file_big.svg new file mode 100644 index 00000000000..52c224f6a51 --- /dev/null +++ b/editor/icons/dark/icon_file_big.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_file_dialog.svg b/editor/icons/dark/icon_file_dialog.svg new file mode 100644 index 00000000000..542894b906a --- /dev/null +++ b/editor/icons/dark/icon_file_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_file_list.svg b/editor/icons/dark/icon_file_list.svg new file mode 100644 index 00000000000..12678c28732 --- /dev/null +++ b/editor/icons/dark/icon_file_list.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_file_server.svg b/editor/icons/dark/icon_file_server.svg new file mode 100644 index 00000000000..02bc363c19a --- /dev/null +++ b/editor/icons/dark/icon_file_server.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_file_server_active.svg b/editor/icons/dark/icon_file_server_active.svg new file mode 100644 index 00000000000..ccb9b973366 --- /dev/null +++ b/editor/icons/dark/icon_file_server_active.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_file_thumbnail.svg b/editor/icons/dark/icon_file_thumbnail.svg new file mode 100644 index 00000000000..bd1d4d2fc3e --- /dev/null +++ b/editor/icons/dark/icon_file_thumbnail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_fixed_material.svg b/editor/icons/dark/icon_fixed_material.svg new file mode 100644 index 00000000000..47cf9189d62 --- /dev/null +++ b/editor/icons/dark/icon_fixed_material.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_fixed_spatial_material.svg b/editor/icons/dark/icon_fixed_spatial_material.svg new file mode 100644 index 00000000000..4e634280bf3 --- /dev/null +++ b/editor/icons/dark/icon_fixed_spatial_material.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_folder.svg b/editor/icons/dark/icon_folder.svg new file mode 100644 index 00000000000..a127f00ae15 --- /dev/null +++ b/editor/icons/dark/icon_folder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_folder_big.svg b/editor/icons/dark/icon_folder_big.svg new file mode 100644 index 00000000000..440907e33b7 --- /dev/null +++ b/editor/icons/dark/icon_folder_big.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_font.svg b/editor/icons/dark/icon_font.svg new file mode 100644 index 00000000000..f89b4083835 --- /dev/null +++ b/editor/icons/dark/icon_font.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_forward.svg b/editor/icons/dark/icon_forward.svg new file mode 100644 index 00000000000..a02f36d3146 --- /dev/null +++ b/editor/icons/dark/icon_forward.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_g_d_native_library.svg b/editor/icons/dark/icon_g_d_native_library.svg new file mode 100644 index 00000000000..24a18eceb0d --- /dev/null +++ b/editor/icons/dark/icon_g_d_native_library.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_g_d_script.svg b/editor/icons/dark/icon_g_d_script.svg new file mode 100644 index 00000000000..07718e87b2f --- /dev/null +++ b/editor/icons/dark/icon_g_d_script.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_g_i_probe.svg b/editor/icons/dark/icon_g_i_probe.svg new file mode 100644 index 00000000000..d88cc782adb --- /dev/null +++ b/editor/icons/dark/icon_g_i_probe.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_g_i_probe_data.svg b/editor/icons/dark/icon_g_i_probe_data.svg new file mode 100644 index 00000000000..a7c8253448c --- /dev/null +++ b/editor/icons/dark/icon_g_i_probe_data.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_generic_6_d_o_f_joint.svg b/editor/icons/dark/icon_generic_6_d_o_f_joint.svg new file mode 100644 index 00000000000..e5671afa847 --- /dev/null +++ b/editor/icons/dark/icon_generic_6_d_o_f_joint.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_gizmo_directional_light.svg b/editor/icons/dark/icon_gizmo_directional_light.svg new file mode 100644 index 00000000000..a8739a5a781 --- /dev/null +++ b/editor/icons/dark/icon_gizmo_directional_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_gizmo_light.svg b/editor/icons/dark/icon_gizmo_light.svg new file mode 100644 index 00000000000..c411d13dc7d --- /dev/null +++ b/editor/icons/dark/icon_gizmo_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_gizmo_listener.svg b/editor/icons/dark/icon_gizmo_listener.svg new file mode 100644 index 00000000000..adb6aebaecf --- /dev/null +++ b/editor/icons/dark/icon_gizmo_listener.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_gizmo_spatial_sample_player.svg b/editor/icons/dark/icon_gizmo_spatial_sample_player.svg new file mode 100644 index 00000000000..d40fe230ac5 --- /dev/null +++ b/editor/icons/dark/icon_gizmo_spatial_sample_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_gizmo_spatial_stream_player.svg b/editor/icons/dark/icon_gizmo_spatial_stream_player.svg new file mode 100644 index 00000000000..2cf39663645 --- /dev/null +++ b/editor/icons/dark/icon_gizmo_spatial_stream_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_godot.svg b/editor/icons/dark/icon_godot.svg new file mode 100644 index 00000000000..32a1eeb6ec7 --- /dev/null +++ b/editor/icons/dark/icon_godot.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_gradient.svg b/editor/icons/dark/icon_gradient.svg new file mode 100644 index 00000000000..0fac616d587 --- /dev/null +++ b/editor/icons/dark/icon_gradient.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_gradient_texture.svg b/editor/icons/dark/icon_gradient_texture.svg new file mode 100644 index 00000000000..d98f4c01a08 --- /dev/null +++ b/editor/icons/dark/icon_gradient_texture.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_comment.svg b/editor/icons/dark/icon_graph_comment.svg new file mode 100644 index 00000000000..f3faab0c54d --- /dev/null +++ b/editor/icons/dark/icon_graph_comment.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_cube_uniform.svg b/editor/icons/dark/icon_graph_cube_uniform.svg new file mode 100644 index 00000000000..a7ef1499b5c --- /dev/null +++ b/editor/icons/dark/icon_graph_cube_uniform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_curve_map.svg b/editor/icons/dark/icon_graph_curve_map.svg new file mode 100644 index 00000000000..a5a3184926f --- /dev/null +++ b/editor/icons/dark/icon_graph_curve_map.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_graph_default_texture.svg b/editor/icons/dark/icon_graph_default_texture.svg new file mode 100644 index 00000000000..0a1a0e9673d --- /dev/null +++ b/editor/icons/dark/icon_graph_default_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_edit.svg b/editor/icons/dark/icon_graph_edit.svg new file mode 100644 index 00000000000..0abd546971d --- /dev/null +++ b/editor/icons/dark/icon_graph_edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_graph_input.svg b/editor/icons/dark/icon_graph_input.svg new file mode 100644 index 00000000000..c5034ecd2cb --- /dev/null +++ b/editor/icons/dark/icon_graph_input.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_node.svg b/editor/icons/dark/icon_graph_node.svg new file mode 100644 index 00000000000..bdeeefb8e48 --- /dev/null +++ b/editor/icons/dark/icon_graph_node.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_graph_rgb.svg b/editor/icons/dark/icon_graph_rgb.svg new file mode 100644 index 00000000000..c7f2402382d --- /dev/null +++ b/editor/icons/dark/icon_graph_rgb.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_rgb_op.svg b/editor/icons/dark/icon_graph_rgb_op.svg new file mode 100644 index 00000000000..8ec7782b474 --- /dev/null +++ b/editor/icons/dark/icon_graph_rgb_op.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_rgb_uniform.svg b/editor/icons/dark/icon_graph_rgb_uniform.svg new file mode 100644 index 00000000000..fb740429e5c --- /dev/null +++ b/editor/icons/dark/icon_graph_rgb_uniform.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_scalar.svg b/editor/icons/dark/icon_graph_scalar.svg new file mode 100644 index 00000000000..ba921a961cd --- /dev/null +++ b/editor/icons/dark/icon_graph_scalar.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_scalar_interp.svg b/editor/icons/dark/icon_graph_scalar_interp.svg new file mode 100644 index 00000000000..edfbe360668 --- /dev/null +++ b/editor/icons/dark/icon_graph_scalar_interp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_scalar_op.svg b/editor/icons/dark/icon_graph_scalar_op.svg new file mode 100644 index 00000000000..34f7d9b2b16 --- /dev/null +++ b/editor/icons/dark/icon_graph_scalar_op.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_graph_scalar_uniform.svg b/editor/icons/dark/icon_graph_scalar_uniform.svg new file mode 100644 index 00000000000..d2ee2ec827a --- /dev/null +++ b/editor/icons/dark/icon_graph_scalar_uniform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_scalars_to_vec.svg b/editor/icons/dark/icon_graph_scalars_to_vec.svg new file mode 100644 index 00000000000..bd3bc0424a0 --- /dev/null +++ b/editor/icons/dark/icon_graph_scalars_to_vec.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_texscreen.svg b/editor/icons/dark/icon_graph_texscreen.svg new file mode 100644 index 00000000000..6c263322038 --- /dev/null +++ b/editor/icons/dark/icon_graph_texscreen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_graph_texture_uniform.svg b/editor/icons/dark/icon_graph_texture_uniform.svg new file mode 100644 index 00000000000..9e727434326 --- /dev/null +++ b/editor/icons/dark/icon_graph_texture_uniform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_time.svg b/editor/icons/dark/icon_graph_time.svg new file mode 100644 index 00000000000..6227b53c62c --- /dev/null +++ b/editor/icons/dark/icon_graph_time.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_graph_vec_dp.svg b/editor/icons/dark/icon_graph_vec_dp.svg new file mode 100644 index 00000000000..0b24b478958 --- /dev/null +++ b/editor/icons/dark/icon_graph_vec_dp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_graph_vec_interp.svg b/editor/icons/dark/icon_graph_vec_interp.svg new file mode 100644 index 00000000000..a3df7ff93dd --- /dev/null +++ b/editor/icons/dark/icon_graph_vec_interp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_vec_length.svg b/editor/icons/dark/icon_graph_vec_length.svg new file mode 100644 index 00000000000..cd2a39312ad --- /dev/null +++ b/editor/icons/dark/icon_graph_vec_length.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_graph_vec_op.svg b/editor/icons/dark/icon_graph_vec_op.svg new file mode 100644 index 00000000000..2792d633786 --- /dev/null +++ b/editor/icons/dark/icon_graph_vec_op.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_vec_scalar_op.svg b/editor/icons/dark/icon_graph_vec_scalar_op.svg new file mode 100644 index 00000000000..effcb596a19 --- /dev/null +++ b/editor/icons/dark/icon_graph_vec_scalar_op.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_graph_vec_to_scalars.svg b/editor/icons/dark/icon_graph_vec_to_scalars.svg new file mode 100644 index 00000000000..2ecacb84340 --- /dev/null +++ b/editor/icons/dark/icon_graph_vec_to_scalars.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_vecs_to_xform.svg b/editor/icons/dark/icon_graph_vecs_to_xform.svg new file mode 100644 index 00000000000..8bd533fbf04 --- /dev/null +++ b/editor/icons/dark/icon_graph_vecs_to_xform.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_vector.svg b/editor/icons/dark/icon_graph_vector.svg new file mode 100644 index 00000000000..81772fa4f52 --- /dev/null +++ b/editor/icons/dark/icon_graph_vector.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_vector_uniform.svg b/editor/icons/dark/icon_graph_vector_uniform.svg new file mode 100644 index 00000000000..66f31bf5dd4 --- /dev/null +++ b/editor/icons/dark/icon_graph_vector_uniform.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_graph_xform.svg b/editor/icons/dark/icon_graph_xform.svg new file mode 100644 index 00000000000..05542856123 --- /dev/null +++ b/editor/icons/dark/icon_graph_xform.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_xform_mult.svg b/editor/icons/dark/icon_graph_xform_mult.svg new file mode 100644 index 00000000000..0e2da7f7c09 --- /dev/null +++ b/editor/icons/dark/icon_graph_xform_mult.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_graph_xform_scalar_func.svg b/editor/icons/dark/icon_graph_xform_scalar_func.svg new file mode 100644 index 00000000000..350d9e98d78 --- /dev/null +++ b/editor/icons/dark/icon_graph_xform_scalar_func.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_xform_to_vecs.svg b/editor/icons/dark/icon_graph_xform_to_vecs.svg new file mode 100644 index 00000000000..6fb5953b95e --- /dev/null +++ b/editor/icons/dark/icon_graph_xform_to_vecs.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_xform_uniform.svg b/editor/icons/dark/icon_graph_xform_uniform.svg new file mode 100644 index 00000000000..9fd8eca5b0b --- /dev/null +++ b/editor/icons/dark/icon_graph_xform_uniform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_graph_xform_vec_func.svg b/editor/icons/dark/icon_graph_xform_vec_func.svg new file mode 100644 index 00000000000..29bff80cd5e --- /dev/null +++ b/editor/icons/dark/icon_graph_xform_vec_func.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_graph_xform_vec_imult.svg b/editor/icons/dark/icon_graph_xform_vec_imult.svg new file mode 100644 index 00000000000..39d0ea46466 --- /dev/null +++ b/editor/icons/dark/icon_graph_xform_vec_imult.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_graph_xform_vec_mult.svg b/editor/icons/dark/icon_graph_xform_vec_mult.svg new file mode 100644 index 00000000000..5f596228554 --- /dev/null +++ b/editor/icons/dark/icon_graph_xform_vec_mult.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_grid.svg b/editor/icons/dark/icon_grid.svg new file mode 100644 index 00000000000..b4c7be46781 --- /dev/null +++ b/editor/icons/dark/icon_grid.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_grid_container.svg b/editor/icons/dark/icon_grid_container.svg new file mode 100644 index 00000000000..c16949a03ac --- /dev/null +++ b/editor/icons/dark/icon_grid_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_grid_map.svg b/editor/icons/dark/icon_grid_map.svg new file mode 100644 index 00000000000..a84cdf99941 --- /dev/null +++ b/editor/icons/dark/icon_grid_map.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_groove_joint_2d.svg b/editor/icons/dark/icon_groove_joint_2d.svg new file mode 100644 index 00000000000..a84c7353008 --- /dev/null +++ b/editor/icons/dark/icon_groove_joint_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_group.svg b/editor/icons/dark/icon_group.svg new file mode 100644 index 00000000000..3c29f58bf5d --- /dev/null +++ b/editor/icons/dark/icon_group.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_groups.svg b/editor/icons/dark/icon_groups.svg new file mode 100644 index 00000000000..cb94b0e4d30 --- /dev/null +++ b/editor/icons/dark/icon_groups.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_gui_close.svg b/editor/icons/dark/icon_gui_close.svg new file mode 100644 index 00000000000..822c59653e4 --- /dev/null +++ b/editor/icons/dark/icon_gui_close.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_h_box_container.svg b/editor/icons/dark/icon_h_box_container.svg new file mode 100644 index 00000000000..b42fb42236e --- /dev/null +++ b/editor/icons/dark/icon_h_box_container.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_h_button_array.svg b/editor/icons/dark/icon_h_button_array.svg new file mode 100644 index 00000000000..99888a9c026 --- /dev/null +++ b/editor/icons/dark/icon_h_button_array.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_h_scroll_bar.svg b/editor/icons/dark/icon_h_scroll_bar.svg new file mode 100644 index 00000000000..69da81e86f3 --- /dev/null +++ b/editor/icons/dark/icon_h_scroll_bar.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_h_separator.svg b/editor/icons/dark/icon_h_separator.svg new file mode 100644 index 00000000000..8b6f12a5aa8 --- /dev/null +++ b/editor/icons/dark/icon_h_separator.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_h_slider.svg b/editor/icons/dark/icon_h_slider.svg new file mode 100644 index 00000000000..8c34f932064 --- /dev/null +++ b/editor/icons/dark/icon_h_slider.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_h_split_container.svg b/editor/icons/dark/icon_h_split_container.svg new file mode 100644 index 00000000000..7ca7c5567f8 --- /dev/null +++ b/editor/icons/dark/icon_h_split_container.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_h_t_t_p_request.svg b/editor/icons/dark/icon_h_t_t_p_request.svg new file mode 100644 index 00000000000..115d88bae8a --- /dev/null +++ b/editor/icons/dark/icon_h_t_t_p_request.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_headphones.svg b/editor/icons/dark/icon_headphones.svg new file mode 100644 index 00000000000..f0c0fd8812c --- /dev/null +++ b/editor/icons/dark/icon_headphones.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_help.svg b/editor/icons/dark/icon_help.svg new file mode 100644 index 00000000000..3c294f92b64 --- /dev/null +++ b/editor/icons/dark/icon_help.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_help_search.svg b/editor/icons/dark/icon_help_search.svg new file mode 100644 index 00000000000..2fea4e2b7de --- /dev/null +++ b/editor/icons/dark/icon_help_search.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_hidden.svg b/editor/icons/dark/icon_hidden.svg new file mode 100644 index 00000000000..e726d8863ec --- /dev/null +++ b/editor/icons/dark/icon_hidden.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_hinge_joint.svg b/editor/icons/dark/icon_hinge_joint.svg new file mode 100644 index 00000000000..b7eddfe22b0 --- /dev/null +++ b/editor/icons/dark/icon_hinge_joint.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_history.svg b/editor/icons/dark/icon_history.svg new file mode 100644 index 00000000000..03c0f199d44 --- /dev/null +++ b/editor/icons/dark/icon_history.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_hsize.svg b/editor/icons/dark/icon_hsize.svg new file mode 100644 index 00000000000..0b5e1c15bbe --- /dev/null +++ b/editor/icons/dark/icon_hsize.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_image.svg b/editor/icons/dark/icon_image.svg new file mode 100644 index 00000000000..6a01dd61389 --- /dev/null +++ b/editor/icons/dark/icon_image.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_image_texture.svg b/editor/icons/dark/icon_image_texture.svg new file mode 100644 index 00000000000..8805df28b95 --- /dev/null +++ b/editor/icons/dark/icon_image_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_immediate_geometry.svg b/editor/icons/dark/icon_immediate_geometry.svg new file mode 100644 index 00000000000..60b0f8ea36d --- /dev/null +++ b/editor/icons/dark/icon_immediate_geometry.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_import_check.svg b/editor/icons/dark/icon_import_check.svg new file mode 100644 index 00000000000..758572899a8 --- /dev/null +++ b/editor/icons/dark/icon_import_check.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_import_fail.svg b/editor/icons/dark/icon_import_fail.svg new file mode 100644 index 00000000000..f7179e1e903 --- /dev/null +++ b/editor/icons/dark/icon_import_fail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_instance.svg b/editor/icons/dark/icon_instance.svg new file mode 100644 index 00000000000..46446b617f3 --- /dev/null +++ b/editor/icons/dark/icon_instance.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_instance_options.svg b/editor/icons/dark/icon_instance_options.svg new file mode 100644 index 00000000000..50444dab547 --- /dev/null +++ b/editor/icons/dark/icon_instance_options.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_integer.svg b/editor/icons/dark/icon_integer.svg new file mode 100644 index 00000000000..bcd952f6355 --- /dev/null +++ b/editor/icons/dark/icon_integer.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_interp_cubic.svg b/editor/icons/dark/icon_interp_cubic.svg new file mode 100644 index 00000000000..35726ce1e95 --- /dev/null +++ b/editor/icons/dark/icon_interp_cubic.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_interp_linear.svg b/editor/icons/dark/icon_interp_linear.svg new file mode 100644 index 00000000000..adc3d8212b8 --- /dev/null +++ b/editor/icons/dark/icon_interp_linear.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_interp_raw.svg b/editor/icons/dark/icon_interp_raw.svg new file mode 100644 index 00000000000..46b8b864675 --- /dev/null +++ b/editor/icons/dark/icon_interp_raw.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_interp_wrap_clamp.svg b/editor/icons/dark/icon_interp_wrap_clamp.svg new file mode 100644 index 00000000000..699266a7c09 --- /dev/null +++ b/editor/icons/dark/icon_interp_wrap_clamp.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_interp_wrap_loop.svg b/editor/icons/dark/icon_interp_wrap_loop.svg new file mode 100644 index 00000000000..a537d02cb45 --- /dev/null +++ b/editor/icons/dark/icon_interp_wrap_loop.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_interpolated_camera.svg b/editor/icons/dark/icon_interpolated_camera.svg new file mode 100644 index 00000000000..4627633ddef --- /dev/null +++ b/editor/icons/dark/icon_interpolated_camera.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_invalid_key.svg b/editor/icons/dark/icon_invalid_key.svg new file mode 100644 index 00000000000..0ff88aa9ee6 --- /dev/null +++ b/editor/icons/dark/icon_invalid_key.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_inverse_kinematics.svg b/editor/icons/dark/icon_inverse_kinematics.svg new file mode 100644 index 00000000000..724d98a6f08 --- /dev/null +++ b/editor/icons/dark/icon_inverse_kinematics.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_item_list.svg b/editor/icons/dark/icon_item_list.svg new file mode 100644 index 00000000000..d5de68a6bff --- /dev/null +++ b/editor/icons/dark/icon_item_list.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_joy_axis.svg b/editor/icons/dark/icon_joy_axis.svg new file mode 100644 index 00000000000..e1d9171dbe0 --- /dev/null +++ b/editor/icons/dark/icon_joy_axis.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_joy_button.svg b/editor/icons/dark/icon_joy_button.svg new file mode 100644 index 00000000000..fd7ca29b776 --- /dev/null +++ b/editor/icons/dark/icon_joy_button.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_joypad.svg b/editor/icons/dark/icon_joypad.svg new file mode 100644 index 00000000000..a6d739c31b9 --- /dev/null +++ b/editor/icons/dark/icon_joypad.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_key.svg b/editor/icons/dark/icon_key.svg new file mode 100644 index 00000000000..a6fb20d1eff --- /dev/null +++ b/editor/icons/dark/icon_key.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_key_hover.svg b/editor/icons/dark/icon_key_hover.svg new file mode 100644 index 00000000000..c38951eae0e --- /dev/null +++ b/editor/icons/dark/icon_key_hover.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_key_invalid.svg b/editor/icons/dark/icon_key_invalid.svg new file mode 100644 index 00000000000..0ff88aa9ee6 --- /dev/null +++ b/editor/icons/dark/icon_key_invalid.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_key_next.svg b/editor/icons/dark/icon_key_next.svg new file mode 100644 index 00000000000..f3ff31f8f9e --- /dev/null +++ b/editor/icons/dark/icon_key_next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_key_selected.svg b/editor/icons/dark/icon_key_selected.svg new file mode 100644 index 00000000000..9d16649c671 --- /dev/null +++ b/editor/icons/dark/icon_key_selected.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_key_value.svg b/editor/icons/dark/icon_key_value.svg new file mode 100644 index 00000000000..7309f498dd0 --- /dev/null +++ b/editor/icons/dark/icon_key_value.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_key_xform.svg b/editor/icons/dark/icon_key_xform.svg new file mode 100644 index 00000000000..6161195b33d --- /dev/null +++ b/editor/icons/dark/icon_key_xform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_keyboard.svg b/editor/icons/dark/icon_keyboard.svg new file mode 100644 index 00000000000..c8d0d6d4b94 --- /dev/null +++ b/editor/icons/dark/icon_keyboard.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_kinematic_body.svg b/editor/icons/dark/icon_kinematic_body.svg new file mode 100644 index 00000000000..a2c85ab7d0c --- /dev/null +++ b/editor/icons/dark/icon_kinematic_body.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_kinematic_body_2d.svg b/editor/icons/dark/icon_kinematic_body_2d.svg new file mode 100644 index 00000000000..c32e0318fa9 --- /dev/null +++ b/editor/icons/dark/icon_kinematic_body_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_label.svg b/editor/icons/dark/icon_label.svg new file mode 100644 index 00000000000..0142250c0aa --- /dev/null +++ b/editor/icons/dark/icon_label.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_large_texture.svg b/editor/icons/dark/icon_large_texture.svg new file mode 100644 index 00000000000..0bb85cbc236 --- /dev/null +++ b/editor/icons/dark/icon_large_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_light_2d.svg b/editor/icons/dark/icon_light_2d.svg new file mode 100644 index 00000000000..814b2325f40 --- /dev/null +++ b/editor/icons/dark/icon_light_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_light_occluder_2d.svg b/editor/icons/dark/icon_light_occluder_2d.svg new file mode 100644 index 00000000000..71099c655bf --- /dev/null +++ b/editor/icons/dark/icon_light_occluder_2d.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_line_2d.svg b/editor/icons/dark/icon_line_2d.svg new file mode 100644 index 00000000000..319d6bdea74 --- /dev/null +++ b/editor/icons/dark/icon_line_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_line_edit.svg b/editor/icons/dark/icon_line_edit.svg new file mode 100644 index 00000000000..0daf666e27c --- /dev/null +++ b/editor/icons/dark/icon_line_edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_line_shape_2d.svg b/editor/icons/dark/icon_line_shape_2d.svg new file mode 100644 index 00000000000..f6c036bb2ea --- /dev/null +++ b/editor/icons/dark/icon_line_shape_2d.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_link_button.svg b/editor/icons/dark/icon_link_button.svg new file mode 100644 index 00000000000..c8d7e1e5c50 --- /dev/null +++ b/editor/icons/dark/icon_link_button.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_list_select.svg b/editor/icons/dark/icon_list_select.svg new file mode 100644 index 00000000000..c0fe4dd7639 --- /dev/null +++ b/editor/icons/dark/icon_list_select.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_listener.svg b/editor/icons/dark/icon_listener.svg new file mode 100644 index 00000000000..5450428686d --- /dev/null +++ b/editor/icons/dark/icon_listener.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_load.svg b/editor/icons/dark/icon_load.svg new file mode 100644 index 00000000000..6cee92ad23d --- /dev/null +++ b/editor/icons/dark/icon_load.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_lock.svg b/editor/icons/dark/icon_lock.svg new file mode 100644 index 00000000000..ea400fbec03 --- /dev/null +++ b/editor/icons/dark/icon_lock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_loop.svg b/editor/icons/dark/icon_loop.svg new file mode 100644 index 00000000000..988ce491f62 --- /dev/null +++ b/editor/icons/dark/icon_loop.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_loop_interpolation.svg b/editor/icons/dark/icon_loop_interpolation.svg new file mode 100644 index 00000000000..dfda7d39baf --- /dev/null +++ b/editor/icons/dark/icon_loop_interpolation.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_main_play.svg b/editor/icons/dark/icon_main_play.svg new file mode 100644 index 00000000000..531d704dacf --- /dev/null +++ b/editor/icons/dark/icon_main_play.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_main_stop.svg b/editor/icons/dark/icon_main_stop.svg new file mode 100644 index 00000000000..1b856b5153e --- /dev/null +++ b/editor/icons/dark/icon_main_stop.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_margin_container.svg b/editor/icons/dark/icon_margin_container.svg new file mode 100644 index 00000000000..71fddc2e951 --- /dev/null +++ b/editor/icons/dark/icon_margin_container.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_material_preview_cube.svg b/editor/icons/dark/icon_material_preview_cube.svg new file mode 100644 index 00000000000..90ee4fa9336 --- /dev/null +++ b/editor/icons/dark/icon_material_preview_cube.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_material_preview_cube_off.svg b/editor/icons/dark/icon_material_preview_cube_off.svg new file mode 100644 index 00000000000..45c013103ba --- /dev/null +++ b/editor/icons/dark/icon_material_preview_cube_off.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_material_preview_light_1.svg b/editor/icons/dark/icon_material_preview_light_1.svg new file mode 100644 index 00000000000..8028b1e798b --- /dev/null +++ b/editor/icons/dark/icon_material_preview_light_1.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_material_preview_light_1_off.svg b/editor/icons/dark/icon_material_preview_light_1_off.svg new file mode 100644 index 00000000000..63a2094e67c --- /dev/null +++ b/editor/icons/dark/icon_material_preview_light_1_off.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_material_preview_light_2.svg b/editor/icons/dark/icon_material_preview_light_2.svg new file mode 100644 index 00000000000..745f943a17c --- /dev/null +++ b/editor/icons/dark/icon_material_preview_light_2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_material_preview_light_2_off.svg b/editor/icons/dark/icon_material_preview_light_2_off.svg new file mode 100644 index 00000000000..283cad00111 --- /dev/null +++ b/editor/icons/dark/icon_material_preview_light_2_off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_material_preview_sphere.svg b/editor/icons/dark/icon_material_preview_sphere.svg new file mode 100644 index 00000000000..a1bf99f9844 --- /dev/null +++ b/editor/icons/dark/icon_material_preview_sphere.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_material_preview_sphere_off.svg b/editor/icons/dark/icon_material_preview_sphere_off.svg new file mode 100644 index 00000000000..57e38534ab6 --- /dev/null +++ b/editor/icons/dark/icon_material_preview_sphere_off.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_matrix.svg b/editor/icons/dark/icon_matrix.svg new file mode 100644 index 00000000000..5e108642792 --- /dev/null +++ b/editor/icons/dark/icon_matrix.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_menu_button.svg b/editor/icons/dark/icon_menu_button.svg new file mode 100644 index 00000000000..752e45f761a --- /dev/null +++ b/editor/icons/dark/icon_menu_button.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_mesh.svg b/editor/icons/dark/icon_mesh.svg new file mode 100644 index 00000000000..455d34b0cb6 --- /dev/null +++ b/editor/icons/dark/icon_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_mesh_instance.svg b/editor/icons/dark/icon_mesh_instance.svg new file mode 100644 index 00000000000..7233e5099e3 --- /dev/null +++ b/editor/icons/dark/icon_mesh_instance.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mesh_library.svg b/editor/icons/dark/icon_mesh_library.svg new file mode 100644 index 00000000000..4c74ec127a6 --- /dev/null +++ b/editor/icons/dark/icon_mesh_library.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_mini_aabb.svg b/editor/icons/dark/icon_mini_aabb.svg new file mode 100644 index 00000000000..d9c710ee1c9 --- /dev/null +++ b/editor/icons/dark/icon_mini_aabb.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_array.svg b/editor/icons/dark/icon_mini_array.svg new file mode 100644 index 00000000000..08ab2e77f83 --- /dev/null +++ b/editor/icons/dark/icon_mini_array.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_basis.svg b/editor/icons/dark/icon_mini_basis.svg new file mode 100644 index 00000000000..e0dc132d12e --- /dev/null +++ b/editor/icons/dark/icon_mini_basis.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_boolean.svg b/editor/icons/dark/icon_mini_boolean.svg new file mode 100644 index 00000000000..b8861c9f175 --- /dev/null +++ b/editor/icons/dark/icon_mini_boolean.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_color.svg b/editor/icons/dark/icon_mini_color.svg new file mode 100644 index 00000000000..77526c4a3cb --- /dev/null +++ b/editor/icons/dark/icon_mini_color.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_mini_color_array.svg b/editor/icons/dark/icon_mini_color_array.svg new file mode 100644 index 00000000000..12494655cef --- /dev/null +++ b/editor/icons/dark/icon_mini_color_array.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_dictionary.svg b/editor/icons/dark/icon_mini_dictionary.svg new file mode 100644 index 00000000000..eb68709c4f9 --- /dev/null +++ b/editor/icons/dark/icon_mini_dictionary.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_float.svg b/editor/icons/dark/icon_mini_float.svg new file mode 100644 index 00000000000..2eb71fd85e3 --- /dev/null +++ b/editor/icons/dark/icon_mini_float.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_float_array.svg b/editor/icons/dark/icon_mini_float_array.svg new file mode 100644 index 00000000000..7d089034614 --- /dev/null +++ b/editor/icons/dark/icon_mini_float_array.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_image.svg b/editor/icons/dark/icon_mini_image.svg new file mode 100644 index 00000000000..a3f273078c4 --- /dev/null +++ b/editor/icons/dark/icon_mini_image.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_input.svg b/editor/icons/dark/icon_mini_input.svg new file mode 100644 index 00000000000..c64db971279 --- /dev/null +++ b/editor/icons/dark/icon_mini_input.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_int_array.svg b/editor/icons/dark/icon_mini_int_array.svg new file mode 100644 index 00000000000..625252bba25 --- /dev/null +++ b/editor/icons/dark/icon_mini_int_array.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_mini_integer.svg b/editor/icons/dark/icon_mini_integer.svg new file mode 100644 index 00000000000..05d09d9823e --- /dev/null +++ b/editor/icons/dark/icon_mini_integer.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_matrix3.svg b/editor/icons/dark/icon_mini_matrix3.svg new file mode 100644 index 00000000000..e0dc132d12e --- /dev/null +++ b/editor/icons/dark/icon_mini_matrix3.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_object.svg b/editor/icons/dark/icon_mini_object.svg new file mode 100644 index 00000000000..8cbbfa28087 --- /dev/null +++ b/editor/icons/dark/icon_mini_object.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_path.svg b/editor/icons/dark/icon_mini_path.svg new file mode 100644 index 00000000000..d09f56e7533 --- /dev/null +++ b/editor/icons/dark/icon_mini_path.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_plane.svg b/editor/icons/dark/icon_mini_plane.svg new file mode 100644 index 00000000000..5d2ee937c00 --- /dev/null +++ b/editor/icons/dark/icon_mini_plane.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_quat.svg b/editor/icons/dark/icon_mini_quat.svg new file mode 100644 index 00000000000..7baaf440895 --- /dev/null +++ b/editor/icons/dark/icon_mini_quat.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_raw_array.svg b/editor/icons/dark/icon_mini_raw_array.svg new file mode 100644 index 00000000000..57a225a19b8 --- /dev/null +++ b/editor/icons/dark/icon_mini_raw_array.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_rect2.svg b/editor/icons/dark/icon_mini_rect2.svg new file mode 100644 index 00000000000..d9e94131859 --- /dev/null +++ b/editor/icons/dark/icon_mini_rect2.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_rid.svg b/editor/icons/dark/icon_mini_rid.svg new file mode 100644 index 00000000000..3fe12d0819d --- /dev/null +++ b/editor/icons/dark/icon_mini_rid.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_string.svg b/editor/icons/dark/icon_mini_string.svg new file mode 100644 index 00000000000..7212058fe6d --- /dev/null +++ b/editor/icons/dark/icon_mini_string.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_string_array.svg b/editor/icons/dark/icon_mini_string_array.svg new file mode 100644 index 00000000000..b64221bd709 --- /dev/null +++ b/editor/icons/dark/icon_mini_string_array.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_transform.svg b/editor/icons/dark/icon_mini_transform.svg new file mode 100644 index 00000000000..43c4bb4a8f6 --- /dev/null +++ b/editor/icons/dark/icon_mini_transform.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_mini_transform2D.svg b/editor/icons/dark/icon_mini_transform2D.svg new file mode 100644 index 00000000000..38921ea85ac --- /dev/null +++ b/editor/icons/dark/icon_mini_transform2D.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_variant.svg b/editor/icons/dark/icon_mini_variant.svg new file mode 100644 index 00000000000..aeb23ed2bc7 --- /dev/null +++ b/editor/icons/dark/icon_mini_variant.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_vector2.svg b/editor/icons/dark/icon_mini_vector2.svg new file mode 100644 index 00000000000..7abc73c41f1 --- /dev/null +++ b/editor/icons/dark/icon_mini_vector2.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_vector2_array.svg b/editor/icons/dark/icon_mini_vector2_array.svg new file mode 100644 index 00000000000..18af4c551de --- /dev/null +++ b/editor/icons/dark/icon_mini_vector2_array.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_vector3.svg b/editor/icons/dark/icon_mini_vector3.svg new file mode 100644 index 00000000000..88b6f1f53c9 --- /dev/null +++ b/editor/icons/dark/icon_mini_vector3.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mini_vector3_array.svg b/editor/icons/dark/icon_mini_vector3_array.svg new file mode 100644 index 00000000000..ffa2be67ec0 --- /dev/null +++ b/editor/icons/dark/icon_mini_vector3_array.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_mirror_x.svg b/editor/icons/dark/icon_mirror_x.svg new file mode 100644 index 00000000000..3e80728396b --- /dev/null +++ b/editor/icons/dark/icon_mirror_x.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_mirror_y.svg b/editor/icons/dark/icon_mirror_y.svg new file mode 100644 index 00000000000..3070219228f --- /dev/null +++ b/editor/icons/dark/icon_mirror_y.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_mouse.svg b/editor/icons/dark/icon_mouse.svg new file mode 100644 index 00000000000..f7490f337ec --- /dev/null +++ b/editor/icons/dark/icon_mouse.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_move_down.svg b/editor/icons/dark/icon_move_down.svg new file mode 100644 index 00000000000..437ae2146f7 --- /dev/null +++ b/editor/icons/dark/icon_move_down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_move_point.svg b/editor/icons/dark/icon_move_point.svg new file mode 100644 index 00000000000..23ffbdfe8d2 --- /dev/null +++ b/editor/icons/dark/icon_move_point.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_move_up.svg b/editor/icons/dark/icon_move_up.svg new file mode 100644 index 00000000000..cf948b75a4d --- /dev/null +++ b/editor/icons/dark/icon_move_up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_multi_edit.svg b/editor/icons/dark/icon_multi_edit.svg new file mode 100644 index 00000000000..a22bf3b8cf8 --- /dev/null +++ b/editor/icons/dark/icon_multi_edit.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_multi_line.svg b/editor/icons/dark/icon_multi_line.svg new file mode 100644 index 00000000000..0dda39baadd --- /dev/null +++ b/editor/icons/dark/icon_multi_line.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_multi_mesh.svg b/editor/icons/dark/icon_multi_mesh.svg new file mode 100644 index 00000000000..50504f99249 --- /dev/null +++ b/editor/icons/dark/icon_multi_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_multi_mesh_instance.svg b/editor/icons/dark/icon_multi_mesh_instance.svg new file mode 100644 index 00000000000..563ec70f324 --- /dev/null +++ b/editor/icons/dark/icon_multi_mesh_instance.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_multi_script.svg b/editor/icons/dark/icon_multi_script.svg new file mode 100644 index 00000000000..a9b577de86a --- /dev/null +++ b/editor/icons/dark/icon_multi_script.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_native_script.svg b/editor/icons/dark/icon_native_script.svg new file mode 100644 index 00000000000..3b88105c24f --- /dev/null +++ b/editor/icons/dark/icon_native_script.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_navigation.svg b/editor/icons/dark/icon_navigation.svg new file mode 100644 index 00000000000..21f2d5e73c1 --- /dev/null +++ b/editor/icons/dark/icon_navigation.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_navigation_2d.svg b/editor/icons/dark/icon_navigation_2d.svg new file mode 100644 index 00000000000..0f945f34021 --- /dev/null +++ b/editor/icons/dark/icon_navigation_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_navigation_mesh.svg b/editor/icons/dark/icon_navigation_mesh.svg new file mode 100644 index 00000000000..84fa1750334 --- /dev/null +++ b/editor/icons/dark/icon_navigation_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_navigation_mesh_instance.svg b/editor/icons/dark/icon_navigation_mesh_instance.svg new file mode 100644 index 00000000000..295bef078f2 --- /dev/null +++ b/editor/icons/dark/icon_navigation_mesh_instance.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_navigation_polygon.svg b/editor/icons/dark/icon_navigation_polygon.svg new file mode 100644 index 00000000000..e3c5183d7b7 --- /dev/null +++ b/editor/icons/dark/icon_navigation_polygon.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_navigation_polygon_instance.svg b/editor/icons/dark/icon_navigation_polygon_instance.svg new file mode 100644 index 00000000000..955fb00c625 --- /dev/null +++ b/editor/icons/dark/icon_navigation_polygon_instance.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_new.svg b/editor/icons/dark/icon_new.svg new file mode 100644 index 00000000000..0c8652f1f72 --- /dev/null +++ b/editor/icons/dark/icon_new.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_nine_patch_rect.svg b/editor/icons/dark/icon_nine_patch_rect.svg new file mode 100644 index 00000000000..0e4a0631960 --- /dev/null +++ b/editor/icons/dark/icon_nine_patch_rect.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_node.svg b/editor/icons/dark/icon_node.svg new file mode 100644 index 00000000000..c5e246e01ac --- /dev/null +++ b/editor/icons/dark/icon_node.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_node_2d.svg b/editor/icons/dark/icon_node_2d.svg new file mode 100644 index 00000000000..55bc880d18b --- /dev/null +++ b/editor/icons/dark/icon_node_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_node_warning.svg b/editor/icons/dark/icon_node_warning.svg new file mode 100644 index 00000000000..981af7e3baf --- /dev/null +++ b/editor/icons/dark/icon_node_warning.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_non_favorite.svg b/editor/icons/dark/icon_non_favorite.svg new file mode 100644 index 00000000000..07090d3e1cc --- /dev/null +++ b/editor/icons/dark/icon_non_favorite.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_object.svg b/editor/icons/dark/icon_object.svg new file mode 100644 index 00000000000..e52f4b75130 --- /dev/null +++ b/editor/icons/dark/icon_object.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_occluder_polygon_2d.svg b/editor/icons/dark/icon_occluder_polygon_2d.svg new file mode 100644 index 00000000000..dce4d0e3cde --- /dev/null +++ b/editor/icons/dark/icon_occluder_polygon_2d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_omni_light.svg b/editor/icons/dark/icon_omni_light.svg new file mode 100644 index 00000000000..56d9191cce9 --- /dev/null +++ b/editor/icons/dark/icon_omni_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_option_button.svg b/editor/icons/dark/icon_option_button.svg new file mode 100644 index 00000000000..5e9114af481 --- /dev/null +++ b/editor/icons/dark/icon_option_button.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_override.svg b/editor/icons/dark/icon_override.svg new file mode 100644 index 00000000000..34a1aabccdc --- /dev/null +++ b/editor/icons/dark/icon_override.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_packed_data_container.svg b/editor/icons/dark/icon_packed_data_container.svg new file mode 100644 index 00000000000..6f306165e5f --- /dev/null +++ b/editor/icons/dark/icon_packed_data_container.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_packed_scene.svg b/editor/icons/dark/icon_packed_scene.svg new file mode 100644 index 00000000000..08efa2b833f --- /dev/null +++ b/editor/icons/dark/icon_packed_scene.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_panel.svg b/editor/icons/dark/icon_panel.svg new file mode 100644 index 00000000000..c86f6a129d9 --- /dev/null +++ b/editor/icons/dark/icon_panel.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_panel_container.svg b/editor/icons/dark/icon_panel_container.svg new file mode 100644 index 00000000000..14dd0a8bd89 --- /dev/null +++ b/editor/icons/dark/icon_panel_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_panels_1.svg b/editor/icons/dark/icon_panels_1.svg new file mode 100644 index 00000000000..bfad85ecb98 --- /dev/null +++ b/editor/icons/dark/icon_panels_1.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_panels_2.svg b/editor/icons/dark/icon_panels_2.svg new file mode 100644 index 00000000000..9ae6c02c964 --- /dev/null +++ b/editor/icons/dark/icon_panels_2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_panels_2_alt.svg b/editor/icons/dark/icon_panels_2_alt.svg new file mode 100644 index 00000000000..9d5a02d2a39 --- /dev/null +++ b/editor/icons/dark/icon_panels_2_alt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_panels_3.svg b/editor/icons/dark/icon_panels_3.svg new file mode 100644 index 00000000000..dddf33f324a --- /dev/null +++ b/editor/icons/dark/icon_panels_3.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_panels_3_alt.svg b/editor/icons/dark/icon_panels_3_alt.svg new file mode 100644 index 00000000000..9885f5de09b --- /dev/null +++ b/editor/icons/dark/icon_panels_3_alt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_panels_4.svg b/editor/icons/dark/icon_panels_4.svg new file mode 100644 index 00000000000..28090e61d78 --- /dev/null +++ b/editor/icons/dark/icon_panels_4.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_panorama_sky.svg b/editor/icons/dark/icon_panorama_sky.svg new file mode 100644 index 00000000000..f3da955dbd7 --- /dev/null +++ b/editor/icons/dark/icon_panorama_sky.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_parallax_background.svg b/editor/icons/dark/icon_parallax_background.svg new file mode 100644 index 00000000000..fa2ebc1ce7c --- /dev/null +++ b/editor/icons/dark/icon_parallax_background.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_parallax_layer.svg b/editor/icons/dark/icon_parallax_layer.svg new file mode 100644 index 00000000000..038eac75c24 --- /dev/null +++ b/editor/icons/dark/icon_parallax_layer.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_particle_attractor_2d.svg b/editor/icons/dark/icon_particle_attractor_2d.svg new file mode 100644 index 00000000000..48e1979f13a --- /dev/null +++ b/editor/icons/dark/icon_particle_attractor_2d.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_particles.svg b/editor/icons/dark/icon_particles.svg new file mode 100644 index 00000000000..b5d0558eae3 --- /dev/null +++ b/editor/icons/dark/icon_particles.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_particles_2d.svg b/editor/icons/dark/icon_particles_2d.svg new file mode 100644 index 00000000000..6ac8c29d15a --- /dev/null +++ b/editor/icons/dark/icon_particles_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_particles_material.svg b/editor/icons/dark/icon_particles_material.svg new file mode 100644 index 00000000000..5aabbb02521 --- /dev/null +++ b/editor/icons/dark/icon_particles_material.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_path.svg b/editor/icons/dark/icon_path.svg new file mode 100644 index 00000000000..86c7fac35ae --- /dev/null +++ b/editor/icons/dark/icon_path.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_path_2d.svg b/editor/icons/dark/icon_path_2d.svg new file mode 100644 index 00000000000..06b6caa9540 --- /dev/null +++ b/editor/icons/dark/icon_path_2d.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_path_follow.svg b/editor/icons/dark/icon_path_follow.svg new file mode 100644 index 00000000000..c5b8176b754 --- /dev/null +++ b/editor/icons/dark/icon_path_follow.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_path_follow_2d.svg b/editor/icons/dark/icon_path_follow_2d.svg new file mode 100644 index 00000000000..e296fad4217 --- /dev/null +++ b/editor/icons/dark/icon_path_follow_2d.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_pause.svg b/editor/icons/dark/icon_pause.svg new file mode 100644 index 00000000000..344cf12aa16 --- /dev/null +++ b/editor/icons/dark/icon_pause.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_pin.svg b/editor/icons/dark/icon_pin.svg new file mode 100644 index 00000000000..c9988452de6 --- /dev/null +++ b/editor/icons/dark/icon_pin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_pin_joint.svg b/editor/icons/dark/icon_pin_joint.svg new file mode 100644 index 00000000000..1a2b5dedb28 --- /dev/null +++ b/editor/icons/dark/icon_pin_joint.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_pin_joint_2d.svg b/editor/icons/dark/icon_pin_joint_2d.svg new file mode 100644 index 00000000000..0afd1c15412 --- /dev/null +++ b/editor/icons/dark/icon_pin_joint_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_pin_pressed.svg b/editor/icons/dark/icon_pin_pressed.svg new file mode 100644 index 00000000000..c9988452de6 --- /dev/null +++ b/editor/icons/dark/icon_pin_pressed.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_plane.svg b/editor/icons/dark/icon_plane.svg new file mode 100644 index 00000000000..3e597419e21 --- /dev/null +++ b/editor/icons/dark/icon_plane.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_plane_mesh.svg b/editor/icons/dark/icon_plane_mesh.svg new file mode 100644 index 00000000000..d90b6dd31e0 --- /dev/null +++ b/editor/icons/dark/icon_plane_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_plane_shape.svg b/editor/icons/dark/icon_plane_shape.svg new file mode 100644 index 00000000000..27395b6a421 --- /dev/null +++ b/editor/icons/dark/icon_plane_shape.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_play.svg b/editor/icons/dark/icon_play.svg new file mode 100644 index 00000000000..531d704dacf --- /dev/null +++ b/editor/icons/dark/icon_play.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_play_backwards.svg b/editor/icons/dark/icon_play_backwards.svg new file mode 100644 index 00000000000..2dd2d63fe77 --- /dev/null +++ b/editor/icons/dark/icon_play_backwards.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_play_custom.svg b/editor/icons/dark/icon_play_custom.svg new file mode 100644 index 00000000000..bdb0138d6d4 --- /dev/null +++ b/editor/icons/dark/icon_play_custom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_play_scene.svg b/editor/icons/dark/icon_play_scene.svg new file mode 100644 index 00000000000..4f0279b07c0 --- /dev/null +++ b/editor/icons/dark/icon_play_scene.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_play_start.svg b/editor/icons/dark/icon_play_start.svg new file mode 100644 index 00000000000..2b917aab27b --- /dev/null +++ b/editor/icons/dark/icon_play_start.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_play_start_backwards.svg b/editor/icons/dark/icon_play_start_backwards.svg new file mode 100644 index 00000000000..8fb7563169f --- /dev/null +++ b/editor/icons/dark/icon_play_start_backwards.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_polygon_2_d.svg b/editor/icons/dark/icon_polygon_2_d.svg new file mode 100644 index 00000000000..e1b5bc82aac --- /dev/null +++ b/editor/icons/dark/icon_polygon_2_d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_polygon_path_finder.svg b/editor/icons/dark/icon_polygon_path_finder.svg new file mode 100644 index 00000000000..d8e836b13bc --- /dev/null +++ b/editor/icons/dark/icon_polygon_path_finder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_popup.svg b/editor/icons/dark/icon_popup.svg new file mode 100644 index 00000000000..1aa7da9c64f --- /dev/null +++ b/editor/icons/dark/icon_popup.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_popup_dialog.svg b/editor/icons/dark/icon_popup_dialog.svg new file mode 100644 index 00000000000..5b6988d0990 --- /dev/null +++ b/editor/icons/dark/icon_popup_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_popup_menu.svg b/editor/icons/dark/icon_popup_menu.svg new file mode 100644 index 00000000000..1f8f15f2526 --- /dev/null +++ b/editor/icons/dark/icon_popup_menu.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_popup_panel.svg b/editor/icons/dark/icon_popup_panel.svg new file mode 100644 index 00000000000..7955c624b37 --- /dev/null +++ b/editor/icons/dark/icon_popup_panel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_portal.svg b/editor/icons/dark/icon_portal.svg new file mode 100644 index 00000000000..58aa9043057 --- /dev/null +++ b/editor/icons/dark/icon_portal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_position_2d.svg b/editor/icons/dark/icon_position_2d.svg new file mode 100644 index 00000000000..35bcb9b389e --- /dev/null +++ b/editor/icons/dark/icon_position_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_position_3d.svg b/editor/icons/dark/icon_position_3d.svg new file mode 100644 index 00000000000..89cbe40ffc4 --- /dev/null +++ b/editor/icons/dark/icon_position_3d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_prism_mesh.svg b/editor/icons/dark/icon_prism_mesh.svg new file mode 100644 index 00000000000..c2a64904e9a --- /dev/null +++ b/editor/icons/dark/icon_prism_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_procedural_sky.svg b/editor/icons/dark/icon_procedural_sky.svg new file mode 100644 index 00000000000..b3bc9274095 --- /dev/null +++ b/editor/icons/dark/icon_procedural_sky.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_progress_1.svg b/editor/icons/dark/icon_progress_1.svg new file mode 100644 index 00000000000..8b2d9e8b454 --- /dev/null +++ b/editor/icons/dark/icon_progress_1.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_progress_2.svg b/editor/icons/dark/icon_progress_2.svg new file mode 100644 index 00000000000..8f7c358ba10 --- /dev/null +++ b/editor/icons/dark/icon_progress_2.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_progress_3.svg b/editor/icons/dark/icon_progress_3.svg new file mode 100644 index 00000000000..78bd84d642f --- /dev/null +++ b/editor/icons/dark/icon_progress_3.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_progress_4.svg b/editor/icons/dark/icon_progress_4.svg new file mode 100644 index 00000000000..7283ad79cb5 --- /dev/null +++ b/editor/icons/dark/icon_progress_4.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_progress_5.svg b/editor/icons/dark/icon_progress_5.svg new file mode 100644 index 00000000000..26512922607 --- /dev/null +++ b/editor/icons/dark/icon_progress_5.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_progress_6.svg b/editor/icons/dark/icon_progress_6.svg new file mode 100644 index 00000000000..1b44ececc53 --- /dev/null +++ b/editor/icons/dark/icon_progress_6.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_progress_7.svg b/editor/icons/dark/icon_progress_7.svg new file mode 100644 index 00000000000..7560a605fb3 --- /dev/null +++ b/editor/icons/dark/icon_progress_7.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_progress_8.svg b/editor/icons/dark/icon_progress_8.svg new file mode 100644 index 00000000000..d98826dfba2 --- /dev/null +++ b/editor/icons/dark/icon_progress_8.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_progress_bar.svg b/editor/icons/dark/icon_progress_bar.svg new file mode 100644 index 00000000000..3da8ff43b84 --- /dev/null +++ b/editor/icons/dark/icon_progress_bar.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_proximity_group.svg b/editor/icons/dark/icon_proximity_group.svg new file mode 100644 index 00000000000..32145798e39 --- /dev/null +++ b/editor/icons/dark/icon_proximity_group.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_quad.svg b/editor/icons/dark/icon_quad.svg new file mode 100644 index 00000000000..6d8c1495581 --- /dev/null +++ b/editor/icons/dark/icon_quad.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_quad_mesh.svg b/editor/icons/dark/icon_quad_mesh.svg new file mode 100644 index 00000000000..cf7ba9ac0d6 --- /dev/null +++ b/editor/icons/dark/icon_quad_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_quat.svg b/editor/icons/dark/icon_quat.svg new file mode 100644 index 00000000000..c5c9006d66b --- /dev/null +++ b/editor/icons/dark/icon_quat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_range.svg b/editor/icons/dark/icon_range.svg new file mode 100644 index 00000000000..e19ab80f7de --- /dev/null +++ b/editor/icons/dark/icon_range.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_rating_no_star.svg b/editor/icons/dark/icon_rating_no_star.svg new file mode 100644 index 00000000000..d81408b637a --- /dev/null +++ b/editor/icons/dark/icon_rating_no_star.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_rating_star.svg b/editor/icons/dark/icon_rating_star.svg new file mode 100644 index 00000000000..3a1e344d4bc --- /dev/null +++ b/editor/icons/dark/icon_rating_star.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_ray_cast.svg b/editor/icons/dark/icon_ray_cast.svg new file mode 100644 index 00000000000..656c02d0187 --- /dev/null +++ b/editor/icons/dark/icon_ray_cast.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_ray_cast_2d.svg b/editor/icons/dark/icon_ray_cast_2d.svg new file mode 100644 index 00000000000..434d8cc62af --- /dev/null +++ b/editor/icons/dark/icon_ray_cast_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_ray_shape.svg b/editor/icons/dark/icon_ray_shape.svg new file mode 100644 index 00000000000..4591b0a3f9c --- /dev/null +++ b/editor/icons/dark/icon_ray_shape.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_ray_shape_2d.svg b/editor/icons/dark/icon_ray_shape_2d.svg new file mode 100644 index 00000000000..89533b84077 --- /dev/null +++ b/editor/icons/dark/icon_ray_shape_2d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_rayito.svg b/editor/icons/dark/icon_rayito.svg new file mode 100644 index 00000000000..4e1e90eaf95 --- /dev/null +++ b/editor/icons/dark/icon_rayito.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_real.svg b/editor/icons/dark/icon_real.svg new file mode 100644 index 00000000000..68f477f7275 --- /dev/null +++ b/editor/icons/dark/icon_real.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_rectangle_shape_2d.svg b/editor/icons/dark/icon_rectangle_shape_2d.svg new file mode 100644 index 00000000000..d5cf89f5dc2 --- /dev/null +++ b/editor/icons/dark/icon_rectangle_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_reference_rect.svg b/editor/icons/dark/icon_reference_rect.svg new file mode 100644 index 00000000000..0bc52b44c8a --- /dev/null +++ b/editor/icons/dark/icon_reference_rect.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_reflection_probe.svg b/editor/icons/dark/icon_reflection_probe.svg new file mode 100644 index 00000000000..daafbff1ea2 --- /dev/null +++ b/editor/icons/dark/icon_reflection_probe.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_region_edit.svg b/editor/icons/dark/icon_region_edit.svg new file mode 100644 index 00000000000..4cd5fcb8ad4 --- /dev/null +++ b/editor/icons/dark/icon_region_edit.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_reload_small.svg b/editor/icons/dark/icon_reload_small.svg new file mode 100644 index 00000000000..5de35371369 --- /dev/null +++ b/editor/icons/dark/icon_reload_small.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_remote.svg b/editor/icons/dark/icon_remote.svg new file mode 100644 index 00000000000..5381ba07dac --- /dev/null +++ b/editor/icons/dark/icon_remote.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_remote_transform.svg b/editor/icons/dark/icon_remote_transform.svg new file mode 100644 index 00000000000..cfeadc9bd2c --- /dev/null +++ b/editor/icons/dark/icon_remote_transform.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_remote_transform_2d.svg b/editor/icons/dark/icon_remote_transform_2d.svg new file mode 100644 index 00000000000..443a21382ba --- /dev/null +++ b/editor/icons/dark/icon_remote_transform_2d.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_remove.svg b/editor/icons/dark/icon_remove.svg new file mode 100644 index 00000000000..4d461e251e1 --- /dev/null +++ b/editor/icons/dark/icon_remove.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_rename.svg b/editor/icons/dark/icon_rename.svg new file mode 100644 index 00000000000..3c013a4e3be --- /dev/null +++ b/editor/icons/dark/icon_rename.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_reparent.svg b/editor/icons/dark/icon_reparent.svg new file mode 100644 index 00000000000..03094ad3410 --- /dev/null +++ b/editor/icons/dark/icon_reparent.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_resource_preloader.svg b/editor/icons/dark/icon_resource_preloader.svg new file mode 100644 index 00000000000..c7d0b1b5429 --- /dev/null +++ b/editor/icons/dark/icon_resource_preloader.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_rich_text_label.svg b/editor/icons/dark/icon_rich_text_label.svg new file mode 100644 index 00000000000..531909d92f3 --- /dev/null +++ b/editor/icons/dark/icon_rich_text_label.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_rigid_body.svg b/editor/icons/dark/icon_rigid_body.svg new file mode 100644 index 00000000000..87fff0b0e4b --- /dev/null +++ b/editor/icons/dark/icon_rigid_body.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_rigid_body_2d.svg b/editor/icons/dark/icon_rigid_body_2d.svg new file mode 100644 index 00000000000..5e88969b817 --- /dev/null +++ b/editor/icons/dark/icon_rigid_body_2d.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_room.svg b/editor/icons/dark/icon_room.svg new file mode 100644 index 00000000000..d5d32f35d08 --- /dev/null +++ b/editor/icons/dark/icon_room.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_room_bounds.svg b/editor/icons/dark/icon_room_bounds.svg new file mode 100644 index 00000000000..505b10aebf0 --- /dev/null +++ b/editor/icons/dark/icon_room_bounds.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_rotate_0.svg b/editor/icons/dark/icon_rotate_0.svg new file mode 100644 index 00000000000..0afebb7d1e5 --- /dev/null +++ b/editor/icons/dark/icon_rotate_0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_rotate_180.svg b/editor/icons/dark/icon_rotate_180.svg new file mode 100644 index 00000000000..e6d2d8806a0 --- /dev/null +++ b/editor/icons/dark/icon_rotate_180.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_rotate_270.svg b/editor/icons/dark/icon_rotate_270.svg new file mode 100644 index 00000000000..0b1ac396513 --- /dev/null +++ b/editor/icons/dark/icon_rotate_270.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_rotate_90.svg b/editor/icons/dark/icon_rotate_90.svg new file mode 100644 index 00000000000..513ef5388cd --- /dev/null +++ b/editor/icons/dark/icon_rotate_90.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_sample_library.svg b/editor/icons/dark/icon_sample_library.svg new file mode 100644 index 00000000000..5292330aef2 --- /dev/null +++ b/editor/icons/dark/icon_sample_library.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_save.svg b/editor/icons/dark/icon_save.svg new file mode 100644 index 00000000000..831cb8b6149 --- /dev/null +++ b/editor/icons/dark/icon_save.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_script.svg b/editor/icons/dark/icon_script.svg new file mode 100644 index 00000000000..04c70b69859 --- /dev/null +++ b/editor/icons/dark/icon_script.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_script_create.svg b/editor/icons/dark/icon_script_create.svg new file mode 100644 index 00000000000..aa9d692d14c --- /dev/null +++ b/editor/icons/dark/icon_script_create.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_script_remove.svg b/editor/icons/dark/icon_script_remove.svg new file mode 100644 index 00000000000..d619a3f94f6 --- /dev/null +++ b/editor/icons/dark/icon_script_remove.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_scroll_bar.svg b/editor/icons/dark/icon_scroll_bar.svg new file mode 100644 index 00000000000..45a37b576a5 --- /dev/null +++ b/editor/icons/dark/icon_scroll_bar.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_scroll_container.svg b/editor/icons/dark/icon_scroll_container.svg new file mode 100644 index 00000000000..3c4d3ce47d4 --- /dev/null +++ b/editor/icons/dark/icon_scroll_container.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_search.svg b/editor/icons/dark/icon_search.svg new file mode 100644 index 00000000000..13ebcd817cd --- /dev/null +++ b/editor/icons/dark/icon_search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_segment_shape_2d.svg b/editor/icons/dark/icon_segment_shape_2d.svg new file mode 100644 index 00000000000..beb1dd3d3ff --- /dev/null +++ b/editor/icons/dark/icon_segment_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_shader.svg b/editor/icons/dark/icon_shader.svg new file mode 100644 index 00000000000..46fd13c5b37 --- /dev/null +++ b/editor/icons/dark/icon_shader.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_short_cut.svg b/editor/icons/dark/icon_short_cut.svg new file mode 100644 index 00000000000..204b53f9dba --- /dev/null +++ b/editor/icons/dark/icon_short_cut.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_signal.svg b/editor/icons/dark/icon_signal.svg new file mode 100644 index 00000000000..c764bdc1a7e --- /dev/null +++ b/editor/icons/dark/icon_signal.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_skeleton.svg b/editor/icons/dark/icon_skeleton.svg new file mode 100644 index 00000000000..cfd23a5e513 --- /dev/null +++ b/editor/icons/dark/icon_skeleton.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_slider_joint.svg b/editor/icons/dark/icon_slider_joint.svg new file mode 100644 index 00000000000..c46855342ec --- /dev/null +++ b/editor/icons/dark/icon_slider_joint.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_slot.svg b/editor/icons/dark/icon_slot.svg new file mode 100644 index 00000000000..9e8a5038e31 --- /dev/null +++ b/editor/icons/dark/icon_slot.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_snap.svg b/editor/icons/dark/icon_snap.svg new file mode 100644 index 00000000000..7c3e75f7cdd --- /dev/null +++ b/editor/icons/dark/icon_snap.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_sound_room_params.svg b/editor/icons/dark/icon_sound_room_params.svg new file mode 100644 index 00000000000..f9c6624284f --- /dev/null +++ b/editor/icons/dark/icon_sound_room_params.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_spatial.svg b/editor/icons/dark/icon_spatial.svg new file mode 100644 index 00000000000..b89620314bd --- /dev/null +++ b/editor/icons/dark/icon_spatial.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_spatial_material.svg b/editor/icons/dark/icon_spatial_material.svg new file mode 100644 index 00000000000..57b6fd360d9 --- /dev/null +++ b/editor/icons/dark/icon_spatial_material.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_spatial_sample_player.svg b/editor/icons/dark/icon_spatial_sample_player.svg new file mode 100644 index 00000000000..e0925fdd7ae --- /dev/null +++ b/editor/icons/dark/icon_spatial_sample_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_spatial_stream_player.svg b/editor/icons/dark/icon_spatial_stream_player.svg new file mode 100644 index 00000000000..60c5749bb8f --- /dev/null +++ b/editor/icons/dark/icon_spatial_stream_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_sphere_mesh.svg b/editor/icons/dark/icon_sphere_mesh.svg new file mode 100644 index 00000000000..317741595e2 --- /dev/null +++ b/editor/icons/dark/icon_sphere_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_sphere_shape.svg b/editor/icons/dark/icon_sphere_shape.svg new file mode 100644 index 00000000000..f2995ae96af --- /dev/null +++ b/editor/icons/dark/icon_sphere_shape.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_spin_box.svg b/editor/icons/dark/icon_spin_box.svg new file mode 100644 index 00000000000..2d0376e2800 --- /dev/null +++ b/editor/icons/dark/icon_spin_box.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_spot_light.svg b/editor/icons/dark/icon_spot_light.svg new file mode 100644 index 00000000000..9e333acce0c --- /dev/null +++ b/editor/icons/dark/icon_spot_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_sprite.svg b/editor/icons/dark/icon_sprite.svg new file mode 100644 index 00000000000..7c7f7dde76d --- /dev/null +++ b/editor/icons/dark/icon_sprite.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_sprite_3d.svg b/editor/icons/dark/icon_sprite_3d.svg new file mode 100644 index 00000000000..9f6d4f9fe54 --- /dev/null +++ b/editor/icons/dark/icon_sprite_3d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_sprite_frames.svg b/editor/icons/dark/icon_sprite_frames.svg new file mode 100644 index 00000000000..e4f85236b48 --- /dev/null +++ b/editor/icons/dark/icon_sprite_frames.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_static_body.svg b/editor/icons/dark/icon_static_body.svg new file mode 100644 index 00000000000..04944fd5c88 --- /dev/null +++ b/editor/icons/dark/icon_static_body.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_static_body_2d.svg b/editor/icons/dark/icon_static_body_2d.svg new file mode 100644 index 00000000000..36a63281d26 --- /dev/null +++ b/editor/icons/dark/icon_static_body_2d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_stream_player.svg b/editor/icons/dark/icon_stream_player.svg new file mode 100644 index 00000000000..b9592a6cd88 --- /dev/null +++ b/editor/icons/dark/icon_stream_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_stream_texture.svg b/editor/icons/dark/icon_stream_texture.svg new file mode 100644 index 00000000000..1a78b5b41af --- /dev/null +++ b/editor/icons/dark/icon_stream_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_string.svg b/editor/icons/dark/icon_string.svg new file mode 100644 index 00000000000..9bb7518995f --- /dev/null +++ b/editor/icons/dark/icon_string.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_style_box_empty.svg b/editor/icons/dark/icon_style_box_empty.svg new file mode 100644 index 00000000000..c3791985cf2 --- /dev/null +++ b/editor/icons/dark/icon_style_box_empty.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_style_box_flat.svg b/editor/icons/dark/icon_style_box_flat.svg new file mode 100644 index 00000000000..f0270c7cc5d --- /dev/null +++ b/editor/icons/dark/icon_style_box_flat.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_style_box_texture.svg b/editor/icons/dark/icon_style_box_texture.svg new file mode 100644 index 00000000000..36fdd7f66b0 --- /dev/null +++ b/editor/icons/dark/icon_style_box_texture.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_tab_container.svg b/editor/icons/dark/icon_tab_container.svg new file mode 100644 index 00000000000..d47e1522c6b --- /dev/null +++ b/editor/icons/dark/icon_tab_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_tabs.svg b/editor/icons/dark/icon_tabs.svg new file mode 100644 index 00000000000..b8bfdefa90b --- /dev/null +++ b/editor/icons/dark/icon_tabs.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_test_cube.svg b/editor/icons/dark/icon_test_cube.svg new file mode 100644 index 00000000000..e6d3ac88f25 --- /dev/null +++ b/editor/icons/dark/icon_test_cube.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_text_edit.svg b/editor/icons/dark/icon_text_edit.svg new file mode 100644 index 00000000000..7c449830b1c --- /dev/null +++ b/editor/icons/dark/icon_text_edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_texture_button.svg b/editor/icons/dark/icon_texture_button.svg new file mode 100644 index 00000000000..1de3da6cda6 --- /dev/null +++ b/editor/icons/dark/icon_texture_button.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_texture_progress.svg b/editor/icons/dark/icon_texture_progress.svg new file mode 100644 index 00000000000..17aae8239af --- /dev/null +++ b/editor/icons/dark/icon_texture_progress.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_texture_rect.svg b/editor/icons/dark/icon_texture_rect.svg new file mode 100644 index 00000000000..540c237f288 --- /dev/null +++ b/editor/icons/dark/icon_texture_rect.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_theme.svg b/editor/icons/dark/icon_theme.svg new file mode 100644 index 00000000000..4d5c017f145 --- /dev/null +++ b/editor/icons/dark/icon_theme.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_tile_map.svg b/editor/icons/dark/icon_tile_map.svg new file mode 100644 index 00000000000..9de80deff85 --- /dev/null +++ b/editor/icons/dark/icon_tile_map.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_tile_set.svg b/editor/icons/dark/icon_tile_set.svg new file mode 100644 index 00000000000..547af998727 --- /dev/null +++ b/editor/icons/dark/icon_tile_set.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_timer.svg b/editor/icons/dark/icon_timer.svg new file mode 100644 index 00000000000..9efb856c7d8 --- /dev/null +++ b/editor/icons/dark/icon_timer.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_tool_button.svg b/editor/icons/dark/icon_tool_button.svg new file mode 100644 index 00000000000..db3fdb8c844 --- /dev/null +++ b/editor/icons/dark/icon_tool_button.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/dark/icon_tool_move.svg b/editor/icons/dark/icon_tool_move.svg new file mode 100644 index 00000000000..de89f59ac96 --- /dev/null +++ b/editor/icons/dark/icon_tool_move.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_tool_pan.svg b/editor/icons/dark/icon_tool_pan.svg new file mode 100644 index 00000000000..c072e57b009 --- /dev/null +++ b/editor/icons/dark/icon_tool_pan.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_tool_rotate.svg b/editor/icons/dark/icon_tool_rotate.svg new file mode 100644 index 00000000000..4c5f0e7dbc2 --- /dev/null +++ b/editor/icons/dark/icon_tool_rotate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_tool_scale.svg b/editor/icons/dark/icon_tool_scale.svg new file mode 100644 index 00000000000..2711dae1a30 --- /dev/null +++ b/editor/icons/dark/icon_tool_scale.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_tool_select.svg b/editor/icons/dark/icon_tool_select.svg new file mode 100644 index 00000000000..cd2a4c9e282 --- /dev/null +++ b/editor/icons/dark/icon_tool_select.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_tools.svg b/editor/icons/dark/icon_tools.svg new file mode 100644 index 00000000000..70da072dec0 --- /dev/null +++ b/editor/icons/dark/icon_tools.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_touch_screen_button.svg b/editor/icons/dark/icon_touch_screen_button.svg new file mode 100644 index 00000000000..b6b86bf7812 --- /dev/null +++ b/editor/icons/dark/icon_touch_screen_button.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_track_add_key.svg b/editor/icons/dark/icon_track_add_key.svg new file mode 100644 index 00000000000..91e4230cbe2 --- /dev/null +++ b/editor/icons/dark/icon_track_add_key.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_track_add_key_hl.svg b/editor/icons/dark/icon_track_add_key_hl.svg new file mode 100644 index 00000000000..f710873b439 --- /dev/null +++ b/editor/icons/dark/icon_track_add_key_hl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_track_continuous.svg b/editor/icons/dark/icon_track_continuous.svg new file mode 100644 index 00000000000..a7b9b13a4cb --- /dev/null +++ b/editor/icons/dark/icon_track_continuous.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_track_discrete.svg b/editor/icons/dark/icon_track_discrete.svg new file mode 100644 index 00000000000..0a5c875c403 --- /dev/null +++ b/editor/icons/dark/icon_track_discrete.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_track_trigger.svg b/editor/icons/dark/icon_track_trigger.svg new file mode 100644 index 00000000000..439ef849613 --- /dev/null +++ b/editor/icons/dark/icon_track_trigger.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_translation.svg b/editor/icons/dark/icon_translation.svg new file mode 100644 index 00000000000..131ed1b2d38 --- /dev/null +++ b/editor/icons/dark/icon_translation.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_transpose.svg b/editor/icons/dark/icon_transpose.svg new file mode 100644 index 00000000000..551c83137ad --- /dev/null +++ b/editor/icons/dark/icon_transpose.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_tree.svg b/editor/icons/dark/icon_tree.svg new file mode 100644 index 00000000000..27855a9e6d8 --- /dev/null +++ b/editor/icons/dark/icon_tree.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_tween.svg b/editor/icons/dark/icon_tween.svg new file mode 100644 index 00000000000..1d553c7a532 --- /dev/null +++ b/editor/icons/dark/icon_tween.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_unbone.svg b/editor/icons/dark/icon_unbone.svg new file mode 100644 index 00000000000..1d1fee54ccd --- /dev/null +++ b/editor/icons/dark/icon_unbone.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_ungroup.svg b/editor/icons/dark/icon_ungroup.svg new file mode 100644 index 00000000000..97932c95e0e --- /dev/null +++ b/editor/icons/dark/icon_ungroup.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_unlock.svg b/editor/icons/dark/icon_unlock.svg new file mode 100644 index 00000000000..1eb65383a55 --- /dev/null +++ b/editor/icons/dark/icon_unlock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_uv.svg b/editor/icons/dark/icon_uv.svg new file mode 100644 index 00000000000..15e76053e00 --- /dev/null +++ b/editor/icons/dark/icon_uv.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_v_box_container.svg b/editor/icons/dark/icon_v_box_container.svg new file mode 100644 index 00000000000..8cabe8a4a11 --- /dev/null +++ b/editor/icons/dark/icon_v_box_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_v_button_array.svg b/editor/icons/dark/icon_v_button_array.svg new file mode 100644 index 00000000000..9c2e5cecc63 --- /dev/null +++ b/editor/icons/dark/icon_v_button_array.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_v_scroll_bar.svg b/editor/icons/dark/icon_v_scroll_bar.svg new file mode 100644 index 00000000000..3ea3a124c6c --- /dev/null +++ b/editor/icons/dark/icon_v_scroll_bar.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_v_separator.svg b/editor/icons/dark/icon_v_separator.svg new file mode 100644 index 00000000000..c9d6b879a47 --- /dev/null +++ b/editor/icons/dark/icon_v_separator.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_v_slider.svg b/editor/icons/dark/icon_v_slider.svg new file mode 100644 index 00000000000..0ef58d34e52 --- /dev/null +++ b/editor/icons/dark/icon_v_slider.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_v_split_container.svg b/editor/icons/dark/icon_v_split_container.svg new file mode 100644 index 00000000000..4ad51b4fbe5 --- /dev/null +++ b/editor/icons/dark/icon_v_split_container.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_variant.svg b/editor/icons/dark/icon_variant.svg new file mode 100644 index 00000000000..dded24a52de --- /dev/null +++ b/editor/icons/dark/icon_variant.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_vector.svg b/editor/icons/dark/icon_vector.svg new file mode 100644 index 00000000000..dda46edeaa9 --- /dev/null +++ b/editor/icons/dark/icon_vector.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_vector2.svg b/editor/icons/dark/icon_vector2.svg new file mode 100644 index 00000000000..ab92e7bb607 --- /dev/null +++ b/editor/icons/dark/icon_vector2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_vehicle_body.svg b/editor/icons/dark/icon_vehicle_body.svg new file mode 100644 index 00000000000..1afbe9229dd --- /dev/null +++ b/editor/icons/dark/icon_vehicle_body.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_vehicle_wheel.svg b/editor/icons/dark/icon_vehicle_wheel.svg new file mode 100644 index 00000000000..40f28709bc1 --- /dev/null +++ b/editor/icons/dark/icon_vehicle_wheel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_video_player.svg b/editor/icons/dark/icon_video_player.svg new file mode 100644 index 00000000000..1cfd25eea34 --- /dev/null +++ b/editor/icons/dark/icon_video_player.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_viewport.svg b/editor/icons/dark/icon_viewport.svg new file mode 100644 index 00000000000..6e583ca62f7 --- /dev/null +++ b/editor/icons/dark/icon_viewport.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_viewport_container.svg b/editor/icons/dark/icon_viewport_container.svg new file mode 100644 index 00000000000..35187561772 --- /dev/null +++ b/editor/icons/dark/icon_viewport_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_viewport_sprite.svg b/editor/icons/dark/icon_viewport_sprite.svg new file mode 100644 index 00000000000..e2addce9849 --- /dev/null +++ b/editor/icons/dark/icon_viewport_sprite.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/dark/icon_viewport_texture.svg b/editor/icons/dark/icon_viewport_texture.svg new file mode 100644 index 00000000000..c4e2a2dbdae --- /dev/null +++ b/editor/icons/dark/icon_viewport_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_visibility_enabler.svg b/editor/icons/dark/icon_visibility_enabler.svg new file mode 100644 index 00000000000..0bc3449b072 --- /dev/null +++ b/editor/icons/dark/icon_visibility_enabler.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_visibility_enabler_2d.svg b/editor/icons/dark/icon_visibility_enabler_2d.svg new file mode 100644 index 00000000000..23a66501f7d --- /dev/null +++ b/editor/icons/dark/icon_visibility_enabler_2d.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/dark/icon_visibility_notifier.svg b/editor/icons/dark/icon_visibility_notifier.svg new file mode 100644 index 00000000000..d4c56afd652 --- /dev/null +++ b/editor/icons/dark/icon_visibility_notifier.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/dark/icon_visibility_notifier_2d.svg b/editor/icons/dark/icon_visibility_notifier_2d.svg new file mode 100644 index 00000000000..c84c2dbfca3 --- /dev/null +++ b/editor/icons/dark/icon_visibility_notifier_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_visible.svg b/editor/icons/dark/icon_visible.svg new file mode 100644 index 00000000000..784cd15d1ee --- /dev/null +++ b/editor/icons/dark/icon_visible.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_visual_script.svg b/editor/icons/dark/icon_visual_script.svg new file mode 100644 index 00000000000..96fcca46ab4 --- /dev/null +++ b/editor/icons/dark/icon_visual_script.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_visual_shader_port.svg b/editor/icons/dark/icon_visual_shader_port.svg new file mode 100644 index 00000000000..0f5d00dbc4d --- /dev/null +++ b/editor/icons/dark/icon_visual_shader_port.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_vu_empty.svg b/editor/icons/dark/icon_vu_empty.svg new file mode 100644 index 00000000000..ae2163a386a --- /dev/null +++ b/editor/icons/dark/icon_vu_empty.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_vu_full.svg b/editor/icons/dark/icon_vu_full.svg new file mode 100644 index 00000000000..e4035026d7e --- /dev/null +++ b/editor/icons/dark/icon_vu_full.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_warning.svg b/editor/icons/dark/icon_warning.svg new file mode 100644 index 00000000000..0dec9c7bd4f --- /dev/null +++ b/editor/icons/dark/icon_warning.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_window_dialog.svg b/editor/icons/dark/icon_window_dialog.svg new file mode 100644 index 00000000000..39d231df9a1 --- /dev/null +++ b/editor/icons/dark/icon_window_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_world.svg b/editor/icons/dark/icon_world.svg new file mode 100644 index 00000000000..92e3529efc7 --- /dev/null +++ b/editor/icons/dark/icon_world.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_world_2d.svg b/editor/icons/dark/icon_world_2d.svg new file mode 100644 index 00000000000..e728ed313c0 --- /dev/null +++ b/editor/icons/dark/icon_world_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_world_environment.svg b/editor/icons/dark/icon_world_environment.svg new file mode 100644 index 00000000000..c80e78f1788 --- /dev/null +++ b/editor/icons/dark/icon_world_environment.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_y_sort.svg b/editor/icons/dark/icon_y_sort.svg new file mode 100644 index 00000000000..914ecfed0d2 --- /dev/null +++ b/editor/icons/dark/icon_y_sort.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/dark/icon_zoom.svg b/editor/icons/dark/icon_zoom.svg new file mode 100644 index 00000000000..ac185d3c9ed --- /dev/null +++ b/editor/icons/dark/icon_zoom.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_zoom_less.svg b/editor/icons/dark/icon_zoom_less.svg new file mode 100644 index 00000000000..ea7190c4ca2 --- /dev/null +++ b/editor/icons/dark/icon_zoom_less.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_zoom_more.svg b/editor/icons/dark/icon_zoom_more.svg new file mode 100644 index 00000000000..046b569c1a3 --- /dev/null +++ b/editor/icons/dark/icon_zoom_more.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_zoom_reset.svg b/editor/icons/dark/icon_zoom_reset.svg new file mode 100644 index 00000000000..bb262bca9d9 --- /dev/null +++ b/editor/icons/dark/icon_zoom_reset.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_2_d.png b/editor/icons/icon_2_d.png deleted file mode 100644 index d8a77ee1c23..00000000000 Binary files a/editor/icons/icon_2_d.png and /dev/null differ diff --git a/editor/icons/icon_2_d.svg b/editor/icons/icon_2_d.svg new file mode 100644 index 00000000000..b77c330bff9 --- /dev/null +++ b/editor/icons/icon_2_d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_3_d.png b/editor/icons/icon_3_d.png deleted file mode 100644 index e1daf1077b5..00000000000 Binary files a/editor/icons/icon_3_d.png and /dev/null differ diff --git a/editor/icons/icon_3_d.svg b/editor/icons/icon_3_d.svg new file mode 100644 index 00000000000..91d3abf60d7 --- /dev/null +++ b/editor/icons/icon_3_d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_checked.png b/editor/icons/icon_GUI_checked.png deleted file mode 100644 index aa5e7f6bdb5..00000000000 Binary files a/editor/icons/icon_GUI_checked.png and /dev/null differ diff --git a/editor/icons/icon_GUI_checked.svg b/editor/icons/icon_GUI_checked.svg new file mode 100644 index 00000000000..7ba83d48d55 --- /dev/null +++ b/editor/icons/icon_GUI_checked.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_dropdown.png b/editor/icons/icon_GUI_dropdown.png deleted file mode 100644 index d21cdb634e4..00000000000 Binary files a/editor/icons/icon_GUI_dropdown.png and /dev/null differ diff --git a/editor/icons/icon_GUI_dropdown.svg b/editor/icons/icon_GUI_dropdown.svg new file mode 100644 index 00000000000..22db0fa1a7e --- /dev/null +++ b/editor/icons/icon_GUI_dropdown.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_GUI_hslider_bg.png b/editor/icons/icon_GUI_hslider_bg.png deleted file mode 100644 index 1286b887f63..00000000000 Binary files a/editor/icons/icon_GUI_hslider_bg.png and /dev/null differ diff --git a/editor/icons/icon_GUI_hslider_bg.svg b/editor/icons/icon_GUI_hslider_bg.svg new file mode 100644 index 00000000000..e298d06c4c7 --- /dev/null +++ b/editor/icons/icon_GUI_hslider_bg.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_hsplitter.png b/editor/icons/icon_GUI_hsplitter.png deleted file mode 100644 index 3ac1dddf904..00000000000 Binary files a/editor/icons/icon_GUI_hsplitter.png and /dev/null differ diff --git a/editor/icons/icon_GUI_hsplitter.svg b/editor/icons/icon_GUI_hsplitter.svg new file mode 100644 index 00000000000..650e977921b --- /dev/null +++ b/editor/icons/icon_GUI_hsplitter.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_mini_tab_menu.png b/editor/icons/icon_GUI_mini_tab_menu.png deleted file mode 100644 index 1dc793de1a8..00000000000 Binary files a/editor/icons/icon_GUI_mini_tab_menu.png and /dev/null differ diff --git a/editor/icons/icon_GUI_mini_tab_menu.svg b/editor/icons/icon_GUI_mini_tab_menu.svg new file mode 100644 index 00000000000..c54eb26115d --- /dev/null +++ b/editor/icons/icon_GUI_mini_tab_menu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_GUI_option_arrow.png b/editor/icons/icon_GUI_option_arrow.png deleted file mode 100644 index b7bc38e03f3..00000000000 Binary files a/editor/icons/icon_GUI_option_arrow.png and /dev/null differ diff --git a/editor/icons/icon_GUI_option_arrow.svg b/editor/icons/icon_GUI_option_arrow.svg new file mode 100644 index 00000000000..ee2a77c0907 --- /dev/null +++ b/editor/icons/icon_GUI_option_arrow.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_play_button_group.png b/editor/icons/icon_GUI_play_button_group.png deleted file mode 100644 index 83820c8e0c2..00000000000 Binary files a/editor/icons/icon_GUI_play_button_group.png and /dev/null differ diff --git a/editor/icons/icon_GUI_play_button_group.svg b/editor/icons/icon_GUI_play_button_group.svg new file mode 100644 index 00000000000..1d67816b3a9 --- /dev/null +++ b/editor/icons/icon_GUI_play_button_group.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_progress_bar.png b/editor/icons/icon_GUI_progress_bar.png deleted file mode 100644 index 7d70e6beb53..00000000000 Binary files a/editor/icons/icon_GUI_progress_bar.png and /dev/null differ diff --git a/editor/icons/icon_GUI_progress_bar.svg b/editor/icons/icon_GUI_progress_bar.svg new file mode 100644 index 00000000000..9ea0cddfb0a --- /dev/null +++ b/editor/icons/icon_GUI_progress_bar.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_progress_fill.png b/editor/icons/icon_GUI_progress_fill.png deleted file mode 100644 index 4b7b4c554c6..00000000000 Binary files a/editor/icons/icon_GUI_progress_fill.png and /dev/null differ diff --git a/editor/icons/icon_GUI_progress_fill.svg b/editor/icons/icon_GUI_progress_fill.svg new file mode 100644 index 00000000000..9c689232540 --- /dev/null +++ b/editor/icons/icon_GUI_progress_fill.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_radio_checked.png b/editor/icons/icon_GUI_radio_checked.png deleted file mode 100644 index 699d0966a90..00000000000 Binary files a/editor/icons/icon_GUI_radio_checked.png and /dev/null differ diff --git a/editor/icons/icon_GUI_radio_checked.svg b/editor/icons/icon_GUI_radio_checked.svg new file mode 100644 index 00000000000..6a65d49eebc --- /dev/null +++ b/editor/icons/icon_GUI_radio_checked.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_GUI_radio_unchecked.png b/editor/icons/icon_GUI_radio_unchecked.png deleted file mode 100644 index e8ce1f8e6d7..00000000000 Binary files a/editor/icons/icon_GUI_radio_unchecked.png and /dev/null differ diff --git a/editor/icons/icon_GUI_radio_unchecked.svg b/editor/icons/icon_GUI_radio_unchecked.svg new file mode 100644 index 00000000000..6e52a8af77f --- /dev/null +++ b/editor/icons/icon_GUI_radio_unchecked.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_scroll_bg.png b/editor/icons/icon_GUI_scroll_bg.png deleted file mode 100644 index 1908fd8aee1..00000000000 Binary files a/editor/icons/icon_GUI_scroll_bg.png and /dev/null differ diff --git a/editor/icons/icon_GUI_scroll_bg.svg b/editor/icons/icon_GUI_scroll_bg.svg new file mode 100644 index 00000000000..302368b19ab --- /dev/null +++ b/editor/icons/icon_GUI_scroll_bg.svg @@ -0,0 +1 @@ + diff --git a/editor/icons/icon_GUI_scroll_grabber.png b/editor/icons/icon_GUI_scroll_grabber.png deleted file mode 100644 index 4be7f4e6ccc..00000000000 Binary files a/editor/icons/icon_GUI_scroll_grabber.png and /dev/null differ diff --git a/editor/icons/icon_GUI_scroll_grabber.svg b/editor/icons/icon_GUI_scroll_grabber.svg new file mode 100644 index 00000000000..545ec6782d5 --- /dev/null +++ b/editor/icons/icon_GUI_scroll_grabber.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_scroll_grabber_hl.png b/editor/icons/icon_GUI_scroll_grabber_hl.png deleted file mode 100644 index 98e357f82a5..00000000000 Binary files a/editor/icons/icon_GUI_scroll_grabber_hl.png and /dev/null differ diff --git a/editor/icons/icon_GUI_scroll_grabber_hl.svg b/editor/icons/icon_GUI_scroll_grabber_hl.svg new file mode 100644 index 00000000000..e165cf3cfbe --- /dev/null +++ b/editor/icons/icon_GUI_scroll_grabber_hl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_scroll_grabber_pressed.png b/editor/icons/icon_GUI_scroll_grabber_pressed.png deleted file mode 100644 index a46d242ddd0..00000000000 Binary files a/editor/icons/icon_GUI_scroll_grabber_pressed.png and /dev/null differ diff --git a/editor/icons/icon_GUI_scroll_grabber_pressed.svg b/editor/icons/icon_GUI_scroll_grabber_pressed.svg new file mode 100644 index 00000000000..729289e756e --- /dev/null +++ b/editor/icons/icon_GUI_scroll_grabber_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_slider_grabber.png b/editor/icons/icon_GUI_slider_grabber.png deleted file mode 100644 index 76edc3b81f5..00000000000 Binary files a/editor/icons/icon_GUI_slider_grabber.png and /dev/null differ diff --git a/editor/icons/icon_GUI_slider_grabber.svg b/editor/icons/icon_GUI_slider_grabber.svg new file mode 100644 index 00000000000..b1dcf980a59 --- /dev/null +++ b/editor/icons/icon_GUI_slider_grabber.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_slider_grabber_hl.png b/editor/icons/icon_GUI_slider_grabber_hl.png deleted file mode 100644 index 97a2f4b67a7..00000000000 Binary files a/editor/icons/icon_GUI_slider_grabber_hl.png and /dev/null differ diff --git a/editor/icons/icon_GUI_slider_grabber_hl.svg b/editor/icons/icon_GUI_slider_grabber_hl.svg new file mode 100644 index 00000000000..73252751cea --- /dev/null +++ b/editor/icons/icon_GUI_slider_grabber_hl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_GUI_spinbox_updown.png b/editor/icons/icon_GUI_spinbox_updown.png deleted file mode 100644 index ff65df801bf..00000000000 Binary files a/editor/icons/icon_GUI_spinbox_updown.png and /dev/null differ diff --git a/editor/icons/icon_GUI_spinbox_updown.svg b/editor/icons/icon_GUI_spinbox_updown.svg new file mode 100644 index 00000000000..24c74ba6cd9 --- /dev/null +++ b/editor/icons/icon_GUI_spinbox_updown.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_tab_menu.png b/editor/icons/icon_GUI_tab_menu.png deleted file mode 100644 index ffc63f2d415..00000000000 Binary files a/editor/icons/icon_GUI_tab_menu.png and /dev/null differ diff --git a/editor/icons/icon_GUI_tab_menu.svg b/editor/icons/icon_GUI_tab_menu.svg new file mode 100644 index 00000000000..3324adf98bc --- /dev/null +++ b/editor/icons/icon_GUI_tab_menu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_GUI_toggle_off.png b/editor/icons/icon_GUI_toggle_off.png deleted file mode 100644 index c4c599172de..00000000000 Binary files a/editor/icons/icon_GUI_toggle_off.png and /dev/null differ diff --git a/editor/icons/icon_GUI_toggle_off.svg b/editor/icons/icon_GUI_toggle_off.svg new file mode 100644 index 00000000000..0d43b158b5b --- /dev/null +++ b/editor/icons/icon_GUI_toggle_off.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_toggle_on.png b/editor/icons/icon_GUI_toggle_on.png deleted file mode 100644 index 9dd6ce7bee7..00000000000 Binary files a/editor/icons/icon_GUI_toggle_on.png and /dev/null differ diff --git a/editor/icons/icon_GUI_toggle_on.svg b/editor/icons/icon_GUI_toggle_on.svg new file mode 100644 index 00000000000..fd2b915fc35 --- /dev/null +++ b/editor/icons/icon_GUI_toggle_on.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_tree_arrow_down.png b/editor/icons/icon_GUI_tree_arrow_down.png deleted file mode 100644 index 4ef7b41de64..00000000000 Binary files a/editor/icons/icon_GUI_tree_arrow_down.png and /dev/null differ diff --git a/editor/icons/icon_GUI_tree_arrow_down.svg b/editor/icons/icon_GUI_tree_arrow_down.svg new file mode 100644 index 00000000000..332b49d4cf1 --- /dev/null +++ b/editor/icons/icon_GUI_tree_arrow_down.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_tree_arrow_right.png b/editor/icons/icon_GUI_tree_arrow_right.png deleted file mode 100644 index 13a42f730d5..00000000000 Binary files a/editor/icons/icon_GUI_tree_arrow_right.png and /dev/null differ diff --git a/editor/icons/icon_GUI_tree_arrow_right.svg b/editor/icons/icon_GUI_tree_arrow_right.svg new file mode 100644 index 00000000000..b3da27f1fa3 --- /dev/null +++ b/editor/icons/icon_GUI_tree_arrow_right.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_unchecked.png b/editor/icons/icon_GUI_unchecked.png deleted file mode 100644 index 8341cdc6433..00000000000 Binary files a/editor/icons/icon_GUI_unchecked.png and /dev/null differ diff --git a/editor/icons/icon_GUI_unchecked.svg b/editor/icons/icon_GUI_unchecked.svg new file mode 100644 index 00000000000..4adf3dd61e9 --- /dev/null +++ b/editor/icons/icon_GUI_unchecked.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_vslider_bg.png b/editor/icons/icon_GUI_vslider_bg.png deleted file mode 100644 index fa8c6cac1ff..00000000000 Binary files a/editor/icons/icon_GUI_vslider_bg.png and /dev/null differ diff --git a/editor/icons/icon_GUI_vslider_bg.svg b/editor/icons/icon_GUI_vslider_bg.svg new file mode 100644 index 00000000000..99d01420b62 --- /dev/null +++ b/editor/icons/icon_GUI_vslider_bg.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_vsplit_bg.png b/editor/icons/icon_GUI_vsplit_bg.png deleted file mode 100644 index 0c29b1e35c9..00000000000 Binary files a/editor/icons/icon_GUI_vsplit_bg.png and /dev/null differ diff --git a/editor/icons/icon_GUI_vsplit_bg.svg b/editor/icons/icon_GUI_vsplit_bg.svg new file mode 100644 index 00000000000..8294c446118 --- /dev/null +++ b/editor/icons/icon_GUI_vsplit_bg.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_GUI_vsplitter.png b/editor/icons/icon_GUI_vsplitter.png deleted file mode 100644 index 56fb20bc3ff..00000000000 Binary files a/editor/icons/icon_GUI_vsplitter.png and /dev/null differ diff --git a/editor/icons/icon_GUI_vsplitter.svg b/editor/icons/icon_GUI_vsplitter.svg new file mode 100644 index 00000000000..31b4019486a --- /dev/null +++ b/editor/icons/icon_GUI_vsplitter.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_accept_dialog.png b/editor/icons/icon_accept_dialog.png deleted file mode 100644 index 7530127f824..00000000000 Binary files a/editor/icons/icon_accept_dialog.png and /dev/null differ diff --git a/editor/icons/icon_accept_dialog.svg b/editor/icons/icon_accept_dialog.svg new file mode 100644 index 00000000000..331b88dd744 --- /dev/null +++ b/editor/icons/icon_accept_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_add.png b/editor/icons/icon_add.png deleted file mode 100644 index fa675045bc4..00000000000 Binary files a/editor/icons/icon_add.png and /dev/null differ diff --git a/editor/icons/icon_add.svg b/editor/icons/icon_add.svg new file mode 100644 index 00000000000..685e6e82e8d --- /dev/null +++ b/editor/icons/icon_add.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_add_track.png b/editor/icons/icon_add_track.png deleted file mode 100644 index fa675045bc4..00000000000 Binary files a/editor/icons/icon_add_track.png and /dev/null differ diff --git a/editor/icons/icon_anchor.png b/editor/icons/icon_anchor.png deleted file mode 100644 index 7b02eb448e4..00000000000 Binary files a/editor/icons/icon_anchor.png and /dev/null differ diff --git a/editor/icons/icon_anchor.svg b/editor/icons/icon_anchor.svg new file mode 100644 index 00000000000..9818fe31b18 --- /dev/null +++ b/editor/icons/icon_anchor.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_anim_export.png b/editor/icons/icon_anim_export.png deleted file mode 100644 index b17ecdeb221..00000000000 Binary files a/editor/icons/icon_anim_export.png and /dev/null differ diff --git a/editor/icons/icon_anim_export_all.png b/editor/icons/icon_anim_export_all.png deleted file mode 100644 index 65a3cf57451..00000000000 Binary files a/editor/icons/icon_anim_export_all.png and /dev/null differ diff --git a/editor/icons/icon_anim_get.png b/editor/icons/icon_anim_get.png deleted file mode 100644 index 7edd883f029..00000000000 Binary files a/editor/icons/icon_anim_get.png and /dev/null differ diff --git a/editor/icons/icon_anim_get_hl.png b/editor/icons/icon_anim_get_hl.png deleted file mode 100644 index fa6e94545b4..00000000000 Binary files a/editor/icons/icon_anim_get_hl.png and /dev/null differ diff --git a/editor/icons/icon_anim_import.png b/editor/icons/icon_anim_import.png deleted file mode 100644 index 166e3fecd77..00000000000 Binary files a/editor/icons/icon_anim_import.png and /dev/null differ diff --git a/editor/icons/icon_anim_import_all.png b/editor/icons/icon_anim_import_all.png deleted file mode 100644 index c99893d59de..00000000000 Binary files a/editor/icons/icon_anim_import_all.png and /dev/null differ diff --git a/editor/icons/icon_anim_set.png b/editor/icons/icon_anim_set.png deleted file mode 100644 index c52334c72fc..00000000000 Binary files a/editor/icons/icon_anim_set.png and /dev/null differ diff --git a/editor/icons/icon_anim_set_hl.png b/editor/icons/icon_anim_set_hl.png deleted file mode 100644 index aefaf7f738b..00000000000 Binary files a/editor/icons/icon_anim_set_hl.png and /dev/null differ diff --git a/editor/icons/icon_animated_sprite.png b/editor/icons/icon_animated_sprite.png deleted file mode 100644 index 6b6cb2fbfab..00000000000 Binary files a/editor/icons/icon_animated_sprite.png and /dev/null differ diff --git a/editor/icons/icon_animated_sprite.svg b/editor/icons/icon_animated_sprite.svg new file mode 100644 index 00000000000..fe7fde5a39e --- /dev/null +++ b/editor/icons/icon_animated_sprite.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_animated_sprite_3d.png b/editor/icons/icon_animated_sprite_3d.png deleted file mode 100644 index e04d687bfb2..00000000000 Binary files a/editor/icons/icon_animated_sprite_3d.png and /dev/null differ diff --git a/editor/icons/icon_animated_sprite_3d.svg b/editor/icons/icon_animated_sprite_3d.svg new file mode 100644 index 00000000000..658ba3e5c21 --- /dev/null +++ b/editor/icons/icon_animated_sprite_3d.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_animation.png b/editor/icons/icon_animation.png deleted file mode 100644 index b333f82711b..00000000000 Binary files a/editor/icons/icon_animation.png and /dev/null differ diff --git a/editor/icons/icon_animation.svg b/editor/icons/icon_animation.svg new file mode 100644 index 00000000000..146403ece58 --- /dev/null +++ b/editor/icons/icon_animation.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_animation_node.png b/editor/icons/icon_animation_node.png deleted file mode 100644 index 81026b3a983..00000000000 Binary files a/editor/icons/icon_animation_node.png and /dev/null differ diff --git a/editor/icons/icon_animation_play.png b/editor/icons/icon_animation_play.png deleted file mode 100644 index b405bf98f44..00000000000 Binary files a/editor/icons/icon_animation_play.png and /dev/null differ diff --git a/editor/icons/icon_animation_player.png b/editor/icons/icon_animation_player.png deleted file mode 100644 index 474ec2e647f..00000000000 Binary files a/editor/icons/icon_animation_player.png and /dev/null differ diff --git a/editor/icons/icon_animation_player.svg b/editor/icons/icon_animation_player.svg new file mode 100644 index 00000000000..7c54464cd81 --- /dev/null +++ b/editor/icons/icon_animation_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_animation_set.png b/editor/icons/icon_animation_set.png deleted file mode 100644 index b603382b0c4..00000000000 Binary files a/editor/icons/icon_animation_set.png and /dev/null differ diff --git a/editor/icons/icon_animation_tree.png b/editor/icons/icon_animation_tree.png deleted file mode 100644 index 0bc8e7245a8..00000000000 Binary files a/editor/icons/icon_animation_tree.png and /dev/null differ diff --git a/editor/icons/icon_animation_tree_player.png b/editor/icons/icon_animation_tree_player.png deleted file mode 100644 index 0bc8e7245a8..00000000000 Binary files a/editor/icons/icon_animation_tree_player.png and /dev/null differ diff --git a/editor/icons/icon_animation_tree_player.svg b/editor/icons/icon_animation_tree_player.svg new file mode 100644 index 00000000000..046506fa37b --- /dev/null +++ b/editor/icons/icon_animation_tree_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_area.png b/editor/icons/icon_area.png deleted file mode 100644 index 31b4473d17e..00000000000 Binary files a/editor/icons/icon_area.png and /dev/null differ diff --git a/editor/icons/icon_area.svg b/editor/icons/icon_area.svg new file mode 100644 index 00000000000..22348d50c17 --- /dev/null +++ b/editor/icons/icon_area.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_area_2d.png b/editor/icons/icon_area_2d.png deleted file mode 100644 index 2f9c6bb8d47..00000000000 Binary files a/editor/icons/icon_area_2d.png and /dev/null differ diff --git a/editor/icons/icon_area_2d.svg b/editor/icons/icon_area_2d.svg new file mode 100644 index 00000000000..d6ecb6abe52 --- /dev/null +++ b/editor/icons/icon_area_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_array_data.png b/editor/icons/icon_array_data.png deleted file mode 100644 index 447acaab2b0..00000000000 Binary files a/editor/icons/icon_array_data.png and /dev/null differ diff --git a/editor/icons/icon_array_float.png b/editor/icons/icon_array_float.png deleted file mode 100644 index d1b78b4c3e5..00000000000 Binary files a/editor/icons/icon_array_float.png and /dev/null differ diff --git a/editor/icons/icon_array_int.png b/editor/icons/icon_array_int.png deleted file mode 100644 index 2c4ec5bafb7..00000000000 Binary files a/editor/icons/icon_array_int.png and /dev/null differ diff --git a/editor/icons/icon_array_string.png b/editor/icons/icon_array_string.png deleted file mode 100644 index a2e3f11c357..00000000000 Binary files a/editor/icons/icon_array_string.png and /dev/null differ diff --git a/editor/icons/icon_array_variant.png b/editor/icons/icon_array_variant.png deleted file mode 100644 index ab294898ad3..00000000000 Binary files a/editor/icons/icon_array_variant.png and /dev/null differ diff --git a/editor/icons/icon_arrow_left.png b/editor/icons/icon_arrow_left.png deleted file mode 100644 index ad382516c22..00000000000 Binary files a/editor/icons/icon_arrow_left.png and /dev/null differ diff --git a/editor/icons/icon_arrow_left.svg b/editor/icons/icon_arrow_left.svg new file mode 100644 index 00000000000..b10afb09867 --- /dev/null +++ b/editor/icons/icon_arrow_left.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_arrow_left_disabled.png b/editor/icons/icon_arrow_left_disabled.png deleted file mode 100644 index f1f9d0f988d..00000000000 Binary files a/editor/icons/icon_arrow_left_disabled.png and /dev/null differ diff --git a/editor/icons/icon_arrow_right.png b/editor/icons/icon_arrow_right.png deleted file mode 100644 index 6260d44facf..00000000000 Binary files a/editor/icons/icon_arrow_right.png and /dev/null differ diff --git a/editor/icons/icon_arrow_right.svg b/editor/icons/icon_arrow_right.svg new file mode 100644 index 00000000000..a51b15dc8de --- /dev/null +++ b/editor/icons/icon_arrow_right.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_arrow_right_disabled.png b/editor/icons/icon_arrow_right_disabled.png deleted file mode 100644 index 840cd0da0a3..00000000000 Binary files a/editor/icons/icon_arrow_right_disabled.png and /dev/null differ diff --git a/editor/icons/icon_arrow_up.png b/editor/icons/icon_arrow_up.png deleted file mode 100644 index 2f02f48e18b..00000000000 Binary files a/editor/icons/icon_arrow_up.png and /dev/null differ diff --git a/editor/icons/icon_arrow_up.svg b/editor/icons/icon_arrow_up.svg new file mode 100644 index 00000000000..77a20e8c506 --- /dev/null +++ b/editor/icons/icon_arrow_up.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_arrow_up_disabled.png b/editor/icons/icon_arrow_up_disabled.png deleted file mode 100644 index fb46aa13735..00000000000 Binary files a/editor/icons/icon_arrow_up_disabled.png and /dev/null differ diff --git a/editor/icons/icon_asset_lib.png b/editor/icons/icon_asset_lib.png deleted file mode 100644 index 70d708a58cd..00000000000 Binary files a/editor/icons/icon_asset_lib.png and /dev/null differ diff --git a/editor/icons/icon_asset_lib.svg b/editor/icons/icon_asset_lib.svg new file mode 100644 index 00000000000..fcd670817dc --- /dev/null +++ b/editor/icons/icon_asset_lib.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_atlas_texture.png b/editor/icons/icon_atlas_texture.png deleted file mode 100644 index 438ac8bfb55..00000000000 Binary files a/editor/icons/icon_atlas_texture.png and /dev/null differ diff --git a/editor/icons/icon_atlas_texture.svg b/editor/icons/icon_atlas_texture.svg new file mode 100644 index 00000000000..af3e488883b --- /dev/null +++ b/editor/icons/icon_atlas_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_audio_bus_bypass.png b/editor/icons/icon_audio_bus_bypass.png deleted file mode 100644 index 95a3a0177a5..00000000000 Binary files a/editor/icons/icon_audio_bus_bypass.png and /dev/null differ diff --git a/editor/icons/icon_audio_bus_bypass.svg b/editor/icons/icon_audio_bus_bypass.svg new file mode 100644 index 00000000000..75c1caf7f1d --- /dev/null +++ b/editor/icons/icon_audio_bus_bypass.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_audio_bus_layout.png b/editor/icons/icon_audio_bus_layout.png deleted file mode 100644 index bfa5e2c9336..00000000000 Binary files a/editor/icons/icon_audio_bus_layout.png and /dev/null differ diff --git a/editor/icons/icon_audio_bus_layout.svg b/editor/icons/icon_audio_bus_layout.svg new file mode 100644 index 00000000000..9162722eb22 --- /dev/null +++ b/editor/icons/icon_audio_bus_layout.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_audio_bus_mute.png b/editor/icons/icon_audio_bus_mute.png deleted file mode 100644 index b074d848e0a..00000000000 Binary files a/editor/icons/icon_audio_bus_mute.png and /dev/null differ diff --git a/editor/icons/icon_audio_bus_mute.svg b/editor/icons/icon_audio_bus_mute.svg new file mode 100644 index 00000000000..a7d085d5359 --- /dev/null +++ b/editor/icons/icon_audio_bus_mute.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_audio_bus_solo.png b/editor/icons/icon_audio_bus_solo.png deleted file mode 100644 index 085269f2319..00000000000 Binary files a/editor/icons/icon_audio_bus_solo.png and /dev/null differ diff --git a/editor/icons/icon_audio_bus_solo.svg b/editor/icons/icon_audio_bus_solo.svg new file mode 100644 index 00000000000..e84c1cca25f --- /dev/null +++ b/editor/icons/icon_audio_bus_solo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_audio_effect_amplify.png b/editor/icons/icon_audio_effect_amplify.png deleted file mode 100644 index 6588b90372e..00000000000 Binary files a/editor/icons/icon_audio_effect_amplify.png and /dev/null differ diff --git a/editor/icons/icon_audio_effect_amplify.svg b/editor/icons/icon_audio_effect_amplify.svg new file mode 100644 index 00000000000..1cb9be9b104 --- /dev/null +++ b/editor/icons/icon_audio_effect_amplify.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_audio_stream_gibberish.png b/editor/icons/icon_audio_stream_gibberish.png deleted file mode 100644 index 60c85fa5b40..00000000000 Binary files a/editor/icons/icon_audio_stream_gibberish.png and /dev/null differ diff --git a/editor/icons/icon_audio_stream_gibberish.svg b/editor/icons/icon_audio_stream_gibberish.svg new file mode 100644 index 00000000000..4b503a211a2 --- /dev/null +++ b/editor/icons/icon_audio_stream_gibberish.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_audio_stream_m_p_c.png b/editor/icons/icon_audio_stream_m_p_c.png deleted file mode 100644 index 665d7b56a16..00000000000 Binary files a/editor/icons/icon_audio_stream_m_p_c.png and /dev/null differ diff --git a/editor/icons/icon_audio_stream_o_g_g_vorbis.png b/editor/icons/icon_audio_stream_o_g_g_vorbis.png deleted file mode 100644 index 7860e111d0d..00000000000 Binary files a/editor/icons/icon_audio_stream_o_g_g_vorbis.png and /dev/null differ diff --git a/editor/icons/icon_audio_stream_opus.png b/editor/icons/icon_audio_stream_opus.png deleted file mode 100644 index 69b0c83b4dd..00000000000 Binary files a/editor/icons/icon_audio_stream_opus.png and /dev/null differ diff --git a/editor/icons/icon_audio_stream_player.png b/editor/icons/icon_audio_stream_player.png deleted file mode 100644 index c3e6d6cafad..00000000000 Binary files a/editor/icons/icon_audio_stream_player.png and /dev/null differ diff --git a/editor/icons/icon_audio_stream_player.svg b/editor/icons/icon_audio_stream_player.svg new file mode 100644 index 00000000000..218fd995a0a --- /dev/null +++ b/editor/icons/icon_audio_stream_player.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_audio_stream_player_2_d.png b/editor/icons/icon_audio_stream_player_2_d.png deleted file mode 100644 index a332b876eab..00000000000 Binary files a/editor/icons/icon_audio_stream_player_2_d.png and /dev/null differ diff --git a/editor/icons/icon_audio_stream_player_2_d.svg b/editor/icons/icon_audio_stream_player_2_d.svg new file mode 100644 index 00000000000..a431b84a557 --- /dev/null +++ b/editor/icons/icon_audio_stream_player_2_d.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_audio_stream_player_3_d.png b/editor/icons/icon_audio_stream_player_3_d.png deleted file mode 100644 index 60e3528ffd7..00000000000 Binary files a/editor/icons/icon_audio_stream_player_3_d.png and /dev/null differ diff --git a/editor/icons/icon_audio_stream_player_3_d.svg b/editor/icons/icon_audio_stream_player_3_d.svg new file mode 100644 index 00000000000..4ce9d6da587 --- /dev/null +++ b/editor/icons/icon_audio_stream_player_3_d.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_audio_stream_sample.png b/editor/icons/icon_audio_stream_sample.png deleted file mode 100644 index 2b97f6198b1..00000000000 Binary files a/editor/icons/icon_audio_stream_sample.png and /dev/null differ diff --git a/editor/icons/icon_audio_stream_sample.svg b/editor/icons/icon_audio_stream_sample.svg new file mode 100644 index 00000000000..f0be1dc3032 --- /dev/null +++ b/editor/icons/icon_audio_stream_sample.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_audio_stream_speex.png b/editor/icons/icon_audio_stream_speex.png deleted file mode 100644 index 6fefe47284a..00000000000 Binary files a/editor/icons/icon_audio_stream_speex.png and /dev/null differ diff --git a/editor/icons/icon_auto_play.png b/editor/icons/icon_auto_play.png deleted file mode 100644 index a6be64a1d1e..00000000000 Binary files a/editor/icons/icon_auto_play.png and /dev/null differ diff --git a/editor/icons/icon_auto_play.svg b/editor/icons/icon_auto_play.svg new file mode 100644 index 00000000000..78e48b2bc36 --- /dev/null +++ b/editor/icons/icon_auto_play.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_b_c_s_f_x.png b/editor/icons/icon_b_c_s_f_x.png deleted file mode 100644 index 2100aea6a0a..00000000000 Binary files a/editor/icons/icon_b_c_s_f_x.png and /dev/null differ diff --git a/editor/icons/icon_b_g_color_f_x.png b/editor/icons/icon_b_g_color_f_x.png deleted file mode 100644 index 5b7552f6d5e..00000000000 Binary files a/editor/icons/icon_b_g_color_f_x.png and /dev/null differ diff --git a/editor/icons/icon_b_g_image_f_x.png b/editor/icons/icon_b_g_image_f_x.png deleted file mode 100644 index 7e8ec86eecf..00000000000 Binary files a/editor/icons/icon_b_g_image_f_x.png and /dev/null differ diff --git a/editor/icons/icon_back.png b/editor/icons/icon_back.png deleted file mode 100644 index 8497d2cf4b8..00000000000 Binary files a/editor/icons/icon_back.png and /dev/null differ diff --git a/editor/icons/icon_back.svg b/editor/icons/icon_back.svg new file mode 100644 index 00000000000..184369f1e62 --- /dev/null +++ b/editor/icons/icon_back.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_back_buffer_copy.png b/editor/icons/icon_back_buffer_copy.png deleted file mode 100644 index 35f04ddac8b..00000000000 Binary files a/editor/icons/icon_back_buffer_copy.png and /dev/null differ diff --git a/editor/icons/icon_back_buffer_copy.svg b/editor/icons/icon_back_buffer_copy.svg new file mode 100644 index 00000000000..8231c7133c5 --- /dev/null +++ b/editor/icons/icon_back_buffer_copy.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_back_disabled.png b/editor/icons/icon_back_disabled.png deleted file mode 100644 index 31aab496e26..00000000000 Binary files a/editor/icons/icon_back_disabled.png and /dev/null differ diff --git a/editor/icons/icon_back_no.png b/editor/icons/icon_back_no.png deleted file mode 100644 index 539ce4124ab..00000000000 Binary files a/editor/icons/icon_back_no.png and /dev/null differ diff --git a/editor/icons/icon_bake.png b/editor/icons/icon_bake.png deleted file mode 100644 index 3b7fce5c9f9..00000000000 Binary files a/editor/icons/icon_bake.png and /dev/null differ diff --git a/editor/icons/icon_bake.svg b/editor/icons/icon_bake.svg new file mode 100644 index 00000000000..4a9ccfed12c --- /dev/null +++ b/editor/icons/icon_bake.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_baked_light.png b/editor/icons/icon_baked_light.png deleted file mode 100644 index c667b542c12..00000000000 Binary files a/editor/icons/icon_baked_light.png and /dev/null differ diff --git a/editor/icons/icon_baked_light.svg b/editor/icons/icon_baked_light.svg new file mode 100644 index 00000000000..f5bf07a4441 --- /dev/null +++ b/editor/icons/icon_baked_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_baked_light_instance.png b/editor/icons/icon_baked_light_instance.png deleted file mode 100644 index c667b542c12..00000000000 Binary files a/editor/icons/icon_baked_light_instance.png and /dev/null differ diff --git a/editor/icons/icon_baked_light_instance.svg b/editor/icons/icon_baked_light_instance.svg new file mode 100644 index 00000000000..f5bf07a4441 --- /dev/null +++ b/editor/icons/icon_baked_light_instance.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_baked_light_sampler.png b/editor/icons/icon_baked_light_sampler.png deleted file mode 100644 index 15ff7b98b92..00000000000 Binary files a/editor/icons/icon_baked_light_sampler.png and /dev/null differ diff --git a/editor/icons/icon_baked_light_sampler.svg b/editor/icons/icon_baked_light_sampler.svg new file mode 100644 index 00000000000..0bf630039dc --- /dev/null +++ b/editor/icons/icon_baked_light_sampler.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_bit_map.png b/editor/icons/icon_bit_map.png deleted file mode 100644 index 58468c98bd1..00000000000 Binary files a/editor/icons/icon_bit_map.png and /dev/null differ diff --git a/editor/icons/icon_bit_map.svg b/editor/icons/icon_bit_map.svg new file mode 100644 index 00000000000..fbfe0e4b5ac --- /dev/null +++ b/editor/icons/icon_bit_map.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_bitmap_font.png b/editor/icons/icon_bitmap_font.png deleted file mode 100644 index 5334c335dcc..00000000000 Binary files a/editor/icons/icon_bitmap_font.png and /dev/null differ diff --git a/editor/icons/icon_bitmap_font.svg b/editor/icons/icon_bitmap_font.svg new file mode 100644 index 00000000000..ce5f88b97cc --- /dev/null +++ b/editor/icons/icon_bitmap_font.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_blend.png b/editor/icons/icon_blend.png deleted file mode 100644 index 1676c650c2d..00000000000 Binary files a/editor/icons/icon_blend.png and /dev/null differ diff --git a/editor/icons/icon_blend.svg b/editor/icons/icon_blend.svg new file mode 100644 index 00000000000..3d24fc3b6bc --- /dev/null +++ b/editor/icons/icon_blend.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_bone.png b/editor/icons/icon_bone.png deleted file mode 100644 index 2d9a7b47f33..00000000000 Binary files a/editor/icons/icon_bone.png and /dev/null differ diff --git a/editor/icons/icon_bone.svg b/editor/icons/icon_bone.svg new file mode 100644 index 00000000000..01662cd9aa2 --- /dev/null +++ b/editor/icons/icon_bone.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_bone_attachment.png b/editor/icons/icon_bone_attachment.png deleted file mode 100644 index 882bb55f44f..00000000000 Binary files a/editor/icons/icon_bone_attachment.png and /dev/null differ diff --git a/editor/icons/icon_bone_attachment.svg b/editor/icons/icon_bone_attachment.svg new file mode 100644 index 00000000000..1dbc0f1ed39 --- /dev/null +++ b/editor/icons/icon_bone_attachment.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_bone_track.png b/editor/icons/icon_bone_track.png deleted file mode 100644 index 1e55e53d6b3..00000000000 Binary files a/editor/icons/icon_bone_track.png and /dev/null differ diff --git a/editor/icons/icon_bone_track.svg b/editor/icons/icon_bone_track.svg new file mode 100644 index 00000000000..a8adbb3dd15 --- /dev/null +++ b/editor/icons/icon_bone_track.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_bool.png b/editor/icons/icon_bool.png deleted file mode 100644 index c680bc195a8..00000000000 Binary files a/editor/icons/icon_bool.png and /dev/null differ diff --git a/editor/icons/icon_bool.svg b/editor/icons/icon_bool.svg new file mode 100644 index 00000000000..56fcba5833b --- /dev/null +++ b/editor/icons/icon_bool.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_box_shape.png b/editor/icons/icon_box_shape.png deleted file mode 100644 index 68ec6088c9a..00000000000 Binary files a/editor/icons/icon_box_shape.png and /dev/null differ diff --git a/editor/icons/icon_box_shape.svg b/editor/icons/icon_box_shape.svg new file mode 100644 index 00000000000..b11edb16ca7 --- /dev/null +++ b/editor/icons/icon_box_shape.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_bus_vu_db.png b/editor/icons/icon_bus_vu_db.png deleted file mode 100644 index 2c51a2e5592..00000000000 Binary files a/editor/icons/icon_bus_vu_db.png and /dev/null differ diff --git a/editor/icons/icon_bus_vu_db.svg b/editor/icons/icon_bus_vu_db.svg new file mode 100644 index 00000000000..23bcd8841cb --- /dev/null +++ b/editor/icons/icon_bus_vu_db.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_bus_vu_empty.png b/editor/icons/icon_bus_vu_empty.png deleted file mode 100644 index 32d886b1a2f..00000000000 Binary files a/editor/icons/icon_bus_vu_empty.png and /dev/null differ diff --git a/editor/icons/icon_bus_vu_empty.svg b/editor/icons/icon_bus_vu_empty.svg new file mode 100644 index 00000000000..52c86ac7049 --- /dev/null +++ b/editor/icons/icon_bus_vu_empty.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_bus_vu_frozen.png b/editor/icons/icon_bus_vu_frozen.png deleted file mode 100644 index 4e9b8f4b4bb..00000000000 Binary files a/editor/icons/icon_bus_vu_frozen.png and /dev/null differ diff --git a/editor/icons/icon_bus_vu_frozen.svg b/editor/icons/icon_bus_vu_frozen.svg new file mode 100644 index 00000000000..99884d33fc8 --- /dev/null +++ b/editor/icons/icon_bus_vu_frozen.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_bus_vu_full.png b/editor/icons/icon_bus_vu_full.png deleted file mode 100644 index b47deea254a..00000000000 Binary files a/editor/icons/icon_bus_vu_full.png and /dev/null differ diff --git a/editor/icons/icon_bus_vu_full.svg b/editor/icons/icon_bus_vu_full.svg new file mode 100644 index 00000000000..a91b8a06c6f --- /dev/null +++ b/editor/icons/icon_bus_vu_full.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_button.png b/editor/icons/icon_button.png deleted file mode 100644 index 0c39e003e44..00000000000 Binary files a/editor/icons/icon_button.png and /dev/null differ diff --git a/editor/icons/icon_button.svg b/editor/icons/icon_button.svg new file mode 100644 index 00000000000..605546d1740 --- /dev/null +++ b/editor/icons/icon_button.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_button_group.png b/editor/icons/icon_button_group.png deleted file mode 100644 index ac2e484abc2..00000000000 Binary files a/editor/icons/icon_button_group.png and /dev/null differ diff --git a/editor/icons/icon_button_group.svg b/editor/icons/icon_button_group.svg new file mode 100644 index 00000000000..110688adaf3 --- /dev/null +++ b/editor/icons/icon_button_group.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_camera.png b/editor/icons/icon_camera.png deleted file mode 100644 index 4dff1791ad4..00000000000 Binary files a/editor/icons/icon_camera.png and /dev/null differ diff --git a/editor/icons/icon_camera.svg b/editor/icons/icon_camera.svg new file mode 100644 index 00000000000..aaacdec36c3 --- /dev/null +++ b/editor/icons/icon_camera.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_camera_2d.png b/editor/icons/icon_camera_2d.png deleted file mode 100644 index 6497997afe4..00000000000 Binary files a/editor/icons/icon_camera_2d.png and /dev/null differ diff --git a/editor/icons/icon_camera_2d.svg b/editor/icons/icon_camera_2d.svg new file mode 100644 index 00000000000..089f8645114 --- /dev/null +++ b/editor/icons/icon_camera_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_canvas_item.png b/editor/icons/icon_canvas_item.png deleted file mode 100644 index 64f5d8abdfe..00000000000 Binary files a/editor/icons/icon_canvas_item.png and /dev/null differ diff --git a/editor/icons/icon_canvas_item.svg b/editor/icons/icon_canvas_item.svg new file mode 100644 index 00000000000..72503faea3d --- /dev/null +++ b/editor/icons/icon_canvas_item.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_canvas_item_material.png b/editor/icons/icon_canvas_item_material.png deleted file mode 100644 index a04f6e8f5fe..00000000000 Binary files a/editor/icons/icon_canvas_item_material.png and /dev/null differ diff --git a/editor/icons/icon_canvas_item_material.svg b/editor/icons/icon_canvas_item_material.svg new file mode 100644 index 00000000000..d043e6a5a12 --- /dev/null +++ b/editor/icons/icon_canvas_item_material.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_canvas_item_shader.png b/editor/icons/icon_canvas_item_shader.png deleted file mode 100644 index 8392f889d10..00000000000 Binary files a/editor/icons/icon_canvas_item_shader.png and /dev/null differ diff --git a/editor/icons/icon_canvas_item_shader.svg b/editor/icons/icon_canvas_item_shader.svg new file mode 100644 index 00000000000..e92dc7f555d --- /dev/null +++ b/editor/icons/icon_canvas_item_shader.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_canvas_item_shader_graph.png b/editor/icons/icon_canvas_item_shader_graph.png deleted file mode 100644 index f40e3755af8..00000000000 Binary files a/editor/icons/icon_canvas_item_shader_graph.png and /dev/null differ diff --git a/editor/icons/icon_canvas_item_shader_graph.svg b/editor/icons/icon_canvas_item_shader_graph.svg new file mode 100644 index 00000000000..4079dd9f76c --- /dev/null +++ b/editor/icons/icon_canvas_item_shader_graph.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_canvas_layer.png b/editor/icons/icon_canvas_layer.png deleted file mode 100644 index bb32d6d3adf..00000000000 Binary files a/editor/icons/icon_canvas_layer.png and /dev/null differ diff --git a/editor/icons/icon_canvas_layer.svg b/editor/icons/icon_canvas_layer.svg new file mode 100644 index 00000000000..9a2ab5de9f6 --- /dev/null +++ b/editor/icons/icon_canvas_layer.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_canvas_modulate.png b/editor/icons/icon_canvas_modulate.png deleted file mode 100644 index b76e5322687..00000000000 Binary files a/editor/icons/icon_canvas_modulate.png and /dev/null differ diff --git a/editor/icons/icon_canvas_modulate.svg b/editor/icons/icon_canvas_modulate.svg new file mode 100644 index 00000000000..63c230c2b2a --- /dev/null +++ b/editor/icons/icon_canvas_modulate.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_capsule_mesh.png b/editor/icons/icon_capsule_mesh.png deleted file mode 100644 index e656b4b0475..00000000000 Binary files a/editor/icons/icon_capsule_mesh.png and /dev/null differ diff --git a/editor/icons/icon_capsule_mesh.svg b/editor/icons/icon_capsule_mesh.svg new file mode 100644 index 00000000000..bc736200a45 --- /dev/null +++ b/editor/icons/icon_capsule_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_capsule_shape.png b/editor/icons/icon_capsule_shape.png deleted file mode 100644 index bc00e491d3b..00000000000 Binary files a/editor/icons/icon_capsule_shape.png and /dev/null differ diff --git a/editor/icons/icon_capsule_shape.svg b/editor/icons/icon_capsule_shape.svg new file mode 100644 index 00000000000..2940816d605 --- /dev/null +++ b/editor/icons/icon_capsule_shape.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_capsule_shape_2d.png b/editor/icons/icon_capsule_shape_2d.png deleted file mode 100644 index 6f6554fbc75..00000000000 Binary files a/editor/icons/icon_capsule_shape_2d.png and /dev/null differ diff --git a/editor/icons/icon_capsule_shape_2d.svg b/editor/icons/icon_capsule_shape_2d.svg new file mode 100644 index 00000000000..3549a289e01 --- /dev/null +++ b/editor/icons/icon_capsule_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_center_container.png b/editor/icons/icon_center_container.png deleted file mode 100644 index 61904e7b00f..00000000000 Binary files a/editor/icons/icon_center_container.png and /dev/null differ diff --git a/editor/icons/icon_center_container.svg b/editor/icons/icon_center_container.svg new file mode 100644 index 00000000000..446e9e0f9ca --- /dev/null +++ b/editor/icons/icon_center_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_character_body.png b/editor/icons/icon_character_body.png deleted file mode 100644 index b859a271d54..00000000000 Binary files a/editor/icons/icon_character_body.png and /dev/null differ diff --git a/editor/icons/icon_character_camera.png b/editor/icons/icon_character_camera.png deleted file mode 100644 index c2384879424..00000000000 Binary files a/editor/icons/icon_character_camera.png and /dev/null differ diff --git a/editor/icons/icon_check_box.png b/editor/icons/icon_check_box.png deleted file mode 100644 index f0e614d0e7e..00000000000 Binary files a/editor/icons/icon_check_box.png and /dev/null differ diff --git a/editor/icons/icon_check_box.svg b/editor/icons/icon_check_box.svg new file mode 100644 index 00000000000..1bbebe3fb59 --- /dev/null +++ b/editor/icons/icon_check_box.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_check_button.png b/editor/icons/icon_check_button.png deleted file mode 100644 index 968188f43d4..00000000000 Binary files a/editor/icons/icon_check_button.png and /dev/null differ diff --git a/editor/icons/icon_check_button.svg b/editor/icons/icon_check_button.svg new file mode 100644 index 00000000000..c6e0aa99c9f --- /dev/null +++ b/editor/icons/icon_check_button.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_checked.png b/editor/icons/icon_checked.png deleted file mode 100644 index d3442930bb9..00000000000 Binary files a/editor/icons/icon_checked.png and /dev/null differ diff --git a/editor/icons/icon_checkerboard.png b/editor/icons/icon_checkerboard.png deleted file mode 100644 index 5f658c765ea..00000000000 Binary files a/editor/icons/icon_checkerboard.png and /dev/null differ diff --git a/editor/icons/icon_circle_shape_2d.png b/editor/icons/icon_circle_shape_2d.png deleted file mode 100644 index 7865ed3dbe1..00000000000 Binary files a/editor/icons/icon_circle_shape_2d.png and /dev/null differ diff --git a/editor/icons/icon_circle_shape_2d.svg b/editor/icons/icon_circle_shape_2d.svg new file mode 100644 index 00000000000..bfe5aec81a1 --- /dev/null +++ b/editor/icons/icon_circle_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_class_list.png b/editor/icons/icon_class_list.png deleted file mode 100644 index 5faff250d7e..00000000000 Binary files a/editor/icons/icon_class_list.png and /dev/null differ diff --git a/editor/icons/icon_class_list.svg b/editor/icons/icon_class_list.svg new file mode 100644 index 00000000000..1f2b37bd253 --- /dev/null +++ b/editor/icons/icon_class_list.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_click2edit.png b/editor/icons/icon_click2edit.png deleted file mode 100644 index 795756dff0c..00000000000 Binary files a/editor/icons/icon_click2edit.png and /dev/null differ diff --git a/editor/icons/icon_close.png b/editor/icons/icon_close.png deleted file mode 100644 index 20d9b5c810d..00000000000 Binary files a/editor/icons/icon_close.png and /dev/null differ diff --git a/editor/icons/icon_close.svg b/editor/icons/icon_close.svg new file mode 100644 index 00000000000..f797070e16c --- /dev/null +++ b/editor/icons/icon_close.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_close_hover.png b/editor/icons/icon_close_hover.png deleted file mode 100644 index cb519691e57..00000000000 Binary files a/editor/icons/icon_close_hover.png and /dev/null differ diff --git a/editor/icons/icon_collapse.png b/editor/icons/icon_collapse.png deleted file mode 100644 index ad2442183d5..00000000000 Binary files a/editor/icons/icon_collapse.png and /dev/null differ diff --git a/editor/icons/icon_collapse.svg b/editor/icons/icon_collapse.svg new file mode 100644 index 00000000000..ace258a38ad --- /dev/null +++ b/editor/icons/icon_collapse.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_collapse_hl.png b/editor/icons/icon_collapse_hl.png deleted file mode 100644 index 0dfbc8b175a..00000000000 Binary files a/editor/icons/icon_collapse_hl.png and /dev/null differ diff --git a/editor/icons/icon_collision.png b/editor/icons/icon_collision.png deleted file mode 100644 index ccda8b6a256..00000000000 Binary files a/editor/icons/icon_collision.png and /dev/null differ diff --git a/editor/icons/icon_collision_2d.png b/editor/icons/icon_collision_2d.png deleted file mode 100644 index b372749cb0e..00000000000 Binary files a/editor/icons/icon_collision_2d.png and /dev/null differ diff --git a/editor/icons/icon_collision_2d.svg b/editor/icons/icon_collision_2d.svg new file mode 100644 index 00000000000..9d90a66c6f3 --- /dev/null +++ b/editor/icons/icon_collision_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_collision_polygon.png b/editor/icons/icon_collision_polygon.png deleted file mode 100644 index 738f80c3f36..00000000000 Binary files a/editor/icons/icon_collision_polygon.png and /dev/null differ diff --git a/editor/icons/icon_collision_polygon.svg b/editor/icons/icon_collision_polygon.svg new file mode 100644 index 00000000000..1c5e0be7815 --- /dev/null +++ b/editor/icons/icon_collision_polygon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_collision_polygon_2d.png b/editor/icons/icon_collision_polygon_2d.png deleted file mode 100644 index b372749cb0e..00000000000 Binary files a/editor/icons/icon_collision_polygon_2d.png and /dev/null differ diff --git a/editor/icons/icon_collision_shape.png b/editor/icons/icon_collision_shape.png deleted file mode 100644 index 7bcd61c719a..00000000000 Binary files a/editor/icons/icon_collision_shape.png and /dev/null differ diff --git a/editor/icons/icon_collision_shape.svg b/editor/icons/icon_collision_shape.svg new file mode 100644 index 00000000000..7975b288f5d --- /dev/null +++ b/editor/icons/icon_collision_shape.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_collision_shape_2d.png b/editor/icons/icon_collision_shape_2d.png deleted file mode 100644 index afc13269592..00000000000 Binary files a/editor/icons/icon_collision_shape_2d.png and /dev/null differ diff --git a/editor/icons/icon_collision_shape_2d.svg b/editor/icons/icon_collision_shape_2d.svg new file mode 100644 index 00000000000..b5fd8c71053 --- /dev/null +++ b/editor/icons/icon_collision_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_color.png b/editor/icons/icon_color.png deleted file mode 100644 index 589a6d3ffac..00000000000 Binary files a/editor/icons/icon_color.png and /dev/null differ diff --git a/editor/icons/icon_color.svg b/editor/icons/icon_color.svg new file mode 100644 index 00000000000..7e2d9216f3f --- /dev/null +++ b/editor/icons/icon_color.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_color_pick.png b/editor/icons/icon_color_pick.png deleted file mode 100644 index 15679a9558a..00000000000 Binary files a/editor/icons/icon_color_pick.png and /dev/null differ diff --git a/editor/icons/icon_color_pick.svg b/editor/icons/icon_color_pick.svg new file mode 100644 index 00000000000..893afb4eb41 --- /dev/null +++ b/editor/icons/icon_color_pick.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_color_picker.png b/editor/icons/icon_color_picker.png deleted file mode 100644 index 6d1114054a5..00000000000 Binary files a/editor/icons/icon_color_picker.png and /dev/null differ diff --git a/editor/icons/icon_color_picker.svg b/editor/icons/icon_color_picker.svg new file mode 100644 index 00000000000..272dfeca483 --- /dev/null +++ b/editor/icons/icon_color_picker.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_color_picker_button.png b/editor/icons/icon_color_picker_button.png deleted file mode 100644 index a399128773e..00000000000 Binary files a/editor/icons/icon_color_picker_button.png and /dev/null differ diff --git a/editor/icons/icon_color_picker_button.svg b/editor/icons/icon_color_picker_button.svg new file mode 100644 index 00000000000..5d734a5b201 --- /dev/null +++ b/editor/icons/icon_color_picker_button.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_color_ramp.png b/editor/icons/icon_color_ramp.png deleted file mode 100644 index 03d19a56bbb..00000000000 Binary files a/editor/icons/icon_color_ramp.png and /dev/null differ diff --git a/editor/icons/icon_color_ramp.svg b/editor/icons/icon_color_ramp.svg new file mode 100644 index 00000000000..d05355d8c72 --- /dev/null +++ b/editor/icons/icon_color_ramp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_color_rect.png b/editor/icons/icon_color_rect.png deleted file mode 100644 index 4199a890490..00000000000 Binary files a/editor/icons/icon_color_rect.png and /dev/null differ diff --git a/editor/icons/icon_color_rect.svg b/editor/icons/icon_color_rect.svg new file mode 100644 index 00000000000..c0cd07061e1 --- /dev/null +++ b/editor/icons/icon_color_rect.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_concave_polygon_shape.png b/editor/icons/icon_concave_polygon_shape.png deleted file mode 100644 index dc1ff1d3881..00000000000 Binary files a/editor/icons/icon_concave_polygon_shape.png and /dev/null differ diff --git a/editor/icons/icon_concave_polygon_shape.svg b/editor/icons/icon_concave_polygon_shape.svg new file mode 100644 index 00000000000..0df696f8b73 --- /dev/null +++ b/editor/icons/icon_concave_polygon_shape.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_concave_polygon_shape_2d.png b/editor/icons/icon_concave_polygon_shape_2d.png deleted file mode 100644 index 2e87eea5aa7..00000000000 Binary files a/editor/icons/icon_concave_polygon_shape_2d.png and /dev/null differ diff --git a/editor/icons/icon_concave_polygon_shape_2d.svg b/editor/icons/icon_concave_polygon_shape_2d.svg new file mode 100644 index 00000000000..3264e69ffc8 --- /dev/null +++ b/editor/icons/icon_concave_polygon_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_cone_twist_joint.png b/editor/icons/icon_cone_twist_joint.png deleted file mode 100644 index bbf93f2f71f..00000000000 Binary files a/editor/icons/icon_cone_twist_joint.png and /dev/null differ diff --git a/editor/icons/icon_cone_twist_joint.svg b/editor/icons/icon_cone_twist_joint.svg new file mode 100644 index 00000000000..c9d92d65374 --- /dev/null +++ b/editor/icons/icon_cone_twist_joint.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_confirmation_dialog.png b/editor/icons/icon_confirmation_dialog.png deleted file mode 100644 index ffadb9d9077..00000000000 Binary files a/editor/icons/icon_confirmation_dialog.png and /dev/null differ diff --git a/editor/icons/icon_confirmation_dialog.svg b/editor/icons/icon_confirmation_dialog.svg new file mode 100644 index 00000000000..491a3bf1f30 --- /dev/null +++ b/editor/icons/icon_confirmation_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_connect.png b/editor/icons/icon_connect.png deleted file mode 100644 index 0963063bed7..00000000000 Binary files a/editor/icons/icon_connect.png and /dev/null differ diff --git a/editor/icons/icon_connect.svg b/editor/icons/icon_connect.svg new file mode 100644 index 00000000000..43ec84646c0 --- /dev/null +++ b/editor/icons/icon_connect.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_connection_and_groups.png b/editor/icons/icon_connection_and_groups.png deleted file mode 100644 index 76e036e5bbb..00000000000 Binary files a/editor/icons/icon_connection_and_groups.png and /dev/null differ diff --git a/editor/icons/icon_connection_and_groups.svg b/editor/icons/icon_connection_and_groups.svg new file mode 100644 index 00000000000..67a73f02b3a --- /dev/null +++ b/editor/icons/icon_connection_and_groups.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_console.png b/editor/icons/icon_console.png deleted file mode 100644 index 7dc7407ef76..00000000000 Binary files a/editor/icons/icon_console.png and /dev/null differ diff --git a/editor/icons/icon_container.png b/editor/icons/icon_container.png deleted file mode 100644 index ae0d76072bd..00000000000 Binary files a/editor/icons/icon_container.png and /dev/null differ diff --git a/editor/icons/icon_container.svg b/editor/icons/icon_container.svg new file mode 100644 index 00000000000..90b086a215a --- /dev/null +++ b/editor/icons/icon_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_control.png b/editor/icons/icon_control.png deleted file mode 100644 index 0d2a82ad0ed..00000000000 Binary files a/editor/icons/icon_control.png and /dev/null differ diff --git a/editor/icons/icon_control.svg b/editor/icons/icon_control.svg new file mode 100644 index 00000000000..3db18ac0e54 --- /dev/null +++ b/editor/icons/icon_control.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_control_align_bottom_center.png b/editor/icons/icon_control_align_bottom_center.png deleted file mode 100644 index 166f122acea..00000000000 Binary files a/editor/icons/icon_control_align_bottom_center.png and /dev/null differ diff --git a/editor/icons/icon_control_align_bottom_center.svg b/editor/icons/icon_control_align_bottom_center.svg new file mode 100644 index 00000000000..9d1219078e9 --- /dev/null +++ b/editor/icons/icon_control_align_bottom_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_bottom_left.png b/editor/icons/icon_control_align_bottom_left.png deleted file mode 100644 index 238f33a0981..00000000000 Binary files a/editor/icons/icon_control_align_bottom_left.png and /dev/null differ diff --git a/editor/icons/icon_control_align_bottom_left.svg b/editor/icons/icon_control_align_bottom_left.svg new file mode 100644 index 00000000000..fc8e7adb3e9 --- /dev/null +++ b/editor/icons/icon_control_align_bottom_left.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_bottom_right.png b/editor/icons/icon_control_align_bottom_right.png deleted file mode 100644 index ff8b6a01775..00000000000 Binary files a/editor/icons/icon_control_align_bottom_right.png and /dev/null differ diff --git a/editor/icons/icon_control_align_bottom_right.svg b/editor/icons/icon_control_align_bottom_right.svg new file mode 100644 index 00000000000..9a9bc0f2ec6 --- /dev/null +++ b/editor/icons/icon_control_align_bottom_right.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_bottom_wide.png b/editor/icons/icon_control_align_bottom_wide.png deleted file mode 100644 index 309907767eb..00000000000 Binary files a/editor/icons/icon_control_align_bottom_wide.png and /dev/null differ diff --git a/editor/icons/icon_control_align_bottom_wide.svg b/editor/icons/icon_control_align_bottom_wide.svg new file mode 100644 index 00000000000..111ea52be7a --- /dev/null +++ b/editor/icons/icon_control_align_bottom_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_center.png b/editor/icons/icon_control_align_center.png deleted file mode 100644 index 964f132ac39..00000000000 Binary files a/editor/icons/icon_control_align_center.png and /dev/null differ diff --git a/editor/icons/icon_control_align_center.svg b/editor/icons/icon_control_align_center.svg new file mode 100644 index 00000000000..5dd012c3896 --- /dev/null +++ b/editor/icons/icon_control_align_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_center_left.png b/editor/icons/icon_control_align_center_left.png deleted file mode 100644 index 704b4f504f9..00000000000 Binary files a/editor/icons/icon_control_align_center_left.png and /dev/null differ diff --git a/editor/icons/icon_control_align_center_left.svg b/editor/icons/icon_control_align_center_left.svg new file mode 100644 index 00000000000..38542419cf2 --- /dev/null +++ b/editor/icons/icon_control_align_center_left.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_control_align_center_right.png b/editor/icons/icon_control_align_center_right.png deleted file mode 100644 index bd7111aec33..00000000000 Binary files a/editor/icons/icon_control_align_center_right.png and /dev/null differ diff --git a/editor/icons/icon_control_align_center_right.svg b/editor/icons/icon_control_align_center_right.svg new file mode 100644 index 00000000000..371436a6ad1 --- /dev/null +++ b/editor/icons/icon_control_align_center_right.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_control_align_left_center.png b/editor/icons/icon_control_align_left_center.png deleted file mode 100644 index 75c2d8573f1..00000000000 Binary files a/editor/icons/icon_control_align_left_center.png and /dev/null differ diff --git a/editor/icons/icon_control_align_left_center.svg b/editor/icons/icon_control_align_left_center.svg new file mode 100644 index 00000000000..dbf11be914e --- /dev/null +++ b/editor/icons/icon_control_align_left_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_left_wide.png b/editor/icons/icon_control_align_left_wide.png deleted file mode 100644 index 92a13144cbf..00000000000 Binary files a/editor/icons/icon_control_align_left_wide.png and /dev/null differ diff --git a/editor/icons/icon_control_align_left_wide.svg b/editor/icons/icon_control_align_left_wide.svg new file mode 100644 index 00000000000..7020a8a406c --- /dev/null +++ b/editor/icons/icon_control_align_left_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_right_center.png b/editor/icons/icon_control_align_right_center.png deleted file mode 100644 index a8590354395..00000000000 Binary files a/editor/icons/icon_control_align_right_center.png and /dev/null differ diff --git a/editor/icons/icon_control_align_right_center.svg b/editor/icons/icon_control_align_right_center.svg new file mode 100644 index 00000000000..2ce0ebdf30c --- /dev/null +++ b/editor/icons/icon_control_align_right_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_right_wide.png b/editor/icons/icon_control_align_right_wide.png deleted file mode 100644 index b6fef9569e0..00000000000 Binary files a/editor/icons/icon_control_align_right_wide.png and /dev/null differ diff --git a/editor/icons/icon_control_align_right_wide.svg b/editor/icons/icon_control_align_right_wide.svg new file mode 100644 index 00000000000..0c1713cfe8f --- /dev/null +++ b/editor/icons/icon_control_align_right_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_top_center.png b/editor/icons/icon_control_align_top_center.png deleted file mode 100644 index 5cdd6cd2fc1..00000000000 Binary files a/editor/icons/icon_control_align_top_center.png and /dev/null differ diff --git a/editor/icons/icon_control_align_top_center.svg b/editor/icons/icon_control_align_top_center.svg new file mode 100644 index 00000000000..4b13ab28b9b --- /dev/null +++ b/editor/icons/icon_control_align_top_center.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_top_left.png b/editor/icons/icon_control_align_top_left.png deleted file mode 100644 index 558e3f08cbd..00000000000 Binary files a/editor/icons/icon_control_align_top_left.png and /dev/null differ diff --git a/editor/icons/icon_control_align_top_left.svg b/editor/icons/icon_control_align_top_left.svg new file mode 100644 index 00000000000..cd06aaad82e --- /dev/null +++ b/editor/icons/icon_control_align_top_left.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_top_right.png b/editor/icons/icon_control_align_top_right.png deleted file mode 100644 index 5ca294de489..00000000000 Binary files a/editor/icons/icon_control_align_top_right.png and /dev/null differ diff --git a/editor/icons/icon_control_align_top_right.svg b/editor/icons/icon_control_align_top_right.svg new file mode 100644 index 00000000000..3bbbb89ecae --- /dev/null +++ b/editor/icons/icon_control_align_top_right.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_top_wide.png b/editor/icons/icon_control_align_top_wide.png deleted file mode 100644 index ec089d01743..00000000000 Binary files a/editor/icons/icon_control_align_top_wide.png and /dev/null differ diff --git a/editor/icons/icon_control_align_top_wide.svg b/editor/icons/icon_control_align_top_wide.svg new file mode 100644 index 00000000000..d704d5cc816 --- /dev/null +++ b/editor/icons/icon_control_align_top_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_align_wide.png b/editor/icons/icon_control_align_wide.png deleted file mode 100644 index 45552740bfc..00000000000 Binary files a/editor/icons/icon_control_align_wide.png and /dev/null differ diff --git a/editor/icons/icon_control_align_wide.svg b/editor/icons/icon_control_align_wide.svg new file mode 100644 index 00000000000..683504128c4 --- /dev/null +++ b/editor/icons/icon_control_align_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_hcenter_wide.png b/editor/icons/icon_control_hcenter_wide.png deleted file mode 100644 index f298b22f5f2..00000000000 Binary files a/editor/icons/icon_control_hcenter_wide.png and /dev/null differ diff --git a/editor/icons/icon_control_hcenter_wide.svg b/editor/icons/icon_control_hcenter_wide.svg new file mode 100644 index 00000000000..c96ba7ca110 --- /dev/null +++ b/editor/icons/icon_control_hcenter_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_control_vcenter_wide.png b/editor/icons/icon_control_vcenter_wide.png deleted file mode 100644 index b6c90646fbc..00000000000 Binary files a/editor/icons/icon_control_vcenter_wide.png and /dev/null differ diff --git a/editor/icons/icon_control_vcenter_wide.svg b/editor/icons/icon_control_vcenter_wide.svg new file mode 100644 index 00000000000..892bfcc50dd --- /dev/null +++ b/editor/icons/icon_control_vcenter_wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_convex_polygon_shape.png b/editor/icons/icon_convex_polygon_shape.png deleted file mode 100644 index 4dfc9acc9e9..00000000000 Binary files a/editor/icons/icon_convex_polygon_shape.png and /dev/null differ diff --git a/editor/icons/icon_convex_polygon_shape.svg b/editor/icons/icon_convex_polygon_shape.svg new file mode 100644 index 00000000000..143780da534 --- /dev/null +++ b/editor/icons/icon_convex_polygon_shape.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_convex_polygon_shape_2d.png b/editor/icons/icon_convex_polygon_shape_2d.png deleted file mode 100644 index e449c6930fa..00000000000 Binary files a/editor/icons/icon_convex_polygon_shape_2d.png and /dev/null differ diff --git a/editor/icons/icon_convex_polygon_shape_2d.svg b/editor/icons/icon_convex_polygon_shape_2d.svg new file mode 100644 index 00000000000..5bd177d1c6b --- /dev/null +++ b/editor/icons/icon_convex_polygon_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_copy_node_path.png b/editor/icons/icon_copy_node_path.png deleted file mode 100644 index 877bb81d814..00000000000 Binary files a/editor/icons/icon_copy_node_path.png and /dev/null differ diff --git a/editor/icons/icon_copy_node_path.svg b/editor/icons/icon_copy_node_path.svg new file mode 100644 index 00000000000..c3d3e93a6ba --- /dev/null +++ b/editor/icons/icon_copy_node_path.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_create_new_scene_from.png b/editor/icons/icon_create_new_scene_from.png deleted file mode 100644 index 45df9b1e252..00000000000 Binary files a/editor/icons/icon_create_new_scene_from.png and /dev/null differ diff --git a/editor/icons/icon_create_new_scene_from.svg b/editor/icons/icon_create_new_scene_from.svg new file mode 100644 index 00000000000..b41fd38e708 --- /dev/null +++ b/editor/icons/icon_create_new_scene_from.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_cube_grid_map.png b/editor/icons/icon_cube_grid_map.png deleted file mode 100644 index fe132226912..00000000000 Binary files a/editor/icons/icon_cube_grid_map.png and /dev/null differ diff --git a/editor/icons/icon_cube_map.png b/editor/icons/icon_cube_map.png deleted file mode 100644 index 9c4c6fdc9f3..00000000000 Binary files a/editor/icons/icon_cube_map.png and /dev/null differ diff --git a/editor/icons/icon_cube_map.svg b/editor/icons/icon_cube_map.svg new file mode 100644 index 00000000000..8afc2e42e92 --- /dev/null +++ b/editor/icons/icon_cube_map.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_cube_mesh.png b/editor/icons/icon_cube_mesh.png deleted file mode 100644 index a52d7a1823d..00000000000 Binary files a/editor/icons/icon_cube_mesh.png and /dev/null differ diff --git a/editor/icons/icon_cube_mesh.svg b/editor/icons/icon_cube_mesh.svg new file mode 100644 index 00000000000..0ed3e5e12fa --- /dev/null +++ b/editor/icons/icon_cube_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_curve.png b/editor/icons/icon_curve.png deleted file mode 100644 index a261e00f66f..00000000000 Binary files a/editor/icons/icon_curve.png and /dev/null differ diff --git a/editor/icons/icon_curve.svg b/editor/icons/icon_curve.svg new file mode 100644 index 00000000000..244b7d56780 --- /dev/null +++ b/editor/icons/icon_curve.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_curve_2d.png b/editor/icons/icon_curve_2d.png deleted file mode 100644 index ce46dcaad4b..00000000000 Binary files a/editor/icons/icon_curve_2d.png and /dev/null differ diff --git a/editor/icons/icon_curve_2d.svg b/editor/icons/icon_curve_2d.svg new file mode 100644 index 00000000000..31723875556 --- /dev/null +++ b/editor/icons/icon_curve_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_curve_3d.png b/editor/icons/icon_curve_3d.png deleted file mode 100644 index 561837e4de7..00000000000 Binary files a/editor/icons/icon_curve_3d.png and /dev/null differ diff --git a/editor/icons/icon_curve_3d.svg b/editor/icons/icon_curve_3d.svg new file mode 100644 index 00000000000..4f841516d77 --- /dev/null +++ b/editor/icons/icon_curve_3d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_curve_close.png b/editor/icons/icon_curve_close.png deleted file mode 100644 index 9a660152521..00000000000 Binary files a/editor/icons/icon_curve_close.png and /dev/null differ diff --git a/editor/icons/icon_curve_close.svg b/editor/icons/icon_curve_close.svg new file mode 100644 index 00000000000..415c046fd39 --- /dev/null +++ b/editor/icons/icon_curve_close.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_curve_constant.png b/editor/icons/icon_curve_constant.png deleted file mode 100644 index 510a01c7ec3..00000000000 Binary files a/editor/icons/icon_curve_constant.png and /dev/null differ diff --git a/editor/icons/icon_curve_constant.svg b/editor/icons/icon_curve_constant.svg new file mode 100644 index 00000000000..153d023dd61 --- /dev/null +++ b/editor/icons/icon_curve_constant.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_curve_create.png b/editor/icons/icon_curve_create.png deleted file mode 100644 index b07820a5cd6..00000000000 Binary files a/editor/icons/icon_curve_create.png and /dev/null differ diff --git a/editor/icons/icon_curve_create.svg b/editor/icons/icon_curve_create.svg new file mode 100644 index 00000000000..c26361bc9f8 --- /dev/null +++ b/editor/icons/icon_curve_create.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_curve_curve.png b/editor/icons/icon_curve_curve.png deleted file mode 100644 index 7d71af0a237..00000000000 Binary files a/editor/icons/icon_curve_curve.png and /dev/null differ diff --git a/editor/icons/icon_curve_curve.svg b/editor/icons/icon_curve_curve.svg new file mode 100644 index 00000000000..81c14ec0633 --- /dev/null +++ b/editor/icons/icon_curve_curve.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_curve_delete.png b/editor/icons/icon_curve_delete.png deleted file mode 100644 index 108bfeac355..00000000000 Binary files a/editor/icons/icon_curve_delete.png and /dev/null differ diff --git a/editor/icons/icon_curve_delete.svg b/editor/icons/icon_curve_delete.svg new file mode 100644 index 00000000000..b24993839bd --- /dev/null +++ b/editor/icons/icon_curve_delete.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_curve_edit.png b/editor/icons/icon_curve_edit.png deleted file mode 100644 index 51eb5833846..00000000000 Binary files a/editor/icons/icon_curve_edit.png and /dev/null differ diff --git a/editor/icons/icon_curve_edit.svg b/editor/icons/icon_curve_edit.svg new file mode 100644 index 00000000000..d9f89bf15de --- /dev/null +++ b/editor/icons/icon_curve_edit.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_curve_in.png b/editor/icons/icon_curve_in.png deleted file mode 100644 index a809ee43d37..00000000000 Binary files a/editor/icons/icon_curve_in.png and /dev/null differ diff --git a/editor/icons/icon_curve_in.svg b/editor/icons/icon_curve_in.svg new file mode 100644 index 00000000000..69877bbd093 --- /dev/null +++ b/editor/icons/icon_curve_in.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_curve_in_out.png b/editor/icons/icon_curve_in_out.png deleted file mode 100644 index 88e07d48a7a..00000000000 Binary files a/editor/icons/icon_curve_in_out.png and /dev/null differ diff --git a/editor/icons/icon_curve_in_out.svg b/editor/icons/icon_curve_in_out.svg new file mode 100644 index 00000000000..6e8bedd27d0 --- /dev/null +++ b/editor/icons/icon_curve_in_out.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_curve_linear.png b/editor/icons/icon_curve_linear.png deleted file mode 100644 index 80306b6e04b..00000000000 Binary files a/editor/icons/icon_curve_linear.png and /dev/null differ diff --git a/editor/icons/icon_curve_linear.svg b/editor/icons/icon_curve_linear.svg new file mode 100644 index 00000000000..92c4de7979b --- /dev/null +++ b/editor/icons/icon_curve_linear.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_curve_out.png b/editor/icons/icon_curve_out.png deleted file mode 100644 index aa05bc8f86f..00000000000 Binary files a/editor/icons/icon_curve_out.png and /dev/null differ diff --git a/editor/icons/icon_curve_out.svg b/editor/icons/icon_curve_out.svg new file mode 100644 index 00000000000..d74c0c66896 --- /dev/null +++ b/editor/icons/icon_curve_out.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_curve_out_in.png b/editor/icons/icon_curve_out_in.png deleted file mode 100644 index 7be46fc7794..00000000000 Binary files a/editor/icons/icon_curve_out_in.png and /dev/null differ diff --git a/editor/icons/icon_curve_out_in.svg b/editor/icons/icon_curve_out_in.svg new file mode 100644 index 00000000000..e98c50d931f --- /dev/null +++ b/editor/icons/icon_curve_out_in.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_curve_texture.png b/editor/icons/icon_curve_texture.png deleted file mode 100644 index bc5c7f6bf16..00000000000 Binary files a/editor/icons/icon_curve_texture.png and /dev/null differ diff --git a/editor/icons/icon_curve_texture.svg b/editor/icons/icon_curve_texture.svg new file mode 100644 index 00000000000..15926087eb0 --- /dev/null +++ b/editor/icons/icon_curve_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_cylinder_mesh.png b/editor/icons/icon_cylinder_mesh.png deleted file mode 100644 index da147ce7b4c..00000000000 Binary files a/editor/icons/icon_cylinder_mesh.png and /dev/null differ diff --git a/editor/icons/icon_cylinder_mesh.svg b/editor/icons/icon_cylinder_mesh.svg new file mode 100644 index 00000000000..92a93ec2204 --- /dev/null +++ b/editor/icons/icon_cylinder_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_cylinder_shape.png b/editor/icons/icon_cylinder_shape.png deleted file mode 100644 index fd7d7e26e29..00000000000 Binary files a/editor/icons/icon_cylinder_shape.png and /dev/null differ diff --git a/editor/icons/icon_d_o_f_blur_f_x.png b/editor/icons/icon_d_o_f_blur_f_x.png deleted file mode 100644 index fda7d48353e..00000000000 Binary files a/editor/icons/icon_d_o_f_blur_f_x.png and /dev/null differ diff --git a/editor/icons/icon_damped_spring_joint_2d.png b/editor/icons/icon_damped_spring_joint_2d.png deleted file mode 100644 index b6a9c2b3a1e..00000000000 Binary files a/editor/icons/icon_damped_spring_joint_2d.png and /dev/null differ diff --git a/editor/icons/icon_damped_spring_joint_2d.svg b/editor/icons/icon_damped_spring_joint_2d.svg new file mode 100644 index 00000000000..fa1fb9f348c --- /dev/null +++ b/editor/icons/icon_damped_spring_joint_2d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_debug.png b/editor/icons/icon_debug.png deleted file mode 100644 index b67e306697c..00000000000 Binary files a/editor/icons/icon_debug.png and /dev/null differ diff --git a/editor/icons/icon_debug.svg b/editor/icons/icon_debug.svg new file mode 100644 index 00000000000..bf6e37f4b4a --- /dev/null +++ b/editor/icons/icon_debug.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/icon_debug_continue.png b/editor/icons/icon_debug_continue.png deleted file mode 100644 index 78a61aa98f9..00000000000 Binary files a/editor/icons/icon_debug_continue.png and /dev/null differ diff --git a/editor/icons/icon_debug_continue.svg b/editor/icons/icon_debug_continue.svg new file mode 100644 index 00000000000..49289d1b281 --- /dev/null +++ b/editor/icons/icon_debug_continue.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_debug_next.png b/editor/icons/icon_debug_next.png deleted file mode 100644 index c61f2215624..00000000000 Binary files a/editor/icons/icon_debug_next.png and /dev/null differ diff --git a/editor/icons/icon_debug_next.svg b/editor/icons/icon_debug_next.svg new file mode 100644 index 00000000000..6251e174e76 --- /dev/null +++ b/editor/icons/icon_debug_next.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_debug_step.png b/editor/icons/icon_debug_step.png deleted file mode 100644 index a1839d56d89..00000000000 Binary files a/editor/icons/icon_debug_step.png and /dev/null differ diff --git a/editor/icons/icon_debug_step.svg b/editor/icons/icon_debug_step.svg new file mode 100644 index 00000000000..3a98803fc37 --- /dev/null +++ b/editor/icons/icon_debug_step.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_default_project_icon.png b/editor/icons/icon_default_project_icon.png deleted file mode 100644 index 4c31fe5cb2e..00000000000 Binary files a/editor/icons/icon_default_project_icon.png and /dev/null differ diff --git a/editor/icons/icon_del.png b/editor/icons/icon_del.png deleted file mode 100644 index 10e56d5bb8a..00000000000 Binary files a/editor/icons/icon_del.png and /dev/null differ diff --git a/editor/icons/icon_dependency_changed.png b/editor/icons/icon_dependency_changed.png deleted file mode 100644 index 1b396457d39..00000000000 Binary files a/editor/icons/icon_dependency_changed.png and /dev/null differ diff --git a/editor/icons/icon_dependency_changed.svg b/editor/icons/icon_dependency_changed.svg new file mode 100644 index 00000000000..6d7787e7697 --- /dev/null +++ b/editor/icons/icon_dependency_changed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_dependency_changed_hl.png b/editor/icons/icon_dependency_changed_hl.png deleted file mode 100644 index 51dfe6b39d4..00000000000 Binary files a/editor/icons/icon_dependency_changed_hl.png and /dev/null differ diff --git a/editor/icons/icon_dependency_changed_hl.svg b/editor/icons/icon_dependency_changed_hl.svg new file mode 100644 index 00000000000..fa0f3919eaf --- /dev/null +++ b/editor/icons/icon_dependency_changed_hl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_dependency_local_changed.png b/editor/icons/icon_dependency_local_changed.png deleted file mode 100644 index d8737fd2f44..00000000000 Binary files a/editor/icons/icon_dependency_local_changed.png and /dev/null differ diff --git a/editor/icons/icon_dependency_local_changed.svg b/editor/icons/icon_dependency_local_changed.svg new file mode 100644 index 00000000000..5fef88844ab --- /dev/null +++ b/editor/icons/icon_dependency_local_changed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_dependency_local_changed_hl.png b/editor/icons/icon_dependency_local_changed_hl.png deleted file mode 100644 index a87c48ca3ea..00000000000 Binary files a/editor/icons/icon_dependency_local_changed_hl.png and /dev/null differ diff --git a/editor/icons/icon_dependency_local_changed_hl.svg b/editor/icons/icon_dependency_local_changed_hl.svg new file mode 100644 index 00000000000..b9ab80fecba --- /dev/null +++ b/editor/icons/icon_dependency_local_changed_hl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_dependency_ok.png b/editor/icons/icon_dependency_ok.png deleted file mode 100644 index 2b9ac389ba4..00000000000 Binary files a/editor/icons/icon_dependency_ok.png and /dev/null differ diff --git a/editor/icons/icon_dependency_ok.svg b/editor/icons/icon_dependency_ok.svg new file mode 100644 index 00000000000..91cc3980299 --- /dev/null +++ b/editor/icons/icon_dependency_ok.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_dependency_ok_hl.png b/editor/icons/icon_dependency_ok_hl.png deleted file mode 100644 index 62e48531e4e..00000000000 Binary files a/editor/icons/icon_dependency_ok_hl.png and /dev/null differ diff --git a/editor/icons/icon_dependency_ok_hl.svg b/editor/icons/icon_dependency_ok_hl.svg new file mode 100644 index 00000000000..7c3f058dc4a --- /dev/null +++ b/editor/icons/icon_dependency_ok_hl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_directional_light.png b/editor/icons/icon_directional_light.png deleted file mode 100644 index 31f47c974d1..00000000000 Binary files a/editor/icons/icon_directional_light.png and /dev/null differ diff --git a/editor/icons/icon_directional_light.svg b/editor/icons/icon_directional_light.svg new file mode 100644 index 00000000000..31802ef0c17 --- /dev/null +++ b/editor/icons/icon_directional_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_distraction_free.png b/editor/icons/icon_distraction_free.png deleted file mode 100644 index c6f8a088747..00000000000 Binary files a/editor/icons/icon_distraction_free.png and /dev/null differ diff --git a/editor/icons/icon_distraction_free.svg b/editor/icons/icon_distraction_free.svg new file mode 100644 index 00000000000..eaf8061f0a9 --- /dev/null +++ b/editor/icons/icon_distraction_free.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_doc_code_font.png b/editor/icons/icon_doc_code_font.png deleted file mode 100644 index 628654f6e8c..00000000000 Binary files a/editor/icons/icon_doc_code_font.png and /dev/null differ diff --git a/editor/icons/icon_doc_font.png b/editor/icons/icon_doc_font.png deleted file mode 100644 index 65fbcc5ccc0..00000000000 Binary files a/editor/icons/icon_doc_font.png and /dev/null differ diff --git a/editor/icons/icon_doc_title_font.png b/editor/icons/icon_doc_title_font.png deleted file mode 100644 index d78b394da0f..00000000000 Binary files a/editor/icons/icon_doc_title_font.png and /dev/null differ diff --git a/editor/icons/icon_down.png b/editor/icons/icon_down.png deleted file mode 100644 index d2fcdb4c9fb..00000000000 Binary files a/editor/icons/icon_down.png and /dev/null differ diff --git a/editor/icons/icon_dropdown.png b/editor/icons/icon_dropdown.png deleted file mode 100644 index b9a324be7c2..00000000000 Binary files a/editor/icons/icon_dropdown.png and /dev/null differ diff --git a/editor/icons/icon_dummy.png b/editor/icons/icon_dummy.png deleted file mode 100644 index 24998a28afd..00000000000 Binary files a/editor/icons/icon_dummy.png and /dev/null differ diff --git a/editor/icons/icon_duplicate.png b/editor/icons/icon_duplicate.png deleted file mode 100644 index 320b36504eb..00000000000 Binary files a/editor/icons/icon_duplicate.png and /dev/null differ diff --git a/editor/icons/icon_duplicate.svg b/editor/icons/icon_duplicate.svg new file mode 100644 index 00000000000..4b27dcf62d0 --- /dev/null +++ b/editor/icons/icon_duplicate.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_dynamic_character_body.png b/editor/icons/icon_dynamic_character_body.png deleted file mode 100644 index b685841e352..00000000000 Binary files a/editor/icons/icon_dynamic_character_body.png and /dev/null differ diff --git a/editor/icons/icon_dynamic_custom_body.png b/editor/icons/icon_dynamic_custom_body.png deleted file mode 100644 index d383e7087fa..00000000000 Binary files a/editor/icons/icon_dynamic_custom_body.png and /dev/null differ diff --git a/editor/icons/icon_dynamic_font.png b/editor/icons/icon_dynamic_font.png deleted file mode 100644 index e373553e4ee..00000000000 Binary files a/editor/icons/icon_dynamic_font.png and /dev/null differ diff --git a/editor/icons/icon_dynamic_font.svg b/editor/icons/icon_dynamic_font.svg new file mode 100644 index 00000000000..867939e475a --- /dev/null +++ b/editor/icons/icon_dynamic_font.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_dynamic_font_data.png b/editor/icons/icon_dynamic_font_data.png deleted file mode 100644 index 5cff86c40c8..00000000000 Binary files a/editor/icons/icon_dynamic_font_data.png and /dev/null differ diff --git a/editor/icons/icon_dynamic_font_data.svg b/editor/icons/icon_dynamic_font_data.svg new file mode 100644 index 00000000000..644c987d8a4 --- /dev/null +++ b/editor/icons/icon_dynamic_font_data.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_dynamic_rigid_body.png b/editor/icons/icon_dynamic_rigid_body.png deleted file mode 100644 index f804b295287..00000000000 Binary files a/editor/icons/icon_dynamic_rigid_body.png and /dev/null differ diff --git a/editor/icons/icon_edit.png b/editor/icons/icon_edit.png deleted file mode 100644 index c114d2f84d9..00000000000 Binary files a/editor/icons/icon_edit.png and /dev/null differ diff --git a/editor/icons/icon_edit.svg b/editor/icons/icon_edit.svg new file mode 100644 index 00000000000..b1bce158c4d --- /dev/null +++ b/editor/icons/icon_edit.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_edit_key.png b/editor/icons/icon_edit_key.png deleted file mode 100644 index 3ebbe75f786..00000000000 Binary files a/editor/icons/icon_edit_key.png and /dev/null differ diff --git a/editor/icons/icon_edit_key.svg b/editor/icons/icon_edit_key.svg new file mode 100644 index 00000000000..2959900d048 --- /dev/null +++ b/editor/icons/icon_edit_key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_edit_pivot.png b/editor/icons/icon_edit_pivot.png deleted file mode 100644 index 230122b9697..00000000000 Binary files a/editor/icons/icon_edit_pivot.png and /dev/null differ diff --git a/editor/icons/icon_edit_pivot.svg b/editor/icons/icon_edit_pivot.svg new file mode 100644 index 00000000000..32c51a491fa --- /dev/null +++ b/editor/icons/icon_edit_pivot.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_edit_resource.png b/editor/icons/icon_edit_resource.png deleted file mode 100644 index fca57f3e7e7..00000000000 Binary files a/editor/icons/icon_edit_resource.png and /dev/null differ diff --git a/editor/icons/icon_edit_resource.svg b/editor/icons/icon_edit_resource.svg new file mode 100644 index 00000000000..a744685de85 --- /dev/null +++ b/editor/icons/icon_edit_resource.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_edit_small.png b/editor/icons/icon_edit_small.png deleted file mode 100644 index 19c83415f93..00000000000 Binary files a/editor/icons/icon_edit_small.png and /dev/null differ diff --git a/editor/icons/icon_editor_2d.png b/editor/icons/icon_editor_2d.png deleted file mode 100644 index 1594f5adf04..00000000000 Binary files a/editor/icons/icon_editor_2d.png and /dev/null differ diff --git a/editor/icons/icon_editor_3d_handle.png b/editor/icons/icon_editor_3d_handle.png deleted file mode 100644 index 6935cc9bc4f..00000000000 Binary files a/editor/icons/icon_editor_3d_handle.png and /dev/null differ diff --git a/editor/icons/icon_editor_3d_handle.svg b/editor/icons/icon_editor_3d_handle.svg new file mode 100644 index 00000000000..189baf3dad9 --- /dev/null +++ b/editor/icons/icon_editor_3d_handle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_editor_control_anchor.png b/editor/icons/icon_editor_control_anchor.png deleted file mode 100644 index 158dd62a7b8..00000000000 Binary files a/editor/icons/icon_editor_control_anchor.png and /dev/null differ diff --git a/editor/icons/icon_editor_control_anchor.svg b/editor/icons/icon_editor_control_anchor.svg new file mode 100644 index 00000000000..eeee2c182f4 --- /dev/null +++ b/editor/icons/icon_editor_control_anchor.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_editor_focus.png b/editor/icons/icon_editor_focus.png deleted file mode 100644 index 40ce11f3819..00000000000 Binary files a/editor/icons/icon_editor_focus.png and /dev/null differ diff --git a/editor/icons/icon_editor_handle.png b/editor/icons/icon_editor_handle.png deleted file mode 100644 index 8950a216daf..00000000000 Binary files a/editor/icons/icon_editor_handle.png and /dev/null differ diff --git a/editor/icons/icon_editor_handle.svg b/editor/icons/icon_editor_handle.svg new file mode 100644 index 00000000000..7e58aaa8032 --- /dev/null +++ b/editor/icons/icon_editor_handle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_editor_node.png b/editor/icons/icon_editor_node.png deleted file mode 100644 index aec161ed543..00000000000 Binary files a/editor/icons/icon_editor_node.png and /dev/null differ diff --git a/editor/icons/icon_editor_pivot.png b/editor/icons/icon_editor_pivot.png deleted file mode 100644 index db7feb0be60..00000000000 Binary files a/editor/icons/icon_editor_pivot.png and /dev/null differ diff --git a/editor/icons/icon_editor_pivot.svg b/editor/icons/icon_editor_pivot.svg new file mode 100644 index 00000000000..d59d2d804d9 --- /dev/null +++ b/editor/icons/icon_editor_pivot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_editor_plugin.png b/editor/icons/icon_editor_plugin.png deleted file mode 100644 index ff7004b993c..00000000000 Binary files a/editor/icons/icon_editor_plugin.png and /dev/null differ diff --git a/editor/icons/icon_editor_plugin.svg b/editor/icons/icon_editor_plugin.svg new file mode 100644 index 00000000000..528a583a045 --- /dev/null +++ b/editor/icons/icon_editor_plugin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_editor_rect_2d.png b/editor/icons/icon_editor_rect_2d.png deleted file mode 100644 index f59d4935878..00000000000 Binary files a/editor/icons/icon_editor_rect_2d.png and /dev/null differ diff --git a/editor/icons/icon_empty_control.png b/editor/icons/icon_empty_control.png deleted file mode 100644 index b43bb14d390..00000000000 Binary files a/editor/icons/icon_empty_control.png and /dev/null differ diff --git a/editor/icons/icon_enum.png b/editor/icons/icon_enum.png deleted file mode 100644 index a98a33aedf6..00000000000 Binary files a/editor/icons/icon_enum.png and /dev/null differ diff --git a/editor/icons/icon_environment.png b/editor/icons/icon_environment.png deleted file mode 100644 index 265af5e4adb..00000000000 Binary files a/editor/icons/icon_environment.png and /dev/null differ diff --git a/editor/icons/icon_environment.svg b/editor/icons/icon_environment.svg new file mode 100644 index 00000000000..464f2d91a37 --- /dev/null +++ b/editor/icons/icon_environment.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_error.png b/editor/icons/icon_error.png deleted file mode 100644 index 8a9130f70be..00000000000 Binary files a/editor/icons/icon_error.png and /dev/null differ diff --git a/editor/icons/icon_error.svg b/editor/icons/icon_error.svg new file mode 100644 index 00000000000..771a418cfa6 --- /dev/null +++ b/editor/icons/icon_error.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_error_sign.png b/editor/icons/icon_error_sign.png deleted file mode 100644 index 1bfb1f345cc..00000000000 Binary files a/editor/icons/icon_error_sign.png and /dev/null differ diff --git a/editor/icons/icon_error_sign.svg b/editor/icons/icon_error_sign.svg new file mode 100644 index 00000000000..a2d714c31af --- /dev/null +++ b/editor/icons/icon_error_sign.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_event_player.png b/editor/icons/icon_event_player.png deleted file mode 100644 index b5478ca74ee..00000000000 Binary files a/editor/icons/icon_event_player.png and /dev/null differ diff --git a/editor/icons/icon_event_player.svg b/editor/icons/icon_event_player.svg new file mode 100644 index 00000000000..06630c349aa --- /dev/null +++ b/editor/icons/icon_event_player.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_expand.png b/editor/icons/icon_expand.png deleted file mode 100644 index 8a604f945b2..00000000000 Binary files a/editor/icons/icon_expand.png and /dev/null differ diff --git a/editor/icons/icon_expand_hl.png b/editor/icons/icon_expand_hl.png deleted file mode 100644 index 6f51806db20..00000000000 Binary files a/editor/icons/icon_expand_hl.png and /dev/null differ diff --git a/editor/icons/icon_favorites.png b/editor/icons/icon_favorites.png deleted file mode 100644 index 14e05ad9b97..00000000000 Binary files a/editor/icons/icon_favorites.png and /dev/null differ diff --git a/editor/icons/icon_favorites.svg b/editor/icons/icon_favorites.svg new file mode 100644 index 00000000000..ce42a457321 --- /dev/null +++ b/editor/icons/icon_favorites.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_file.png b/editor/icons/icon_file.png deleted file mode 100644 index b012e1f2145..00000000000 Binary files a/editor/icons/icon_file.png and /dev/null differ diff --git a/editor/icons/icon_file_big.png b/editor/icons/icon_file_big.png deleted file mode 100644 index e0aff764f15..00000000000 Binary files a/editor/icons/icon_file_big.png and /dev/null differ diff --git a/editor/icons/icon_file_big.svg b/editor/icons/icon_file_big.svg new file mode 100644 index 00000000000..569b449a59e --- /dev/null +++ b/editor/icons/icon_file_big.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_file_dialog.png b/editor/icons/icon_file_dialog.png deleted file mode 100644 index c918e2b3b27..00000000000 Binary files a/editor/icons/icon_file_dialog.png and /dev/null differ diff --git a/editor/icons/icon_file_dialog.svg b/editor/icons/icon_file_dialog.svg new file mode 100644 index 00000000000..fafb940611a --- /dev/null +++ b/editor/icons/icon_file_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_file_list.png b/editor/icons/icon_file_list.png deleted file mode 100644 index a98a33aedf6..00000000000 Binary files a/editor/icons/icon_file_list.png and /dev/null differ diff --git a/editor/icons/icon_file_list.svg b/editor/icons/icon_file_list.svg new file mode 100644 index 00000000000..6eee2e63cfe --- /dev/null +++ b/editor/icons/icon_file_list.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_file_server.png b/editor/icons/icon_file_server.png deleted file mode 100644 index f5a18fc52d6..00000000000 Binary files a/editor/icons/icon_file_server.png and /dev/null differ diff --git a/editor/icons/icon_file_server.svg b/editor/icons/icon_file_server.svg new file mode 100644 index 00000000000..02bc363c19a --- /dev/null +++ b/editor/icons/icon_file_server.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_file_server_active.png b/editor/icons/icon_file_server_active.png deleted file mode 100644 index af5fc0033a4..00000000000 Binary files a/editor/icons/icon_file_server_active.png and /dev/null differ diff --git a/editor/icons/icon_file_server_active.svg b/editor/icons/icon_file_server_active.svg new file mode 100644 index 00000000000..d491df20090 --- /dev/null +++ b/editor/icons/icon_file_server_active.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_file_thumbnail.png b/editor/icons/icon_file_thumbnail.png deleted file mode 100644 index 6fb4b8f36f0..00000000000 Binary files a/editor/icons/icon_file_thumbnail.png and /dev/null differ diff --git a/editor/icons/icon_file_thumbnail.svg b/editor/icons/icon_file_thumbnail.svg new file mode 100644 index 00000000000..074856ce75b --- /dev/null +++ b/editor/icons/icon_file_thumbnail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_filesystem.png b/editor/icons/icon_filesystem.png deleted file mode 100644 index 5faff250d7e..00000000000 Binary files a/editor/icons/icon_filesystem.png and /dev/null differ diff --git a/editor/icons/icon_fixed_material.png b/editor/icons/icon_fixed_material.png deleted file mode 100644 index a9b0ebb5682..00000000000 Binary files a/editor/icons/icon_fixed_material.png and /dev/null differ diff --git a/editor/icons/icon_fixed_material.svg b/editor/icons/icon_fixed_material.svg new file mode 100644 index 00000000000..e77e89df31a --- /dev/null +++ b/editor/icons/icon_fixed_material.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_fixed_spatial_material.png b/editor/icons/icon_fixed_spatial_material.png deleted file mode 100644 index f26ac3be37a..00000000000 Binary files a/editor/icons/icon_fixed_spatial_material.png and /dev/null differ diff --git a/editor/icons/icon_fixed_spatial_material.svg b/editor/icons/icon_fixed_spatial_material.svg new file mode 100644 index 00000000000..d69a762d7e4 --- /dev/null +++ b/editor/icons/icon_fixed_spatial_material.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_fog_f_x.png b/editor/icons/icon_fog_f_x.png deleted file mode 100644 index 54691aa9ab9..00000000000 Binary files a/editor/icons/icon_fog_f_x.png and /dev/null differ diff --git a/editor/icons/icon_folder.png b/editor/icons/icon_folder.png deleted file mode 100644 index cc05e98ebb3..00000000000 Binary files a/editor/icons/icon_folder.png and /dev/null differ diff --git a/editor/icons/icon_folder.svg b/editor/icons/icon_folder.svg new file mode 100644 index 00000000000..4b5b9359eac --- /dev/null +++ b/editor/icons/icon_folder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_folder_big.png b/editor/icons/icon_folder_big.png deleted file mode 100644 index 05c41720d88..00000000000 Binary files a/editor/icons/icon_folder_big.png and /dev/null differ diff --git a/editor/icons/icon_folder_big.svg b/editor/icons/icon_folder_big.svg new file mode 100644 index 00000000000..1c0cd3584e7 --- /dev/null +++ b/editor/icons/icon_folder_big.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_folder_scene.png b/editor/icons/icon_folder_scene.png deleted file mode 100644 index 6f6d706dae6..00000000000 Binary files a/editor/icons/icon_folder_scene.png and /dev/null differ diff --git a/editor/icons/icon_font.png b/editor/icons/icon_font.png deleted file mode 100644 index 543ee01ae47..00000000000 Binary files a/editor/icons/icon_font.png and /dev/null differ diff --git a/editor/icons/icon_font.svg b/editor/icons/icon_font.svg new file mode 100644 index 00000000000..1389ed40243 --- /dev/null +++ b/editor/icons/icon_font.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_forward.png b/editor/icons/icon_forward.png deleted file mode 100644 index 529964f49da..00000000000 Binary files a/editor/icons/icon_forward.png and /dev/null differ diff --git a/editor/icons/icon_forward.svg b/editor/icons/icon_forward.svg new file mode 100644 index 00000000000..6b638731a98 --- /dev/null +++ b/editor/icons/icon_forward.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_forward_no.png b/editor/icons/icon_forward_no.png deleted file mode 100644 index bf62cd6ab26..00000000000 Binary files a/editor/icons/icon_forward_no.png and /dev/null differ diff --git a/editor/icons/icon_func.png b/editor/icons/icon_func.png deleted file mode 100644 index 45b32def8ac..00000000000 Binary files a/editor/icons/icon_func.png and /dev/null differ diff --git a/editor/icons/icon_g_d_native_library.png b/editor/icons/icon_g_d_native_library.png deleted file mode 100644 index 530e06a982f..00000000000 Binary files a/editor/icons/icon_g_d_native_library.png and /dev/null differ diff --git a/editor/icons/icon_g_d_native_library.svg b/editor/icons/icon_g_d_native_library.svg new file mode 100644 index 00000000000..b494c7af6e3 --- /dev/null +++ b/editor/icons/icon_g_d_native_library.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_g_d_native_script.png b/editor/icons/icon_g_d_native_script.png deleted file mode 100644 index ea4fe067044..00000000000 Binary files a/editor/icons/icon_g_d_native_script.png and /dev/null differ diff --git a/editor/icons/icon_g_d_script.png b/editor/icons/icon_g_d_script.png deleted file mode 100644 index 4db4c537963..00000000000 Binary files a/editor/icons/icon_g_d_script.png and /dev/null differ diff --git a/editor/icons/icon_g_d_script.svg b/editor/icons/icon_g_d_script.svg new file mode 100644 index 00000000000..953bb9ae9ed --- /dev/null +++ b/editor/icons/icon_g_d_script.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_g_i_probe.png b/editor/icons/icon_g_i_probe.png deleted file mode 100644 index a15ae186753..00000000000 Binary files a/editor/icons/icon_g_i_probe.png and /dev/null differ diff --git a/editor/icons/icon_g_i_probe.svg b/editor/icons/icon_g_i_probe.svg new file mode 100644 index 00000000000..37b2cda223e --- /dev/null +++ b/editor/icons/icon_g_i_probe.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_g_i_probe_data.png b/editor/icons/icon_g_i_probe_data.png deleted file mode 100644 index 0aabcc49cb9..00000000000 Binary files a/editor/icons/icon_g_i_probe_data.png and /dev/null differ diff --git a/editor/icons/icon_g_i_probe_data.svg b/editor/icons/icon_g_i_probe_data.svg new file mode 100644 index 00000000000..f5a0961a351 --- /dev/null +++ b/editor/icons/icon_g_i_probe_data.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_gamma_f_x.png b/editor/icons/icon_gamma_f_x.png deleted file mode 100644 index 50474340d1c..00000000000 Binary files a/editor/icons/icon_gamma_f_x.png and /dev/null differ diff --git a/editor/icons/icon_generic_6_d_o_f_joint.png b/editor/icons/icon_generic_6_d_o_f_joint.png deleted file mode 100644 index 00ba76c098f..00000000000 Binary files a/editor/icons/icon_generic_6_d_o_f_joint.png and /dev/null differ diff --git a/editor/icons/icon_generic_6_d_o_f_joint.svg b/editor/icons/icon_generic_6_d_o_f_joint.svg new file mode 100644 index 00000000000..dad266fff1b --- /dev/null +++ b/editor/icons/icon_generic_6_d_o_f_joint.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_gizmo_directional_light.png b/editor/icons/icon_gizmo_directional_light.png deleted file mode 100644 index bdeb120b438..00000000000 Binary files a/editor/icons/icon_gizmo_directional_light.png and /dev/null differ diff --git a/editor/icons/icon_gizmo_directional_light.svg b/editor/icons/icon_gizmo_directional_light.svg new file mode 100644 index 00000000000..a8739a5a781 --- /dev/null +++ b/editor/icons/icon_gizmo_directional_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_gizmo_light.png b/editor/icons/icon_gizmo_light.png deleted file mode 100644 index be9903f8c29..00000000000 Binary files a/editor/icons/icon_gizmo_light.png and /dev/null differ diff --git a/editor/icons/icon_gizmo_light.svg b/editor/icons/icon_gizmo_light.svg new file mode 100644 index 00000000000..c411d13dc7d --- /dev/null +++ b/editor/icons/icon_gizmo_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_gizmo_listener.png b/editor/icons/icon_gizmo_listener.png deleted file mode 100644 index 47e978be618..00000000000 Binary files a/editor/icons/icon_gizmo_listener.png and /dev/null differ diff --git a/editor/icons/icon_gizmo_listener.svg b/editor/icons/icon_gizmo_listener.svg new file mode 100644 index 00000000000..adb6aebaecf --- /dev/null +++ b/editor/icons/icon_gizmo_listener.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_gizmo_spatial_sample_player.png b/editor/icons/icon_gizmo_spatial_sample_player.png deleted file mode 100644 index 0119dbc4339..00000000000 Binary files a/editor/icons/icon_gizmo_spatial_sample_player.png and /dev/null differ diff --git a/editor/icons/icon_gizmo_spatial_sample_player.svg b/editor/icons/icon_gizmo_spatial_sample_player.svg new file mode 100644 index 00000000000..d40fe230ac5 --- /dev/null +++ b/editor/icons/icon_gizmo_spatial_sample_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_gizmo_spatial_stream_player.png b/editor/icons/icon_gizmo_spatial_stream_player.png deleted file mode 100644 index 6a4f85d550e..00000000000 Binary files a/editor/icons/icon_gizmo_spatial_stream_player.png and /dev/null differ diff --git a/editor/icons/icon_gizmo_spatial_stream_player.svg b/editor/icons/icon_gizmo_spatial_stream_player.svg new file mode 100644 index 00000000000..2cf39663645 --- /dev/null +++ b/editor/icons/icon_gizmo_spatial_stream_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_glow_f_x.png b/editor/icons/icon_glow_f_x.png deleted file mode 100644 index c970204359f..00000000000 Binary files a/editor/icons/icon_glow_f_x.png and /dev/null differ diff --git a/editor/icons/icon_godot.png b/editor/icons/icon_godot.png deleted file mode 100644 index a5e371865c6..00000000000 Binary files a/editor/icons/icon_godot.png and /dev/null differ diff --git a/editor/icons/icon_godot.svg b/editor/icons/icon_godot.svg new file mode 100644 index 00000000000..32a1eeb6ec7 --- /dev/null +++ b/editor/icons/icon_godot.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_godot_asset_default.png b/editor/icons/icon_godot_asset_default.png deleted file mode 100644 index 7478399e8b1..00000000000 Binary files a/editor/icons/icon_godot_asset_default.png and /dev/null differ diff --git a/editor/icons/icon_godot_docs.png b/editor/icons/icon_godot_docs.png deleted file mode 100644 index 554280c5b41..00000000000 Binary files a/editor/icons/icon_godot_docs.png and /dev/null differ diff --git a/editor/icons/icon_gradient.png b/editor/icons/icon_gradient.png deleted file mode 100644 index c5e89c39084..00000000000 Binary files a/editor/icons/icon_gradient.png and /dev/null differ diff --git a/editor/icons/icon_gradient.svg b/editor/icons/icon_gradient.svg new file mode 100644 index 00000000000..cf36fc1afdd --- /dev/null +++ b/editor/icons/icon_gradient.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_gradient_texture.png b/editor/icons/icon_gradient_texture.png deleted file mode 100644 index fedbf038a30..00000000000 Binary files a/editor/icons/icon_gradient_texture.png and /dev/null differ diff --git a/editor/icons/icon_gradient_texture.svg b/editor/icons/icon_gradient_texture.svg new file mode 100644 index 00000000000..553a2d843bc --- /dev/null +++ b/editor/icons/icon_gradient_texture.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_graph_color_ramp.png b/editor/icons/icon_graph_color_ramp.png deleted file mode 100644 index 03d19a56bbb..00000000000 Binary files a/editor/icons/icon_graph_color_ramp.png and /dev/null differ diff --git a/editor/icons/icon_graph_comment.png b/editor/icons/icon_graph_comment.png deleted file mode 100644 index 1686837d1d1..00000000000 Binary files a/editor/icons/icon_graph_comment.png and /dev/null differ diff --git a/editor/icons/icon_graph_comment.svg b/editor/icons/icon_graph_comment.svg new file mode 100644 index 00000000000..d83bd620585 --- /dev/null +++ b/editor/icons/icon_graph_comment.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_cube_uniform.png b/editor/icons/icon_graph_cube_uniform.png deleted file mode 100644 index 8b4ad57c315..00000000000 Binary files a/editor/icons/icon_graph_cube_uniform.png and /dev/null differ diff --git a/editor/icons/icon_graph_cube_uniform.svg b/editor/icons/icon_graph_cube_uniform.svg new file mode 100644 index 00000000000..a7ef1499b5c --- /dev/null +++ b/editor/icons/icon_graph_cube_uniform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_curve_map.png b/editor/icons/icon_graph_curve_map.png deleted file mode 100644 index ced27bd62fd..00000000000 Binary files a/editor/icons/icon_graph_curve_map.png and /dev/null differ diff --git a/editor/icons/icon_graph_curve_map.svg b/editor/icons/icon_graph_curve_map.svg new file mode 100644 index 00000000000..a5a3184926f --- /dev/null +++ b/editor/icons/icon_graph_curve_map.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_graph_default_texture.png b/editor/icons/icon_graph_default_texture.png deleted file mode 100644 index cad05e8332f..00000000000 Binary files a/editor/icons/icon_graph_default_texture.png and /dev/null differ diff --git a/editor/icons/icon_graph_default_texture.svg b/editor/icons/icon_graph_default_texture.svg new file mode 100644 index 00000000000..0a1a0e9673d --- /dev/null +++ b/editor/icons/icon_graph_default_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_edit.png b/editor/icons/icon_graph_edit.png deleted file mode 100644 index f6226b21936..00000000000 Binary files a/editor/icons/icon_graph_edit.png and /dev/null differ diff --git a/editor/icons/icon_graph_edit.svg b/editor/icons/icon_graph_edit.svg new file mode 100644 index 00000000000..d56fd74b8df --- /dev/null +++ b/editor/icons/icon_graph_edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_graph_input.png b/editor/icons/icon_graph_input.png deleted file mode 100644 index 4725bcf7b1e..00000000000 Binary files a/editor/icons/icon_graph_input.png and /dev/null differ diff --git a/editor/icons/icon_graph_input.svg b/editor/icons/icon_graph_input.svg new file mode 100644 index 00000000000..c5034ecd2cb --- /dev/null +++ b/editor/icons/icon_graph_input.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_node.png b/editor/icons/icon_graph_node.png deleted file mode 100644 index fec38cb3eba..00000000000 Binary files a/editor/icons/icon_graph_node.png and /dev/null differ diff --git a/editor/icons/icon_graph_node.svg b/editor/icons/icon_graph_node.svg new file mode 100644 index 00000000000..e5e1c1dfee9 --- /dev/null +++ b/editor/icons/icon_graph_node.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_graph_rgb.png b/editor/icons/icon_graph_rgb.png deleted file mode 100644 index 3113a18e8c6..00000000000 Binary files a/editor/icons/icon_graph_rgb.png and /dev/null differ diff --git a/editor/icons/icon_graph_rgb.svg b/editor/icons/icon_graph_rgb.svg new file mode 100644 index 00000000000..403572a82e6 --- /dev/null +++ b/editor/icons/icon_graph_rgb.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_graph_rgb_op.png b/editor/icons/icon_graph_rgb_op.png deleted file mode 100644 index 09d633e7221..00000000000 Binary files a/editor/icons/icon_graph_rgb_op.png and /dev/null differ diff --git a/editor/icons/icon_graph_rgb_op.svg b/editor/icons/icon_graph_rgb_op.svg new file mode 100644 index 00000000000..6dbcd6ee444 --- /dev/null +++ b/editor/icons/icon_graph_rgb_op.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_graph_rgb_uniform.png b/editor/icons/icon_graph_rgb_uniform.png deleted file mode 100644 index dbe10c9c8ec..00000000000 Binary files a/editor/icons/icon_graph_rgb_uniform.png and /dev/null differ diff --git a/editor/icons/icon_graph_rgb_uniform.svg b/editor/icons/icon_graph_rgb_uniform.svg new file mode 100644 index 00000000000..4244bd408ad --- /dev/null +++ b/editor/icons/icon_graph_rgb_uniform.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_graph_scalar.png b/editor/icons/icon_graph_scalar.png deleted file mode 100644 index d44fd348911..00000000000 Binary files a/editor/icons/icon_graph_scalar.png and /dev/null differ diff --git a/editor/icons/icon_graph_scalar.svg b/editor/icons/icon_graph_scalar.svg new file mode 100644 index 00000000000..ba921a961cd --- /dev/null +++ b/editor/icons/icon_graph_scalar.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_scalar_interp.png b/editor/icons/icon_graph_scalar_interp.png deleted file mode 100644 index adcfc7d8572..00000000000 Binary files a/editor/icons/icon_graph_scalar_interp.png and /dev/null differ diff --git a/editor/icons/icon_graph_scalar_interp.svg b/editor/icons/icon_graph_scalar_interp.svg new file mode 100644 index 00000000000..edfbe360668 --- /dev/null +++ b/editor/icons/icon_graph_scalar_interp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_scalar_op.png b/editor/icons/icon_graph_scalar_op.png deleted file mode 100644 index 6459cb97598..00000000000 Binary files a/editor/icons/icon_graph_scalar_op.png and /dev/null differ diff --git a/editor/icons/icon_graph_scalar_op.svg b/editor/icons/icon_graph_scalar_op.svg new file mode 100644 index 00000000000..34f7d9b2b16 --- /dev/null +++ b/editor/icons/icon_graph_scalar_op.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_graph_scalar_uniform.png b/editor/icons/icon_graph_scalar_uniform.png deleted file mode 100644 index e7e0b9a73c7..00000000000 Binary files a/editor/icons/icon_graph_scalar_uniform.png and /dev/null differ diff --git a/editor/icons/icon_graph_scalar_uniform.svg b/editor/icons/icon_graph_scalar_uniform.svg new file mode 100644 index 00000000000..d2ee2ec827a --- /dev/null +++ b/editor/icons/icon_graph_scalar_uniform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_scalars_to_vec.png b/editor/icons/icon_graph_scalars_to_vec.png deleted file mode 100644 index b8893e78cad..00000000000 Binary files a/editor/icons/icon_graph_scalars_to_vec.png and /dev/null differ diff --git a/editor/icons/icon_graph_scalars_to_vec.svg b/editor/icons/icon_graph_scalars_to_vec.svg new file mode 100644 index 00000000000..bd3bc0424a0 --- /dev/null +++ b/editor/icons/icon_graph_scalars_to_vec.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_graph_texscreen.png b/editor/icons/icon_graph_texscreen.png deleted file mode 100644 index 628990553a5..00000000000 Binary files a/editor/icons/icon_graph_texscreen.png and /dev/null differ diff --git a/editor/icons/icon_graph_texscreen.svg b/editor/icons/icon_graph_texscreen.svg new file mode 100644 index 00000000000..6c263322038 --- /dev/null +++ b/editor/icons/icon_graph_texscreen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_graph_texture_uniform.png b/editor/icons/icon_graph_texture_uniform.png deleted file mode 100644 index 9c0c758dc14..00000000000 Binary files a/editor/icons/icon_graph_texture_uniform.png and /dev/null differ diff --git a/editor/icons/icon_graph_texture_uniform.svg b/editor/icons/icon_graph_texture_uniform.svg new file mode 100644 index 00000000000..9e727434326 --- /dev/null +++ b/editor/icons/icon_graph_texture_uniform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_time.png b/editor/icons/icon_graph_time.png deleted file mode 100644 index 2a9b73dc2b5..00000000000 Binary files a/editor/icons/icon_graph_time.png and /dev/null differ diff --git a/editor/icons/icon_graph_time.svg b/editor/icons/icon_graph_time.svg new file mode 100644 index 00000000000..6227b53c62c --- /dev/null +++ b/editor/icons/icon_graph_time.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_graph_vec_dp.png b/editor/icons/icon_graph_vec_dp.png deleted file mode 100644 index c395b61bb6a..00000000000 Binary files a/editor/icons/icon_graph_vec_dp.png and /dev/null differ diff --git a/editor/icons/icon_graph_vec_dp.svg b/editor/icons/icon_graph_vec_dp.svg new file mode 100644 index 00000000000..0b24b478958 --- /dev/null +++ b/editor/icons/icon_graph_vec_dp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_graph_vec_interp.png b/editor/icons/icon_graph_vec_interp.png deleted file mode 100644 index 00cfe6ed29e..00000000000 Binary files a/editor/icons/icon_graph_vec_interp.png and /dev/null differ diff --git a/editor/icons/icon_graph_vec_interp.svg b/editor/icons/icon_graph_vec_interp.svg new file mode 100644 index 00000000000..a3df7ff93dd --- /dev/null +++ b/editor/icons/icon_graph_vec_interp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_vec_length.png b/editor/icons/icon_graph_vec_length.png deleted file mode 100644 index af449109fda..00000000000 Binary files a/editor/icons/icon_graph_vec_length.png and /dev/null differ diff --git a/editor/icons/icon_graph_vec_length.svg b/editor/icons/icon_graph_vec_length.svg new file mode 100644 index 00000000000..cd2a39312ad --- /dev/null +++ b/editor/icons/icon_graph_vec_length.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_graph_vec_op.png b/editor/icons/icon_graph_vec_op.png deleted file mode 100644 index c4e3cf409a0..00000000000 Binary files a/editor/icons/icon_graph_vec_op.png and /dev/null differ diff --git a/editor/icons/icon_graph_vec_op.svg b/editor/icons/icon_graph_vec_op.svg new file mode 100644 index 00000000000..2792d633786 --- /dev/null +++ b/editor/icons/icon_graph_vec_op.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_vec_scalar_op.png b/editor/icons/icon_graph_vec_scalar_op.png deleted file mode 100644 index f7fc3b054eb..00000000000 Binary files a/editor/icons/icon_graph_vec_scalar_op.png and /dev/null differ diff --git a/editor/icons/icon_graph_vec_scalar_op.svg b/editor/icons/icon_graph_vec_scalar_op.svg new file mode 100644 index 00000000000..effcb596a19 --- /dev/null +++ b/editor/icons/icon_graph_vec_scalar_op.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_graph_vec_to_scalars.png b/editor/icons/icon_graph_vec_to_scalars.png deleted file mode 100644 index b0f2a9c4aec..00000000000 Binary files a/editor/icons/icon_graph_vec_to_scalars.png and /dev/null differ diff --git a/editor/icons/icon_graph_vec_to_scalars.svg b/editor/icons/icon_graph_vec_to_scalars.svg new file mode 100644 index 00000000000..2ecacb84340 --- /dev/null +++ b/editor/icons/icon_graph_vec_to_scalars.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_graph_vecs_to_xform.png b/editor/icons/icon_graph_vecs_to_xform.png deleted file mode 100644 index b5217badcfc..00000000000 Binary files a/editor/icons/icon_graph_vecs_to_xform.png and /dev/null differ diff --git a/editor/icons/icon_graph_vecs_to_xform.svg b/editor/icons/icon_graph_vecs_to_xform.svg new file mode 100644 index 00000000000..ba9526231ab --- /dev/null +++ b/editor/icons/icon_graph_vecs_to_xform.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_graph_vector.png b/editor/icons/icon_graph_vector.png deleted file mode 100644 index d78a3fdf5cf..00000000000 Binary files a/editor/icons/icon_graph_vector.png and /dev/null differ diff --git a/editor/icons/icon_graph_vector.svg b/editor/icons/icon_graph_vector.svg new file mode 100644 index 00000000000..81772fa4f52 --- /dev/null +++ b/editor/icons/icon_graph_vector.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_vector_uniform.png b/editor/icons/icon_graph_vector_uniform.png deleted file mode 100644 index a89166768bd..00000000000 Binary files a/editor/icons/icon_graph_vector_uniform.png and /dev/null differ diff --git a/editor/icons/icon_graph_vector_uniform.svg b/editor/icons/icon_graph_vector_uniform.svg new file mode 100644 index 00000000000..66f31bf5dd4 --- /dev/null +++ b/editor/icons/icon_graph_vector_uniform.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_graph_xform.png b/editor/icons/icon_graph_xform.png deleted file mode 100644 index 142ec3eca58..00000000000 Binary files a/editor/icons/icon_graph_xform.png and /dev/null differ diff --git a/editor/icons/icon_graph_xform.svg b/editor/icons/icon_graph_xform.svg new file mode 100644 index 00000000000..95b0a2eff88 --- /dev/null +++ b/editor/icons/icon_graph_xform.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_graph_xform_mult.png b/editor/icons/icon_graph_xform_mult.png deleted file mode 100644 index 94981d81afa..00000000000 Binary files a/editor/icons/icon_graph_xform_mult.png and /dev/null differ diff --git a/editor/icons/icon_graph_xform_mult.svg b/editor/icons/icon_graph_xform_mult.svg new file mode 100644 index 00000000000..4d5593084e6 --- /dev/null +++ b/editor/icons/icon_graph_xform_mult.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_graph_xform_scalar_func.png b/editor/icons/icon_graph_xform_scalar_func.png deleted file mode 100644 index d0edded8b09..00000000000 Binary files a/editor/icons/icon_graph_xform_scalar_func.png and /dev/null differ diff --git a/editor/icons/icon_graph_xform_scalar_func.svg b/editor/icons/icon_graph_xform_scalar_func.svg new file mode 100644 index 00000000000..350d9e98d78 --- /dev/null +++ b/editor/icons/icon_graph_xform_scalar_func.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_graph_xform_to_vecs.png b/editor/icons/icon_graph_xform_to_vecs.png deleted file mode 100644 index 9e2909969f4..00000000000 Binary files a/editor/icons/icon_graph_xform_to_vecs.png and /dev/null differ diff --git a/editor/icons/icon_graph_xform_to_vecs.svg b/editor/icons/icon_graph_xform_to_vecs.svg new file mode 100644 index 00000000000..7da2834f439 --- /dev/null +++ b/editor/icons/icon_graph_xform_to_vecs.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_graph_xform_uniform.png b/editor/icons/icon_graph_xform_uniform.png deleted file mode 100644 index 36ed91e4278..00000000000 Binary files a/editor/icons/icon_graph_xform_uniform.png and /dev/null differ diff --git a/editor/icons/icon_graph_xform_uniform.svg b/editor/icons/icon_graph_xform_uniform.svg new file mode 100644 index 00000000000..08bd345bc4e --- /dev/null +++ b/editor/icons/icon_graph_xform_uniform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_graph_xform_vec_func.png b/editor/icons/icon_graph_xform_vec_func.png deleted file mode 100644 index 3866430f72a..00000000000 Binary files a/editor/icons/icon_graph_xform_vec_func.png and /dev/null differ diff --git a/editor/icons/icon_graph_xform_vec_func.svg b/editor/icons/icon_graph_xform_vec_func.svg new file mode 100644 index 00000000000..29bff80cd5e --- /dev/null +++ b/editor/icons/icon_graph_xform_vec_func.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_graph_xform_vec_imult.png b/editor/icons/icon_graph_xform_vec_imult.png deleted file mode 100644 index 07a7e214c2c..00000000000 Binary files a/editor/icons/icon_graph_xform_vec_imult.png and /dev/null differ diff --git a/editor/icons/icon_graph_xform_vec_imult.svg b/editor/icons/icon_graph_xform_vec_imult.svg new file mode 100644 index 00000000000..edb68ffc4a6 --- /dev/null +++ b/editor/icons/icon_graph_xform_vec_imult.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_graph_xform_vec_mult.png b/editor/icons/icon_graph_xform_vec_mult.png deleted file mode 100644 index 8048e755c57..00000000000 Binary files a/editor/icons/icon_graph_xform_vec_mult.png and /dev/null differ diff --git a/editor/icons/icon_graph_xform_vec_mult.svg b/editor/icons/icon_graph_xform_vec_mult.svg new file mode 100644 index 00000000000..1e5cbafdb27 --- /dev/null +++ b/editor/icons/icon_graph_xform_vec_mult.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_grid.png b/editor/icons/icon_grid.png deleted file mode 100644 index 1366205fe0d..00000000000 Binary files a/editor/icons/icon_grid.png and /dev/null differ diff --git a/editor/icons/icon_grid.svg b/editor/icons/icon_grid.svg new file mode 100644 index 00000000000..ad18e2f7e91 --- /dev/null +++ b/editor/icons/icon_grid.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_grid_container.png b/editor/icons/icon_grid_container.png deleted file mode 100644 index 027e992770d..00000000000 Binary files a/editor/icons/icon_grid_container.png and /dev/null differ diff --git a/editor/icons/icon_grid_container.svg b/editor/icons/icon_grid_container.svg new file mode 100644 index 00000000000..0492c7d7fdc --- /dev/null +++ b/editor/icons/icon_grid_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_grid_map.png b/editor/icons/icon_grid_map.png deleted file mode 100644 index 69a431ccba8..00000000000 Binary files a/editor/icons/icon_grid_map.png and /dev/null differ diff --git a/editor/icons/icon_grid_map.svg b/editor/icons/icon_grid_map.svg new file mode 100644 index 00000000000..eafe1211f2a --- /dev/null +++ b/editor/icons/icon_grid_map.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_grid_map_floor.png b/editor/icons/icon_grid_map_floor.png deleted file mode 100644 index a75871188b6..00000000000 Binary files a/editor/icons/icon_grid_map_floor.png and /dev/null differ diff --git a/editor/icons/icon_groove_joint_2d.png b/editor/icons/icon_groove_joint_2d.png deleted file mode 100644 index f65dc2b6b8f..00000000000 Binary files a/editor/icons/icon_groove_joint_2d.png and /dev/null differ diff --git a/editor/icons/icon_groove_joint_2d.svg b/editor/icons/icon_groove_joint_2d.svg new file mode 100644 index 00000000000..bedb7fa474c --- /dev/null +++ b/editor/icons/icon_groove_joint_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_group.png b/editor/icons/icon_group.png deleted file mode 100644 index 5ffc90455e8..00000000000 Binary files a/editor/icons/icon_group.png and /dev/null differ diff --git a/editor/icons/icon_group.svg b/editor/icons/icon_group.svg new file mode 100644 index 00000000000..5e700de1623 --- /dev/null +++ b/editor/icons/icon_group.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_groups.png b/editor/icons/icon_groups.png deleted file mode 100644 index 84a05560a9d..00000000000 Binary files a/editor/icons/icon_groups.png and /dev/null differ diff --git a/editor/icons/icon_groups.svg b/editor/icons/icon_groups.svg new file mode 100644 index 00000000000..37e40749b8c --- /dev/null +++ b/editor/icons/icon_groups.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_gui_close.svg b/editor/icons/icon_gui_close.svg new file mode 100644 index 00000000000..ac023b70301 --- /dev/null +++ b/editor/icons/icon_gui_close.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_gui_close_dark.png b/editor/icons/icon_gui_close_dark.png deleted file mode 100644 index 8f1d7d8b2c1..00000000000 Binary files a/editor/icons/icon_gui_close_dark.png and /dev/null differ diff --git a/editor/icons/icon_gui_close_dark.svg b/editor/icons/icon_gui_close_dark.svg new file mode 100644 index 00000000000..e511a5d74a2 --- /dev/null +++ b/editor/icons/icon_gui_close_dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_gui_close_light.png b/editor/icons/icon_gui_close_light.png deleted file mode 100644 index b8e3a80e3b7..00000000000 Binary files a/editor/icons/icon_gui_close_light.png and /dev/null differ diff --git a/editor/icons/icon_gui_close_light.svg b/editor/icons/icon_gui_close_light.svg new file mode 100644 index 00000000000..ac023b70301 --- /dev/null +++ b/editor/icons/icon_gui_close_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_h_box_container.png b/editor/icons/icon_h_box_container.png deleted file mode 100644 index 36cef0a03c5..00000000000 Binary files a/editor/icons/icon_h_box_container.png and /dev/null differ diff --git a/editor/icons/icon_h_box_container.svg b/editor/icons/icon_h_box_container.svg new file mode 100644 index 00000000000..48a1fc7d646 --- /dev/null +++ b/editor/icons/icon_h_box_container.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_h_button_array.png b/editor/icons/icon_h_button_array.png deleted file mode 100644 index 81b2bf79e3a..00000000000 Binary files a/editor/icons/icon_h_button_array.png and /dev/null differ diff --git a/editor/icons/icon_h_button_array.svg b/editor/icons/icon_h_button_array.svg new file mode 100644 index 00000000000..3f95dbbde19 --- /dev/null +++ b/editor/icons/icon_h_button_array.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_h_scroll_bar.png b/editor/icons/icon_h_scroll_bar.png deleted file mode 100644 index c6c6daf7a42..00000000000 Binary files a/editor/icons/icon_h_scroll_bar.png and /dev/null differ diff --git a/editor/icons/icon_h_scroll_bar.svg b/editor/icons/icon_h_scroll_bar.svg new file mode 100644 index 00000000000..e0118b1186a --- /dev/null +++ b/editor/icons/icon_h_scroll_bar.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_h_separator.png b/editor/icons/icon_h_separator.png deleted file mode 100644 index 8ab1348c3ba..00000000000 Binary files a/editor/icons/icon_h_separator.png and /dev/null differ diff --git a/editor/icons/icon_h_separator.svg b/editor/icons/icon_h_separator.svg new file mode 100644 index 00000000000..34689555b3d --- /dev/null +++ b/editor/icons/icon_h_separator.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_h_slider.png b/editor/icons/icon_h_slider.png deleted file mode 100644 index 156364e920f..00000000000 Binary files a/editor/icons/icon_h_slider.png and /dev/null differ diff --git a/editor/icons/icon_h_slider.svg b/editor/icons/icon_h_slider.svg new file mode 100644 index 00000000000..ecfb84ebeb2 --- /dev/null +++ b/editor/icons/icon_h_slider.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_h_split_container.png b/editor/icons/icon_h_split_container.png deleted file mode 100644 index 65ef8655dd4..00000000000 Binary files a/editor/icons/icon_h_split_container.png and /dev/null differ diff --git a/editor/icons/icon_h_split_container.svg b/editor/icons/icon_h_split_container.svg new file mode 100644 index 00000000000..9985fcccfe0 --- /dev/null +++ b/editor/icons/icon_h_split_container.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_h_t_t_p_request.png b/editor/icons/icon_h_t_t_p_request.png deleted file mode 100644 index 60c6845b33c..00000000000 Binary files a/editor/icons/icon_h_t_t_p_request.png and /dev/null differ diff --git a/editor/icons/icon_h_t_t_p_request.svg b/editor/icons/icon_h_t_t_p_request.svg new file mode 100644 index 00000000000..27812cdd684 --- /dev/null +++ b/editor/icons/icon_h_t_t_p_request.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_headphones.png b/editor/icons/icon_headphones.png deleted file mode 100644 index 83309d91d57..00000000000 Binary files a/editor/icons/icon_headphones.png and /dev/null differ diff --git a/editor/icons/icon_headphones.svg b/editor/icons/icon_headphones.svg new file mode 100644 index 00000000000..e23a6c54f06 --- /dev/null +++ b/editor/icons/icon_headphones.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_help.png b/editor/icons/icon_help.png deleted file mode 100644 index d70807000ee..00000000000 Binary files a/editor/icons/icon_help.png and /dev/null differ diff --git a/editor/icons/icon_help.svg b/editor/icons/icon_help.svg new file mode 100644 index 00000000000..c149b2a0a7a --- /dev/null +++ b/editor/icons/icon_help.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_help_search.png b/editor/icons/icon_help_search.png deleted file mode 100644 index 7a1506853ed..00000000000 Binary files a/editor/icons/icon_help_search.png and /dev/null differ diff --git a/editor/icons/icon_help_search.svg b/editor/icons/icon_help_search.svg new file mode 100644 index 00000000000..c0768ea5ed7 --- /dev/null +++ b/editor/icons/icon_help_search.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_hidden.png b/editor/icons/icon_hidden.png deleted file mode 100644 index ef3039f580c..00000000000 Binary files a/editor/icons/icon_hidden.png and /dev/null differ diff --git a/editor/icons/icon_hidden.svg b/editor/icons/icon_hidden.svg new file mode 100644 index 00000000000..8328156e768 --- /dev/null +++ b/editor/icons/icon_hidden.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_hinge_joint.png b/editor/icons/icon_hinge_joint.png deleted file mode 100644 index 246ca1ba42f..00000000000 Binary files a/editor/icons/icon_hinge_joint.png and /dev/null differ diff --git a/editor/icons/icon_hinge_joint.svg b/editor/icons/icon_hinge_joint.svg new file mode 100644 index 00000000000..900786aa4c2 --- /dev/null +++ b/editor/icons/icon_hinge_joint.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_history.png b/editor/icons/icon_history.png deleted file mode 100644 index 47829182335..00000000000 Binary files a/editor/icons/icon_history.png and /dev/null differ diff --git a/editor/icons/icon_history.svg b/editor/icons/icon_history.svg new file mode 100644 index 00000000000..7194206154d --- /dev/null +++ b/editor/icons/icon_history.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_hsize.png b/editor/icons/icon_hsize.png deleted file mode 100644 index 7be48946b4c..00000000000 Binary files a/editor/icons/icon_hsize.png and /dev/null differ diff --git a/editor/icons/icon_hsize.svg b/editor/icons/icon_hsize.svg new file mode 100644 index 00000000000..a004cb529a5 --- /dev/null +++ b/editor/icons/icon_hsize.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_hslider_bg.png b/editor/icons/icon_hslider_bg.png deleted file mode 100644 index e3c61f25e0d..00000000000 Binary files a/editor/icons/icon_hslider_bg.png and /dev/null differ diff --git a/editor/icons/icon_hsplit_bg.png b/editor/icons/icon_hsplit_bg.png deleted file mode 100644 index cfb76f7dc72..00000000000 Binary files a/editor/icons/icon_hsplit_bg.png and /dev/null differ diff --git a/editor/icons/icon_hsplitter.png b/editor/icons/icon_hsplitter.png deleted file mode 100644 index 3ac1dddf904..00000000000 Binary files a/editor/icons/icon_hsplitter.png and /dev/null differ diff --git a/editor/icons/icon_iapi.png b/editor/icons/icon_iapi.png deleted file mode 100644 index dc2639da833..00000000000 Binary files a/editor/icons/icon_iapi.png and /dev/null differ diff --git a/editor/icons/icon_image.png b/editor/icons/icon_image.png deleted file mode 100644 index ddfabace251..00000000000 Binary files a/editor/icons/icon_image.png and /dev/null differ diff --git a/editor/icons/icon_image.svg b/editor/icons/icon_image.svg new file mode 100644 index 00000000000..b427ed5577b --- /dev/null +++ b/editor/icons/icon_image.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_image_sky_box.png b/editor/icons/icon_image_sky_box.png deleted file mode 100644 index cf80258577f..00000000000 Binary files a/editor/icons/icon_image_sky_box.png and /dev/null differ diff --git a/editor/icons/icon_image_texture.png b/editor/icons/icon_image_texture.png deleted file mode 100644 index 7c4493395ef..00000000000 Binary files a/editor/icons/icon_image_texture.png and /dev/null differ diff --git a/editor/icons/icon_image_texture.svg b/editor/icons/icon_image_texture.svg new file mode 100644 index 00000000000..59516a244c6 --- /dev/null +++ b/editor/icons/icon_image_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_immediate_geometry.png b/editor/icons/icon_immediate_geometry.png deleted file mode 100644 index 1ff99769218..00000000000 Binary files a/editor/icons/icon_immediate_geometry.png and /dev/null differ diff --git a/editor/icons/icon_immediate_geometry.svg b/editor/icons/icon_immediate_geometry.svg new file mode 100644 index 00000000000..f6d253d8657 --- /dev/null +++ b/editor/icons/icon_immediate_geometry.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_import_check.png b/editor/icons/icon_import_check.png deleted file mode 100644 index e72a30603d3..00000000000 Binary files a/editor/icons/icon_import_check.png and /dev/null differ diff --git a/editor/icons/icon_import_check.svg b/editor/icons/icon_import_check.svg new file mode 100644 index 00000000000..e3ad9ec37ef --- /dev/null +++ b/editor/icons/icon_import_check.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_import_fail.png b/editor/icons/icon_import_fail.png deleted file mode 100644 index f7dd6fd79ab..00000000000 Binary files a/editor/icons/icon_import_fail.png and /dev/null differ diff --git a/editor/icons/icon_import_fail.svg b/editor/icons/icon_import_fail.svg new file mode 100644 index 00000000000..e088126043b --- /dev/null +++ b/editor/icons/icon_import_fail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_influence_zone.png b/editor/icons/icon_influence_zone.png deleted file mode 100644 index 6d687735e9f..00000000000 Binary files a/editor/icons/icon_influence_zone.png and /dev/null differ diff --git a/editor/icons/icon_instance.png b/editor/icons/icon_instance.png deleted file mode 100644 index 51859a04252..00000000000 Binary files a/editor/icons/icon_instance.png and /dev/null differ diff --git a/editor/icons/icon_instance.svg b/editor/icons/icon_instance.svg new file mode 100644 index 00000000000..8fecb9696a1 --- /dev/null +++ b/editor/icons/icon_instance.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_instance_options.png b/editor/icons/icon_instance_options.png deleted file mode 100644 index ce6810ad271..00000000000 Binary files a/editor/icons/icon_instance_options.png and /dev/null differ diff --git a/editor/icons/icon_instance_options.svg b/editor/icons/icon_instance_options.svg new file mode 100644 index 00000000000..b15276c9979 --- /dev/null +++ b/editor/icons/icon_instance_options.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_integer.png b/editor/icons/icon_integer.png deleted file mode 100644 index 583b9bda0bd..00000000000 Binary files a/editor/icons/icon_integer.png and /dev/null differ diff --git a/editor/icons/icon_integer.svg b/editor/icons/icon_integer.svg new file mode 100644 index 00000000000..bcd952f6355 --- /dev/null +++ b/editor/icons/icon_integer.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_interp_cubic.png b/editor/icons/icon_interp_cubic.png deleted file mode 100644 index c723f7b6481..00000000000 Binary files a/editor/icons/icon_interp_cubic.png and /dev/null differ diff --git a/editor/icons/icon_interp_cubic.svg b/editor/icons/icon_interp_cubic.svg new file mode 100644 index 00000000000..d949ae7e746 --- /dev/null +++ b/editor/icons/icon_interp_cubic.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_interp_linear.png b/editor/icons/icon_interp_linear.png deleted file mode 100644 index 9d130b4507b..00000000000 Binary files a/editor/icons/icon_interp_linear.png and /dev/null differ diff --git a/editor/icons/icon_interp_linear.svg b/editor/icons/icon_interp_linear.svg new file mode 100644 index 00000000000..00b5e326a08 --- /dev/null +++ b/editor/icons/icon_interp_linear.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_interp_raw.png b/editor/icons/icon_interp_raw.png deleted file mode 100644 index 93ade1d674a..00000000000 Binary files a/editor/icons/icon_interp_raw.png and /dev/null differ diff --git a/editor/icons/icon_interp_raw.svg b/editor/icons/icon_interp_raw.svg new file mode 100644 index 00000000000..140ff2b0ff4 --- /dev/null +++ b/editor/icons/icon_interp_raw.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_interp_wrap_clamp.png b/editor/icons/icon_interp_wrap_clamp.png deleted file mode 100644 index 1024bd7d29e..00000000000 Binary files a/editor/icons/icon_interp_wrap_clamp.png and /dev/null differ diff --git a/editor/icons/icon_interp_wrap_clamp.svg b/editor/icons/icon_interp_wrap_clamp.svg new file mode 100644 index 00000000000..d49a450d2e6 --- /dev/null +++ b/editor/icons/icon_interp_wrap_clamp.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_interp_wrap_loop.png b/editor/icons/icon_interp_wrap_loop.png deleted file mode 100644 index 3a7ddacdb2c..00000000000 Binary files a/editor/icons/icon_interp_wrap_loop.png and /dev/null differ diff --git a/editor/icons/icon_interp_wrap_loop.svg b/editor/icons/icon_interp_wrap_loop.svg new file mode 100644 index 00000000000..85d17cb50d8 --- /dev/null +++ b/editor/icons/icon_interp_wrap_loop.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_interpolated_camera.png b/editor/icons/icon_interpolated_camera.png deleted file mode 100644 index c66724f513e..00000000000 Binary files a/editor/icons/icon_interpolated_camera.png and /dev/null differ diff --git a/editor/icons/icon_interpolated_camera.svg b/editor/icons/icon_interpolated_camera.svg new file mode 100644 index 00000000000..7a33c64ca2b --- /dev/null +++ b/editor/icons/icon_interpolated_camera.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_invalid_key.png b/editor/icons/icon_invalid_key.png deleted file mode 100644 index 8ebc6d6addb..00000000000 Binary files a/editor/icons/icon_invalid_key.png and /dev/null differ diff --git a/editor/icons/icon_invalid_key.svg b/editor/icons/icon_invalid_key.svg new file mode 100644 index 00000000000..f1df51f7c3d --- /dev/null +++ b/editor/icons/icon_invalid_key.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_inverse_kinematics.png b/editor/icons/icon_inverse_kinematics.png deleted file mode 100644 index dd404765d39..00000000000 Binary files a/editor/icons/icon_inverse_kinematics.png and /dev/null differ diff --git a/editor/icons/icon_inverse_kinematics.svg b/editor/icons/icon_inverse_kinematics.svg new file mode 100644 index 00000000000..fa99b6c7cc6 --- /dev/null +++ b/editor/icons/icon_inverse_kinematics.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_item_list.png b/editor/icons/icon_item_list.png deleted file mode 100644 index 3f5245d520f..00000000000 Binary files a/editor/icons/icon_item_list.png and /dev/null differ diff --git a/editor/icons/icon_item_list.svg b/editor/icons/icon_item_list.svg new file mode 100644 index 00000000000..e01c4cd0985 --- /dev/null +++ b/editor/icons/icon_item_list.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/icon_joy_axis.png b/editor/icons/icon_joy_axis.png deleted file mode 100644 index 8b1affd0522..00000000000 Binary files a/editor/icons/icon_joy_axis.png and /dev/null differ diff --git a/editor/icons/icon_joy_axis.svg b/editor/icons/icon_joy_axis.svg new file mode 100644 index 00000000000..8d9e3e01d89 --- /dev/null +++ b/editor/icons/icon_joy_axis.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_joy_button.png b/editor/icons/icon_joy_button.png deleted file mode 100644 index 150102b2096..00000000000 Binary files a/editor/icons/icon_joy_button.png and /dev/null differ diff --git a/editor/icons/icon_joy_button.svg b/editor/icons/icon_joy_button.svg new file mode 100644 index 00000000000..98cf48e70d1 --- /dev/null +++ b/editor/icons/icon_joy_button.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_joypad.png b/editor/icons/icon_joypad.png deleted file mode 100644 index 5df471109a8..00000000000 Binary files a/editor/icons/icon_joypad.png and /dev/null differ diff --git a/editor/icons/icon_joypad.svg b/editor/icons/icon_joypad.svg new file mode 100644 index 00000000000..bde84bd399f --- /dev/null +++ b/editor/icons/icon_joypad.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_key.png b/editor/icons/icon_key.png deleted file mode 100644 index 564b474331b..00000000000 Binary files a/editor/icons/icon_key.png and /dev/null differ diff --git a/editor/icons/icon_key.svg b/editor/icons/icon_key.svg new file mode 100644 index 00000000000..041b820e004 --- /dev/null +++ b/editor/icons/icon_key.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_key_call.png b/editor/icons/icon_key_call.png deleted file mode 100644 index 044662eb924..00000000000 Binary files a/editor/icons/icon_key_call.png and /dev/null differ diff --git a/editor/icons/icon_key_hover.png b/editor/icons/icon_key_hover.png deleted file mode 100644 index c8e59f0e87d..00000000000 Binary files a/editor/icons/icon_key_hover.png and /dev/null differ diff --git a/editor/icons/icon_key_hover.svg b/editor/icons/icon_key_hover.svg new file mode 100644 index 00000000000..4a3fab47548 --- /dev/null +++ b/editor/icons/icon_key_hover.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_key_invalid.png b/editor/icons/icon_key_invalid.png deleted file mode 100644 index 8ebc6d6addb..00000000000 Binary files a/editor/icons/icon_key_invalid.png and /dev/null differ diff --git a/editor/icons/icon_key_invalid.svg b/editor/icons/icon_key_invalid.svg new file mode 100644 index 00000000000..f1df51f7c3d --- /dev/null +++ b/editor/icons/icon_key_invalid.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_key_invalid_hover.png b/editor/icons/icon_key_invalid_hover.png deleted file mode 100644 index 6f0396d96a0..00000000000 Binary files a/editor/icons/icon_key_invalid_hover.png and /dev/null differ diff --git a/editor/icons/icon_key_next.png b/editor/icons/icon_key_next.png deleted file mode 100644 index 288161d245b..00000000000 Binary files a/editor/icons/icon_key_next.png and /dev/null differ diff --git a/editor/icons/icon_key_next.svg b/editor/icons/icon_key_next.svg new file mode 100644 index 00000000000..7fb221f96dc --- /dev/null +++ b/editor/icons/icon_key_next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_key_selected.png b/editor/icons/icon_key_selected.png deleted file mode 100644 index e5f802db1cb..00000000000 Binary files a/editor/icons/icon_key_selected.png and /dev/null differ diff --git a/editor/icons/icon_key_selected.svg b/editor/icons/icon_key_selected.svg new file mode 100644 index 00000000000..c73d31981d3 --- /dev/null +++ b/editor/icons/icon_key_selected.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_key_value.png b/editor/icons/icon_key_value.png deleted file mode 100644 index 1fa007f9e2e..00000000000 Binary files a/editor/icons/icon_key_value.png and /dev/null differ diff --git a/editor/icons/icon_key_value.svg b/editor/icons/icon_key_value.svg new file mode 100644 index 00000000000..61032a1e160 --- /dev/null +++ b/editor/icons/icon_key_value.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_key_xform.png b/editor/icons/icon_key_xform.png deleted file mode 100644 index bd87611d7a8..00000000000 Binary files a/editor/icons/icon_key_xform.png and /dev/null differ diff --git a/editor/icons/icon_key_xform.svg b/editor/icons/icon_key_xform.svg new file mode 100644 index 00000000000..7b737157710 --- /dev/null +++ b/editor/icons/icon_key_xform.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_keyboard.png b/editor/icons/icon_keyboard.png deleted file mode 100644 index a2753455770..00000000000 Binary files a/editor/icons/icon_keyboard.png and /dev/null differ diff --git a/editor/icons/icon_keyboard.svg b/editor/icons/icon_keyboard.svg new file mode 100644 index 00000000000..ce98e47ab4a --- /dev/null +++ b/editor/icons/icon_keyboard.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_keying.png b/editor/icons/icon_keying.png deleted file mode 100644 index de790a4f09c..00000000000 Binary files a/editor/icons/icon_keying.png and /dev/null differ diff --git a/editor/icons/icon_kinematic_body.png b/editor/icons/icon_kinematic_body.png deleted file mode 100644 index 19a401dbf83..00000000000 Binary files a/editor/icons/icon_kinematic_body.png and /dev/null differ diff --git a/editor/icons/icon_kinematic_body.svg b/editor/icons/icon_kinematic_body.svg new file mode 100644 index 00000000000..393e21a529a --- /dev/null +++ b/editor/icons/icon_kinematic_body.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_kinematic_body_2d.png b/editor/icons/icon_kinematic_body_2d.png deleted file mode 100644 index 2f9d8348055..00000000000 Binary files a/editor/icons/icon_kinematic_body_2d.png and /dev/null differ diff --git a/editor/icons/icon_kinematic_body_2d.svg b/editor/icons/icon_kinematic_body_2d.svg new file mode 100644 index 00000000000..e269efd12a5 --- /dev/null +++ b/editor/icons/icon_kinematic_body_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_label.png b/editor/icons/icon_label.png deleted file mode 100644 index 16919a5fef7..00000000000 Binary files a/editor/icons/icon_label.png and /dev/null differ diff --git a/editor/icons/icon_label.svg b/editor/icons/icon_label.svg new file mode 100644 index 00000000000..2ca7febb547 --- /dev/null +++ b/editor/icons/icon_label.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_large_texture.png b/editor/icons/icon_large_texture.png deleted file mode 100644 index 1727e2409fc..00000000000 Binary files a/editor/icons/icon_large_texture.png and /dev/null differ diff --git a/editor/icons/icon_large_texture.svg b/editor/icons/icon_large_texture.svg new file mode 100644 index 00000000000..b68b27cfb4d --- /dev/null +++ b/editor/icons/icon_large_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_light_2d.png b/editor/icons/icon_light_2d.png deleted file mode 100644 index ebab16c1b12..00000000000 Binary files a/editor/icons/icon_light_2d.png and /dev/null differ diff --git a/editor/icons/icon_light_2d.svg b/editor/icons/icon_light_2d.svg new file mode 100644 index 00000000000..6e680ddef2c --- /dev/null +++ b/editor/icons/icon_light_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_light_map.png b/editor/icons/icon_light_map.png deleted file mode 100644 index e0333f06ea4..00000000000 Binary files a/editor/icons/icon_light_map.png and /dev/null differ diff --git a/editor/icons/icon_light_occluder_2d.png b/editor/icons/icon_light_occluder_2d.png deleted file mode 100644 index ceefbcbe2ac..00000000000 Binary files a/editor/icons/icon_light_occluder_2d.png and /dev/null differ diff --git a/editor/icons/icon_light_occluder_2d.svg b/editor/icons/icon_light_occluder_2d.svg new file mode 100644 index 00000000000..f7eb588e741 --- /dev/null +++ b/editor/icons/icon_light_occluder_2d.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_lightr.png b/editor/icons/icon_lightr.png deleted file mode 100644 index 6de8c8de3f5..00000000000 Binary files a/editor/icons/icon_lightr.png and /dev/null differ diff --git a/editor/icons/icon_line_2d.png b/editor/icons/icon_line_2d.png deleted file mode 100644 index 8d2b176335c..00000000000 Binary files a/editor/icons/icon_line_2d.png and /dev/null differ diff --git a/editor/icons/icon_line_2d.svg b/editor/icons/icon_line_2d.svg new file mode 100644 index 00000000000..ca9184e9792 --- /dev/null +++ b/editor/icons/icon_line_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_line_edit.png b/editor/icons/icon_line_edit.png deleted file mode 100644 index 813642f25eb..00000000000 Binary files a/editor/icons/icon_line_edit.png and /dev/null differ diff --git a/editor/icons/icon_line_edit.svg b/editor/icons/icon_line_edit.svg new file mode 100644 index 00000000000..209f0e1940a --- /dev/null +++ b/editor/icons/icon_line_edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_line_shape_2d.png b/editor/icons/icon_line_shape_2d.png deleted file mode 100644 index e31722d69c9..00000000000 Binary files a/editor/icons/icon_line_shape_2d.png and /dev/null differ diff --git a/editor/icons/icon_line_shape_2d.svg b/editor/icons/icon_line_shape_2d.svg new file mode 100644 index 00000000000..f6c036bb2ea --- /dev/null +++ b/editor/icons/icon_line_shape_2d.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_link_button.png b/editor/icons/icon_link_button.png deleted file mode 100644 index 7febe3c19a6..00000000000 Binary files a/editor/icons/icon_link_button.png and /dev/null differ diff --git a/editor/icons/icon_link_button.svg b/editor/icons/icon_link_button.svg new file mode 100644 index 00000000000..f2fad1f2596 --- /dev/null +++ b/editor/icons/icon_link_button.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_list_select.png b/editor/icons/icon_list_select.png deleted file mode 100644 index 9596d51e726..00000000000 Binary files a/editor/icons/icon_list_select.png and /dev/null differ diff --git a/editor/icons/icon_list_select.svg b/editor/icons/icon_list_select.svg new file mode 100644 index 00000000000..a37a4830f35 --- /dev/null +++ b/editor/icons/icon_list_select.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_listener.png b/editor/icons/icon_listener.png deleted file mode 100644 index 3ce479e2fa5..00000000000 Binary files a/editor/icons/icon_listener.png and /dev/null differ diff --git a/editor/icons/icon_listener.svg b/editor/icons/icon_listener.svg new file mode 100644 index 00000000000..2b4b87e6d09 --- /dev/null +++ b/editor/icons/icon_listener.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_live_debug.png b/editor/icons/icon_live_debug.png deleted file mode 100644 index ad55646b9ab..00000000000 Binary files a/editor/icons/icon_live_debug.png and /dev/null differ diff --git a/editor/icons/icon_load.png b/editor/icons/icon_load.png deleted file mode 100644 index 81835efa25f..00000000000 Binary files a/editor/icons/icon_load.png and /dev/null differ diff --git a/editor/icons/icon_load.svg b/editor/icons/icon_load.svg new file mode 100644 index 00000000000..b564c1f656b --- /dev/null +++ b/editor/icons/icon_load.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_lock.png b/editor/icons/icon_lock.png deleted file mode 100644 index a7059f5e7c8..00000000000 Binary files a/editor/icons/icon_lock.png and /dev/null differ diff --git a/editor/icons/icon_lock.svg b/editor/icons/icon_lock.svg new file mode 100644 index 00000000000..b0b01256480 --- /dev/null +++ b/editor/icons/icon_lock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_logo.png b/editor/icons/icon_logo.png deleted file mode 100644 index aed94cb87a3..00000000000 Binary files a/editor/icons/icon_logo.png and /dev/null differ diff --git a/editor/icons/icon_logo_small.png b/editor/icons/icon_logo_small.png deleted file mode 100644 index 809cf185418..00000000000 Binary files a/editor/icons/icon_logo_small.png and /dev/null differ diff --git a/editor/icons/icon_loop.png b/editor/icons/icon_loop.png deleted file mode 100644 index 91c3ad600ea..00000000000 Binary files a/editor/icons/icon_loop.png and /dev/null differ diff --git a/editor/icons/icon_loop.svg b/editor/icons/icon_loop.svg new file mode 100644 index 00000000000..c5dbf442386 --- /dev/null +++ b/editor/icons/icon_loop.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_loop_interpolation.png b/editor/icons/icon_loop_interpolation.png deleted file mode 100644 index 488b33316e0..00000000000 Binary files a/editor/icons/icon_loop_interpolation.png and /dev/null differ diff --git a/editor/icons/icon_loop_interpolation.svg b/editor/icons/icon_loop_interpolation.svg new file mode 100644 index 00000000000..ab2e564f783 --- /dev/null +++ b/editor/icons/icon_loop_interpolation.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_main_play.png b/editor/icons/icon_main_play.png deleted file mode 100644 index a72672f9638..00000000000 Binary files a/editor/icons/icon_main_play.png and /dev/null differ diff --git a/editor/icons/icon_main_play.svg b/editor/icons/icon_main_play.svg new file mode 100644 index 00000000000..7b96840a44e --- /dev/null +++ b/editor/icons/icon_main_play.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_main_stop.png b/editor/icons/icon_main_stop.png deleted file mode 100644 index 58387519dc1..00000000000 Binary files a/editor/icons/icon_main_stop.png and /dev/null differ diff --git a/editor/icons/icon_main_stop.svg b/editor/icons/icon_main_stop.svg new file mode 100644 index 00000000000..640b2998f6f --- /dev/null +++ b/editor/icons/icon_main_stop.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_margin_container.png b/editor/icons/icon_margin_container.png deleted file mode 100644 index 57f0cec42e7..00000000000 Binary files a/editor/icons/icon_margin_container.png and /dev/null differ diff --git a/editor/icons/icon_margin_container.svg b/editor/icons/icon_margin_container.svg new file mode 100644 index 00000000000..8f33a1fe1b6 --- /dev/null +++ b/editor/icons/icon_margin_container.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_material_preview_cube.png b/editor/icons/icon_material_preview_cube.png deleted file mode 100644 index f97c23b950b..00000000000 Binary files a/editor/icons/icon_material_preview_cube.png and /dev/null differ diff --git a/editor/icons/icon_material_preview_cube.svg b/editor/icons/icon_material_preview_cube.svg new file mode 100644 index 00000000000..19d8c46fbed --- /dev/null +++ b/editor/icons/icon_material_preview_cube.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_material_preview_cube_off.png b/editor/icons/icon_material_preview_cube_off.png deleted file mode 100644 index ad63218658b..00000000000 Binary files a/editor/icons/icon_material_preview_cube_off.png and /dev/null differ diff --git a/editor/icons/icon_material_preview_cube_off.svg b/editor/icons/icon_material_preview_cube_off.svg new file mode 100644 index 00000000000..3c61794a562 --- /dev/null +++ b/editor/icons/icon_material_preview_cube_off.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_material_preview_light_1.png b/editor/icons/icon_material_preview_light_1.png deleted file mode 100644 index 2a49a7530b0..00000000000 Binary files a/editor/icons/icon_material_preview_light_1.png and /dev/null differ diff --git a/editor/icons/icon_material_preview_light_1.svg b/editor/icons/icon_material_preview_light_1.svg new file mode 100644 index 00000000000..ff70b1e5d40 --- /dev/null +++ b/editor/icons/icon_material_preview_light_1.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_material_preview_light_1_off.png b/editor/icons/icon_material_preview_light_1_off.png deleted file mode 100644 index 738dd75594e..00000000000 Binary files a/editor/icons/icon_material_preview_light_1_off.png and /dev/null differ diff --git a/editor/icons/icon_material_preview_light_1_off.svg b/editor/icons/icon_material_preview_light_1_off.svg new file mode 100644 index 00000000000..63a2094e67c --- /dev/null +++ b/editor/icons/icon_material_preview_light_1_off.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_material_preview_light_2.png b/editor/icons/icon_material_preview_light_2.png deleted file mode 100644 index 7e43b4425e6..00000000000 Binary files a/editor/icons/icon_material_preview_light_2.png and /dev/null differ diff --git a/editor/icons/icon_material_preview_light_2.svg b/editor/icons/icon_material_preview_light_2.svg new file mode 100644 index 00000000000..7fdb9cccc68 --- /dev/null +++ b/editor/icons/icon_material_preview_light_2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_material_preview_light_2_off.png b/editor/icons/icon_material_preview_light_2_off.png deleted file mode 100644 index e2f0e345a9e..00000000000 Binary files a/editor/icons/icon_material_preview_light_2_off.png and /dev/null differ diff --git a/editor/icons/icon_material_preview_light_2_off.svg b/editor/icons/icon_material_preview_light_2_off.svg new file mode 100644 index 00000000000..c614a1f62a6 --- /dev/null +++ b/editor/icons/icon_material_preview_light_2_off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_material_preview_sphere.png b/editor/icons/icon_material_preview_sphere.png deleted file mode 100644 index 80b06b39b78..00000000000 Binary files a/editor/icons/icon_material_preview_sphere.png and /dev/null differ diff --git a/editor/icons/icon_material_preview_sphere.svg b/editor/icons/icon_material_preview_sphere.svg new file mode 100644 index 00000000000..9b30d135443 --- /dev/null +++ b/editor/icons/icon_material_preview_sphere.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_material_preview_sphere_off.png b/editor/icons/icon_material_preview_sphere_off.png deleted file mode 100644 index a5acfcb8c9f..00000000000 Binary files a/editor/icons/icon_material_preview_sphere_off.png and /dev/null differ diff --git a/editor/icons/icon_material_preview_sphere_off.svg b/editor/icons/icon_material_preview_sphere_off.svg new file mode 100644 index 00000000000..57e38534ab6 --- /dev/null +++ b/editor/icons/icon_material_preview_sphere_off.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_material_shader.png b/editor/icons/icon_material_shader.png deleted file mode 100644 index 568a45d9384..00000000000 Binary files a/editor/icons/icon_material_shader.png and /dev/null differ diff --git a/editor/icons/icon_material_shader_graph.png b/editor/icons/icon_material_shader_graph.png deleted file mode 100644 index f40e3755af8..00000000000 Binary files a/editor/icons/icon_material_shader_graph.png and /dev/null differ diff --git a/editor/icons/icon_matrix.png b/editor/icons/icon_matrix.png deleted file mode 100644 index ba0772ff8ac..00000000000 Binary files a/editor/icons/icon_matrix.png and /dev/null differ diff --git a/editor/icons/icon_matrix.svg b/editor/icons/icon_matrix.svg new file mode 100644 index 00000000000..e14566f8167 --- /dev/null +++ b/editor/icons/icon_matrix.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_menu_button.png b/editor/icons/icon_menu_button.png deleted file mode 100644 index 1fd2e41c238..00000000000 Binary files a/editor/icons/icon_menu_button.png and /dev/null differ diff --git a/editor/icons/icon_menu_button.svg b/editor/icons/icon_menu_button.svg new file mode 100644 index 00000000000..28fafcc4658 --- /dev/null +++ b/editor/icons/icon_menu_button.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_mesh.png b/editor/icons/icon_mesh.png deleted file mode 100644 index 03e15014037..00000000000 Binary files a/editor/icons/icon_mesh.png and /dev/null differ diff --git a/editor/icons/icon_mesh.svg b/editor/icons/icon_mesh.svg new file mode 100644 index 00000000000..d90dc14b5ba --- /dev/null +++ b/editor/icons/icon_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_mesh_instance.png b/editor/icons/icon_mesh_instance.png deleted file mode 100644 index c513feb1cd2..00000000000 Binary files a/editor/icons/icon_mesh_instance.png and /dev/null differ diff --git a/editor/icons/icon_mesh_instance.svg b/editor/icons/icon_mesh_instance.svg new file mode 100644 index 00000000000..12599bd78bc --- /dev/null +++ b/editor/icons/icon_mesh_instance.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_mesh_library.png b/editor/icons/icon_mesh_library.png deleted file mode 100644 index 0bb37b1da34..00000000000 Binary files a/editor/icons/icon_mesh_library.png and /dev/null differ diff --git a/editor/icons/icon_mesh_library.svg b/editor/icons/icon_mesh_library.svg new file mode 100644 index 00000000000..3bef2df33c9 --- /dev/null +++ b/editor/icons/icon_mesh_library.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_mesh_old.png b/editor/icons/icon_mesh_old.png deleted file mode 100644 index 18531ff8448..00000000000 Binary files a/editor/icons/icon_mesh_old.png and /dev/null differ diff --git a/editor/icons/icon_meshr.png b/editor/icons/icon_meshr.png deleted file mode 100644 index 1ed2a123e6f..00000000000 Binary files a/editor/icons/icon_meshr.png and /dev/null differ diff --git a/editor/icons/icon_mini_aabb.png b/editor/icons/icon_mini_aabb.png deleted file mode 100644 index eebc4633e42..00000000000 Binary files a/editor/icons/icon_mini_aabb.png and /dev/null differ diff --git a/editor/icons/icon_mini_aabb.svg b/editor/icons/icon_mini_aabb.svg new file mode 100644 index 00000000000..d9c710ee1c9 --- /dev/null +++ b/editor/icons/icon_mini_aabb.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_mini_array.png b/editor/icons/icon_mini_array.png deleted file mode 100644 index ade885e4d4b..00000000000 Binary files a/editor/icons/icon_mini_array.png and /dev/null differ diff --git a/editor/icons/icon_mini_array.svg b/editor/icons/icon_mini_array.svg new file mode 100644 index 00000000000..a1ec948063b --- /dev/null +++ b/editor/icons/icon_mini_array.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_basis.png b/editor/icons/icon_mini_basis.png deleted file mode 100644 index 7a4ac9b1376..00000000000 Binary files a/editor/icons/icon_mini_basis.png and /dev/null differ diff --git a/editor/icons/icon_mini_basis.svg b/editor/icons/icon_mini_basis.svg new file mode 100644 index 00000000000..e0dc132d12e --- /dev/null +++ b/editor/icons/icon_mini_basis.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_boolean.png b/editor/icons/icon_mini_boolean.png deleted file mode 100644 index 9cb64fc9834..00000000000 Binary files a/editor/icons/icon_mini_boolean.png and /dev/null differ diff --git a/editor/icons/icon_mini_boolean.svg b/editor/icons/icon_mini_boolean.svg new file mode 100644 index 00000000000..b8861c9f175 --- /dev/null +++ b/editor/icons/icon_mini_boolean.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_color.png b/editor/icons/icon_mini_color.png deleted file mode 100644 index bebf64e2620..00000000000 Binary files a/editor/icons/icon_mini_color.png and /dev/null differ diff --git a/editor/icons/icon_mini_color.svg b/editor/icons/icon_mini_color.svg new file mode 100644 index 00000000000..b70015a05d1 --- /dev/null +++ b/editor/icons/icon_mini_color.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_mini_color_array.png b/editor/icons/icon_mini_color_array.png deleted file mode 100644 index 434b2f96f50..00000000000 Binary files a/editor/icons/icon_mini_color_array.png and /dev/null differ diff --git a/editor/icons/icon_mini_color_array.svg b/editor/icons/icon_mini_color_array.svg new file mode 100644 index 00000000000..2a5588a6982 --- /dev/null +++ b/editor/icons/icon_mini_color_array.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_dictionary.png b/editor/icons/icon_mini_dictionary.png deleted file mode 100644 index 11fd536a832..00000000000 Binary files a/editor/icons/icon_mini_dictionary.png and /dev/null differ diff --git a/editor/icons/icon_mini_dictionary.svg b/editor/icons/icon_mini_dictionary.svg new file mode 100644 index 00000000000..eb68709c4f9 --- /dev/null +++ b/editor/icons/icon_mini_dictionary.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_float.png b/editor/icons/icon_mini_float.png deleted file mode 100644 index f8c8d9a1747..00000000000 Binary files a/editor/icons/icon_mini_float.png and /dev/null differ diff --git a/editor/icons/icon_mini_float.svg b/editor/icons/icon_mini_float.svg new file mode 100644 index 00000000000..2eb71fd85e3 --- /dev/null +++ b/editor/icons/icon_mini_float.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_float_array.png b/editor/icons/icon_mini_float_array.png deleted file mode 100644 index 8b8177e1518..00000000000 Binary files a/editor/icons/icon_mini_float_array.png and /dev/null differ diff --git a/editor/icons/icon_mini_float_array.svg b/editor/icons/icon_mini_float_array.svg new file mode 100644 index 00000000000..284b5911b7c --- /dev/null +++ b/editor/icons/icon_mini_float_array.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_image.png b/editor/icons/icon_mini_image.png deleted file mode 100644 index 2ad359bdbe0..00000000000 Binary files a/editor/icons/icon_mini_image.png and /dev/null differ diff --git a/editor/icons/icon_mini_image.svg b/editor/icons/icon_mini_image.svg new file mode 100644 index 00000000000..a3f273078c4 --- /dev/null +++ b/editor/icons/icon_mini_image.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_input.png b/editor/icons/icon_mini_input.png deleted file mode 100644 index fec26dd68ec..00000000000 Binary files a/editor/icons/icon_mini_input.png and /dev/null differ diff --git a/editor/icons/icon_mini_input.svg b/editor/icons/icon_mini_input.svg new file mode 100644 index 00000000000..c64db971279 --- /dev/null +++ b/editor/icons/icon_mini_input.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_int_array.png b/editor/icons/icon_mini_int_array.png deleted file mode 100644 index d1bd2e82a71..00000000000 Binary files a/editor/icons/icon_mini_int_array.png and /dev/null differ diff --git a/editor/icons/icon_mini_int_array.svg b/editor/icons/icon_mini_int_array.svg new file mode 100644 index 00000000000..e5d4d97a901 --- /dev/null +++ b/editor/icons/icon_mini_int_array.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_mini_integer.png b/editor/icons/icon_mini_integer.png deleted file mode 100644 index dad1bb160b6..00000000000 Binary files a/editor/icons/icon_mini_integer.png and /dev/null differ diff --git a/editor/icons/icon_mini_integer.svg b/editor/icons/icon_mini_integer.svg new file mode 100644 index 00000000000..05d09d9823e --- /dev/null +++ b/editor/icons/icon_mini_integer.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_matrix3.png b/editor/icons/icon_mini_matrix3.png deleted file mode 100644 index 7a4ac9b1376..00000000000 Binary files a/editor/icons/icon_mini_matrix3.png and /dev/null differ diff --git a/editor/icons/icon_mini_matrix3.svg b/editor/icons/icon_mini_matrix3.svg new file mode 100644 index 00000000000..e0dc132d12e --- /dev/null +++ b/editor/icons/icon_mini_matrix3.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_matrix32.png b/editor/icons/icon_mini_matrix32.png deleted file mode 100644 index 6018a00747d..00000000000 Binary files a/editor/icons/icon_mini_matrix32.png and /dev/null differ diff --git a/editor/icons/icon_mini_object.png b/editor/icons/icon_mini_object.png deleted file mode 100644 index 4afe7cfca14..00000000000 Binary files a/editor/icons/icon_mini_object.png and /dev/null differ diff --git a/editor/icons/icon_mini_object.svg b/editor/icons/icon_mini_object.svg new file mode 100644 index 00000000000..8cbbfa28087 --- /dev/null +++ b/editor/icons/icon_mini_object.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_mini_path.png b/editor/icons/icon_mini_path.png deleted file mode 100644 index 9eb06325718..00000000000 Binary files a/editor/icons/icon_mini_path.png and /dev/null differ diff --git a/editor/icons/icon_mini_path.svg b/editor/icons/icon_mini_path.svg new file mode 100644 index 00000000000..d09f56e7533 --- /dev/null +++ b/editor/icons/icon_mini_path.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_plane.png b/editor/icons/icon_mini_plane.png deleted file mode 100644 index 45676236bd7..00000000000 Binary files a/editor/icons/icon_mini_plane.png and /dev/null differ diff --git a/editor/icons/icon_mini_plane.svg b/editor/icons/icon_mini_plane.svg new file mode 100644 index 00000000000..5d2ee937c00 --- /dev/null +++ b/editor/icons/icon_mini_plane.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_quat.png b/editor/icons/icon_mini_quat.png deleted file mode 100644 index 4ed2f5695c1..00000000000 Binary files a/editor/icons/icon_mini_quat.png and /dev/null differ diff --git a/editor/icons/icon_mini_quat.svg b/editor/icons/icon_mini_quat.svg new file mode 100644 index 00000000000..7baaf440895 --- /dev/null +++ b/editor/icons/icon_mini_quat.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_raw_array.png b/editor/icons/icon_mini_raw_array.png deleted file mode 100644 index 66bcf7c740b..00000000000 Binary files a/editor/icons/icon_mini_raw_array.png and /dev/null differ diff --git a/editor/icons/icon_mini_raw_array.svg b/editor/icons/icon_mini_raw_array.svg new file mode 100644 index 00000000000..827e60d0e30 --- /dev/null +++ b/editor/icons/icon_mini_raw_array.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_mini_rect2.png b/editor/icons/icon_mini_rect2.png deleted file mode 100644 index db13e1a48e7..00000000000 Binary files a/editor/icons/icon_mini_rect2.png and /dev/null differ diff --git a/editor/icons/icon_mini_rect2.svg b/editor/icons/icon_mini_rect2.svg new file mode 100644 index 00000000000..d9e94131859 --- /dev/null +++ b/editor/icons/icon_mini_rect2.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_rid.png b/editor/icons/icon_mini_rid.png deleted file mode 100644 index 278a9d1ee66..00000000000 Binary files a/editor/icons/icon_mini_rid.png and /dev/null differ diff --git a/editor/icons/icon_mini_rid.svg b/editor/icons/icon_mini_rid.svg new file mode 100644 index 00000000000..3fe12d0819d --- /dev/null +++ b/editor/icons/icon_mini_rid.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_string.png b/editor/icons/icon_mini_string.png deleted file mode 100644 index 504556dd744..00000000000 Binary files a/editor/icons/icon_mini_string.png and /dev/null differ diff --git a/editor/icons/icon_mini_string.svg b/editor/icons/icon_mini_string.svg new file mode 100644 index 00000000000..7212058fe6d --- /dev/null +++ b/editor/icons/icon_mini_string.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_string_array.png b/editor/icons/icon_mini_string_array.png deleted file mode 100644 index 51770141858..00000000000 Binary files a/editor/icons/icon_mini_string_array.png and /dev/null differ diff --git a/editor/icons/icon_mini_string_array.svg b/editor/icons/icon_mini_string_array.svg new file mode 100644 index 00000000000..e0b927d3a93 --- /dev/null +++ b/editor/icons/icon_mini_string_array.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_mini_transform.png b/editor/icons/icon_mini_transform.png deleted file mode 100644 index 068ea0506c6..00000000000 Binary files a/editor/icons/icon_mini_transform.png and /dev/null differ diff --git a/editor/icons/icon_mini_transform.svg b/editor/icons/icon_mini_transform.svg new file mode 100644 index 00000000000..43c4bb4a8f6 --- /dev/null +++ b/editor/icons/icon_mini_transform.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_mini_transform2D.png b/editor/icons/icon_mini_transform2D.png deleted file mode 100644 index f4e1211bd7b..00000000000 Binary files a/editor/icons/icon_mini_transform2D.png and /dev/null differ diff --git a/editor/icons/icon_mini_transform2D.svg b/editor/icons/icon_mini_transform2D.svg new file mode 100644 index 00000000000..38921ea85ac --- /dev/null +++ b/editor/icons/icon_mini_transform2D.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_mini_variant.png b/editor/icons/icon_mini_variant.png deleted file mode 100644 index 285f0bcd169..00000000000 Binary files a/editor/icons/icon_mini_variant.png and /dev/null differ diff --git a/editor/icons/icon_mini_variant.svg b/editor/icons/icon_mini_variant.svg new file mode 100644 index 00000000000..aeb23ed2bc7 --- /dev/null +++ b/editor/icons/icon_mini_variant.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_vector2.png b/editor/icons/icon_mini_vector2.png deleted file mode 100644 index a7caa1797f9..00000000000 Binary files a/editor/icons/icon_mini_vector2.png and /dev/null differ diff --git a/editor/icons/icon_mini_vector2.svg b/editor/icons/icon_mini_vector2.svg new file mode 100644 index 00000000000..7abc73c41f1 --- /dev/null +++ b/editor/icons/icon_mini_vector2.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_vector2_array.png b/editor/icons/icon_mini_vector2_array.png deleted file mode 100644 index de546de16ce..00000000000 Binary files a/editor/icons/icon_mini_vector2_array.png and /dev/null differ diff --git a/editor/icons/icon_mini_vector2_array.svg b/editor/icons/icon_mini_vector2_array.svg new file mode 100644 index 00000000000..0070144ca58 --- /dev/null +++ b/editor/icons/icon_mini_vector2_array.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_vector3.png b/editor/icons/icon_mini_vector3.png deleted file mode 100644 index 69baeb229b9..00000000000 Binary files a/editor/icons/icon_mini_vector3.png and /dev/null differ diff --git a/editor/icons/icon_mini_vector3.svg b/editor/icons/icon_mini_vector3.svg new file mode 100644 index 00000000000..88b6f1f53c9 --- /dev/null +++ b/editor/icons/icon_mini_vector3.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_vector3_array.png b/editor/icons/icon_mini_vector3_array.png deleted file mode 100644 index 6bddbaf627b..00000000000 Binary files a/editor/icons/icon_mini_vector3_array.png and /dev/null differ diff --git a/editor/icons/icon_mini_vector3_array.svg b/editor/icons/icon_mini_vector3_array.svg new file mode 100644 index 00000000000..a1b880bdf09 --- /dev/null +++ b/editor/icons/icon_mini_vector3_array.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_mirror_x.png b/editor/icons/icon_mirror_x.png deleted file mode 100644 index f2c9074b893..00000000000 Binary files a/editor/icons/icon_mirror_x.png and /dev/null differ diff --git a/editor/icons/icon_mirror_x.svg b/editor/icons/icon_mirror_x.svg new file mode 100644 index 00000000000..2729ca58379 --- /dev/null +++ b/editor/icons/icon_mirror_x.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_mirror_y.png b/editor/icons/icon_mirror_y.png deleted file mode 100644 index 655f52d4812..00000000000 Binary files a/editor/icons/icon_mirror_y.png and /dev/null differ diff --git a/editor/icons/icon_mirror_y.svg b/editor/icons/icon_mirror_y.svg new file mode 100644 index 00000000000..eb3c9dcc86b --- /dev/null +++ b/editor/icons/icon_mirror_y.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_mouse.png b/editor/icons/icon_mouse.png deleted file mode 100644 index ad07a403a6e..00000000000 Binary files a/editor/icons/icon_mouse.png and /dev/null differ diff --git a/editor/icons/icon_mouse.svg b/editor/icons/icon_mouse.svg new file mode 100644 index 00000000000..b7d50629d9b --- /dev/null +++ b/editor/icons/icon_mouse.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_move_down.png b/editor/icons/icon_move_down.png deleted file mode 100644 index 7bb964675d0..00000000000 Binary files a/editor/icons/icon_move_down.png and /dev/null differ diff --git a/editor/icons/icon_move_down.svg b/editor/icons/icon_move_down.svg new file mode 100644 index 00000000000..28d0d161d80 --- /dev/null +++ b/editor/icons/icon_move_down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_move_down_hl.png b/editor/icons/icon_move_down_hl.png deleted file mode 100644 index f9de58a940d..00000000000 Binary files a/editor/icons/icon_move_down_hl.png and /dev/null differ diff --git a/editor/icons/icon_move_point.png b/editor/icons/icon_move_point.png deleted file mode 100644 index 00e4ea32bda..00000000000 Binary files a/editor/icons/icon_move_point.png and /dev/null differ diff --git a/editor/icons/icon_move_point.svg b/editor/icons/icon_move_point.svg new file mode 100644 index 00000000000..337ed4c9b8f --- /dev/null +++ b/editor/icons/icon_move_point.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_move_up.png b/editor/icons/icon_move_up.png deleted file mode 100644 index 92614b8799c..00000000000 Binary files a/editor/icons/icon_move_up.png and /dev/null differ diff --git a/editor/icons/icon_move_up.svg b/editor/icons/icon_move_up.svg new file mode 100644 index 00000000000..cd61e66ee76 --- /dev/null +++ b/editor/icons/icon_move_up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_move_up_hl.png b/editor/icons/icon_move_up_hl.png deleted file mode 100644 index e076c9a2655..00000000000 Binary files a/editor/icons/icon_move_up_hl.png and /dev/null differ diff --git a/editor/icons/icon_multi_edit.png b/editor/icons/icon_multi_edit.png deleted file mode 100644 index 0256ae094ad..00000000000 Binary files a/editor/icons/icon_multi_edit.png and /dev/null differ diff --git a/editor/icons/icon_multi_edit.svg b/editor/icons/icon_multi_edit.svg new file mode 100644 index 00000000000..b0de08316a5 --- /dev/null +++ b/editor/icons/icon_multi_edit.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_multi_line.png b/editor/icons/icon_multi_line.png deleted file mode 100644 index 95a029cc6e5..00000000000 Binary files a/editor/icons/icon_multi_line.png and /dev/null differ diff --git a/editor/icons/icon_multi_line.svg b/editor/icons/icon_multi_line.svg new file mode 100644 index 00000000000..0cd8be93f6b --- /dev/null +++ b/editor/icons/icon_multi_line.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_multi_mesh.png b/editor/icons/icon_multi_mesh.png deleted file mode 100644 index 6ff9d222662..00000000000 Binary files a/editor/icons/icon_multi_mesh.png and /dev/null differ diff --git a/editor/icons/icon_multi_mesh.svg b/editor/icons/icon_multi_mesh.svg new file mode 100644 index 00000000000..09fcd9a1a83 --- /dev/null +++ b/editor/icons/icon_multi_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_multi_mesh_instance.png b/editor/icons/icon_multi_mesh_instance.png deleted file mode 100644 index 124bf81b5ac..00000000000 Binary files a/editor/icons/icon_multi_mesh_instance.png and /dev/null differ diff --git a/editor/icons/icon_multi_mesh_instance.svg b/editor/icons/icon_multi_mesh_instance.svg new file mode 100644 index 00000000000..edade9469d1 --- /dev/null +++ b/editor/icons/icon_multi_mesh_instance.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_multi_node_edit.png b/editor/icons/icon_multi_node_edit.png deleted file mode 100644 index 0256ae094ad..00000000000 Binary files a/editor/icons/icon_multi_node_edit.png and /dev/null differ diff --git a/editor/icons/icon_multi_script.png b/editor/icons/icon_multi_script.png deleted file mode 100644 index 76269372965..00000000000 Binary files a/editor/icons/icon_multi_script.png and /dev/null differ diff --git a/editor/icons/icon_multi_script.svg b/editor/icons/icon_multi_script.svg new file mode 100644 index 00000000000..b377f04da2f --- /dev/null +++ b/editor/icons/icon_multi_script.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_native_script.png b/editor/icons/icon_native_script.png deleted file mode 100644 index ea4fe067044..00000000000 Binary files a/editor/icons/icon_native_script.png and /dev/null differ diff --git a/editor/icons/icon_native_script.svg b/editor/icons/icon_native_script.svg new file mode 100644 index 00000000000..fb9e1356271 --- /dev/null +++ b/editor/icons/icon_native_script.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_navigation.png b/editor/icons/icon_navigation.png deleted file mode 100644 index 3c5a3bdc4a6..00000000000 Binary files a/editor/icons/icon_navigation.png and /dev/null differ diff --git a/editor/icons/icon_navigation.svg b/editor/icons/icon_navigation.svg new file mode 100644 index 00000000000..dddd75341f1 --- /dev/null +++ b/editor/icons/icon_navigation.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_navigation_2d.png b/editor/icons/icon_navigation_2d.png deleted file mode 100644 index a6ea55ef13e..00000000000 Binary files a/editor/icons/icon_navigation_2d.png and /dev/null differ diff --git a/editor/icons/icon_navigation_2d.svg b/editor/icons/icon_navigation_2d.svg new file mode 100644 index 00000000000..e08aebe1bcc --- /dev/null +++ b/editor/icons/icon_navigation_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_navigation_mesh.png b/editor/icons/icon_navigation_mesh.png deleted file mode 100644 index e3bb7f775f0..00000000000 Binary files a/editor/icons/icon_navigation_mesh.png and /dev/null differ diff --git a/editor/icons/icon_navigation_mesh.svg b/editor/icons/icon_navigation_mesh.svg new file mode 100644 index 00000000000..cc04e06b510 --- /dev/null +++ b/editor/icons/icon_navigation_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_navigation_mesh_instance.png b/editor/icons/icon_navigation_mesh_instance.png deleted file mode 100644 index f5f25ef421e..00000000000 Binary files a/editor/icons/icon_navigation_mesh_instance.png and /dev/null differ diff --git a/editor/icons/icon_navigation_mesh_instance.svg b/editor/icons/icon_navigation_mesh_instance.svg new file mode 100644 index 00000000000..909dbe458fe --- /dev/null +++ b/editor/icons/icon_navigation_mesh_instance.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_navigation_polygon.png b/editor/icons/icon_navigation_polygon.png deleted file mode 100644 index bfc4bfb5422..00000000000 Binary files a/editor/icons/icon_navigation_polygon.png and /dev/null differ diff --git a/editor/icons/icon_navigation_polygon.svg b/editor/icons/icon_navigation_polygon.svg new file mode 100644 index 00000000000..f12f9aef345 --- /dev/null +++ b/editor/icons/icon_navigation_polygon.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_navigation_polygon_instance.png b/editor/icons/icon_navigation_polygon_instance.png deleted file mode 100644 index 89d420ca145..00000000000 Binary files a/editor/icons/icon_navigation_polygon_instance.png and /dev/null differ diff --git a/editor/icons/icon_navigation_polygon_instance.svg b/editor/icons/icon_navigation_polygon_instance.svg new file mode 100644 index 00000000000..d229bd8ab4e --- /dev/null +++ b/editor/icons/icon_navigation_polygon_instance.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_new.png b/editor/icons/icon_new.png deleted file mode 100644 index b012e1f2145..00000000000 Binary files a/editor/icons/icon_new.png and /dev/null differ diff --git a/editor/icons/icon_new.svg b/editor/icons/icon_new.svg new file mode 100644 index 00000000000..1f53043c249 --- /dev/null +++ b/editor/icons/icon_new.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_nine_patch_rect.png b/editor/icons/icon_nine_patch_rect.png deleted file mode 100644 index 721bd36d08d..00000000000 Binary files a/editor/icons/icon_nine_patch_rect.png and /dev/null differ diff --git a/editor/icons/icon_nine_patch_rect.svg b/editor/icons/icon_nine_patch_rect.svg new file mode 100644 index 00000000000..4a8caa48165 --- /dev/null +++ b/editor/icons/icon_nine_patch_rect.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_node.png b/editor/icons/icon_node.png deleted file mode 100644 index 628b632332b..00000000000 Binary files a/editor/icons/icon_node.png and /dev/null differ diff --git a/editor/icons/icon_node.svg b/editor/icons/icon_node.svg new file mode 100644 index 00000000000..d7f1d5b9c3a --- /dev/null +++ b/editor/icons/icon_node.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_node_2d.png b/editor/icons/icon_node_2d.png deleted file mode 100644 index d6c8f1f9885..00000000000 Binary files a/editor/icons/icon_node_2d.png and /dev/null differ diff --git a/editor/icons/icon_node_2d.svg b/editor/icons/icon_node_2d.svg new file mode 100644 index 00000000000..b9a73ab1dc6 --- /dev/null +++ b/editor/icons/icon_node_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_node_real_slot.png b/editor/icons/icon_node_real_slot.png deleted file mode 100644 index 6373bc0fa55..00000000000 Binary files a/editor/icons/icon_node_real_slot.png and /dev/null differ diff --git a/editor/icons/icon_node_vec_slot.png b/editor/icons/icon_node_vec_slot.png deleted file mode 100644 index aedd983fb43..00000000000 Binary files a/editor/icons/icon_node_vec_slot.png and /dev/null differ diff --git a/editor/icons/icon_node_warning.png b/editor/icons/icon_node_warning.png deleted file mode 100644 index 8b1e9212a87..00000000000 Binary files a/editor/icons/icon_node_warning.png and /dev/null differ diff --git a/editor/icons/icon_node_warning.svg b/editor/icons/icon_node_warning.svg new file mode 100644 index 00000000000..5c03bad3433 --- /dev/null +++ b/editor/icons/icon_node_warning.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_non_favorite.png b/editor/icons/icon_non_favorite.png deleted file mode 100644 index 92351bde044..00000000000 Binary files a/editor/icons/icon_non_favorite.png and /dev/null differ diff --git a/editor/icons/icon_non_favorite.svg b/editor/icons/icon_non_favorite.svg new file mode 100644 index 00000000000..ede81dd2c6e --- /dev/null +++ b/editor/icons/icon_non_favorite.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_object.png b/editor/icons/icon_object.png deleted file mode 100644 index f4f018c8635..00000000000 Binary files a/editor/icons/icon_object.png and /dev/null differ diff --git a/editor/icons/icon_object.svg b/editor/icons/icon_object.svg new file mode 100644 index 00000000000..223761d0d88 --- /dev/null +++ b/editor/icons/icon_object.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_occluder_polygon_2d.png b/editor/icons/icon_occluder_polygon_2d.png deleted file mode 100644 index bbfc9ac0a54..00000000000 Binary files a/editor/icons/icon_occluder_polygon_2d.png and /dev/null differ diff --git a/editor/icons/icon_occluder_polygon_2d.svg b/editor/icons/icon_occluder_polygon_2d.svg new file mode 100644 index 00000000000..4dfa006d382 --- /dev/null +++ b/editor/icons/icon_occluder_polygon_2d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_omni_light.png b/editor/icons/icon_omni_light.png deleted file mode 100644 index 286ce723a47..00000000000 Binary files a/editor/icons/icon_omni_light.png and /dev/null differ diff --git a/editor/icons/icon_omni_light.svg b/editor/icons/icon_omni_light.svg new file mode 100644 index 00000000000..d6c658b9e22 --- /dev/null +++ b/editor/icons/icon_omni_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_open.png b/editor/icons/icon_open.png deleted file mode 100644 index 81835efa25f..00000000000 Binary files a/editor/icons/icon_open.png and /dev/null differ diff --git a/editor/icons/icon_option_arrow.png b/editor/icons/icon_option_arrow.png deleted file mode 100644 index b7bc38e03f3..00000000000 Binary files a/editor/icons/icon_option_arrow.png and /dev/null differ diff --git a/editor/icons/icon_option_button.png b/editor/icons/icon_option_button.png deleted file mode 100644 index b67e951fef4..00000000000 Binary files a/editor/icons/icon_option_button.png and /dev/null differ diff --git a/editor/icons/icon_option_button.svg b/editor/icons/icon_option_button.svg new file mode 100644 index 00000000000..45aaff30c0b --- /dev/null +++ b/editor/icons/icon_option_button.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_override.png b/editor/icons/icon_override.png deleted file mode 100644 index 9d917ede75c..00000000000 Binary files a/editor/icons/icon_override.png and /dev/null differ diff --git a/editor/icons/icon_override.svg b/editor/icons/icon_override.svg new file mode 100644 index 00000000000..9c6fd9e177a --- /dev/null +++ b/editor/icons/icon_override.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_p_hash_translation.png b/editor/icons/icon_p_hash_translation.png deleted file mode 100644 index abca359eeab..00000000000 Binary files a/editor/icons/icon_p_hash_translation.png and /dev/null differ diff --git a/editor/icons/icon_packed_data_container.png b/editor/icons/icon_packed_data_container.png deleted file mode 100644 index af89da48a9d..00000000000 Binary files a/editor/icons/icon_packed_data_container.png and /dev/null differ diff --git a/editor/icons/icon_packed_data_container.svg b/editor/icons/icon_packed_data_container.svg new file mode 100644 index 00000000000..ea347ffe380 --- /dev/null +++ b/editor/icons/icon_packed_data_container.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_packed_scene.png b/editor/icons/icon_packed_scene.png deleted file mode 100644 index 90797629320..00000000000 Binary files a/editor/icons/icon_packed_scene.png and /dev/null differ diff --git a/editor/icons/icon_packed_scene.svg b/editor/icons/icon_packed_scene.svg new file mode 100644 index 00000000000..349ecd0a031 --- /dev/null +++ b/editor/icons/icon_packed_scene.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_pane_drag.png b/editor/icons/icon_pane_drag.png deleted file mode 100644 index 57f8e49ba37..00000000000 Binary files a/editor/icons/icon_pane_drag.png and /dev/null differ diff --git a/editor/icons/icon_pane_drag_hover.png b/editor/icons/icon_pane_drag_hover.png deleted file mode 100644 index 068253ecef5..00000000000 Binary files a/editor/icons/icon_pane_drag_hover.png and /dev/null differ diff --git a/editor/icons/icon_panel.png b/editor/icons/icon_panel.png deleted file mode 100644 index dca2da94f37..00000000000 Binary files a/editor/icons/icon_panel.png and /dev/null differ diff --git a/editor/icons/icon_panel.svg b/editor/icons/icon_panel.svg new file mode 100644 index 00000000000..aebf885e7ce --- /dev/null +++ b/editor/icons/icon_panel.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_panel_container.png b/editor/icons/icon_panel_container.png deleted file mode 100644 index 05bd1e082fa..00000000000 Binary files a/editor/icons/icon_panel_container.png and /dev/null differ diff --git a/editor/icons/icon_panel_container.svg b/editor/icons/icon_panel_container.svg new file mode 100644 index 00000000000..a52493b6653 --- /dev/null +++ b/editor/icons/icon_panel_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_panel_top.png b/editor/icons/icon_panel_top.png deleted file mode 100644 index 20e67fad1af..00000000000 Binary files a/editor/icons/icon_panel_top.png and /dev/null differ diff --git a/editor/icons/icon_panels_1.png b/editor/icons/icon_panels_1.png deleted file mode 100644 index a909e6aee86..00000000000 Binary files a/editor/icons/icon_panels_1.png and /dev/null differ diff --git a/editor/icons/icon_panels_1.svg b/editor/icons/icon_panels_1.svg new file mode 100644 index 00000000000..9edf59b5273 --- /dev/null +++ b/editor/icons/icon_panels_1.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_panels_2.png b/editor/icons/icon_panels_2.png deleted file mode 100644 index 28a1ca2a596..00000000000 Binary files a/editor/icons/icon_panels_2.png and /dev/null differ diff --git a/editor/icons/icon_panels_2.svg b/editor/icons/icon_panels_2.svg new file mode 100644 index 00000000000..7a2c18ecc9d --- /dev/null +++ b/editor/icons/icon_panels_2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_panels_2_alt.png b/editor/icons/icon_panels_2_alt.png deleted file mode 100644 index 14f21304c53..00000000000 Binary files a/editor/icons/icon_panels_2_alt.png and /dev/null differ diff --git a/editor/icons/icon_panels_2_alt.svg b/editor/icons/icon_panels_2_alt.svg new file mode 100644 index 00000000000..c411650136f --- /dev/null +++ b/editor/icons/icon_panels_2_alt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_panels_3.png b/editor/icons/icon_panels_3.png deleted file mode 100644 index 76f1f53636e..00000000000 Binary files a/editor/icons/icon_panels_3.png and /dev/null differ diff --git a/editor/icons/icon_panels_3.svg b/editor/icons/icon_panels_3.svg new file mode 100644 index 00000000000..ec5aa865400 --- /dev/null +++ b/editor/icons/icon_panels_3.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_panels_3_alt.png b/editor/icons/icon_panels_3_alt.png deleted file mode 100644 index b121bc62c3c..00000000000 Binary files a/editor/icons/icon_panels_3_alt.png and /dev/null differ diff --git a/editor/icons/icon_panels_3_alt.svg b/editor/icons/icon_panels_3_alt.svg new file mode 100644 index 00000000000..5f8c78d4716 --- /dev/null +++ b/editor/icons/icon_panels_3_alt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_panels_4.png b/editor/icons/icon_panels_4.png deleted file mode 100644 index 19a3bc0bf21..00000000000 Binary files a/editor/icons/icon_panels_4.png and /dev/null differ diff --git a/editor/icons/icon_panels_4.svg b/editor/icons/icon_panels_4.svg new file mode 100644 index 00000000000..093b40b6035 --- /dev/null +++ b/editor/icons/icon_panels_4.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_panorama_sky.png b/editor/icons/icon_panorama_sky.png deleted file mode 100644 index 38a53afe52f..00000000000 Binary files a/editor/icons/icon_panorama_sky.png and /dev/null differ diff --git a/editor/icons/icon_panorama_sky.svg b/editor/icons/icon_panorama_sky.svg new file mode 100644 index 00000000000..f3da955dbd7 --- /dev/null +++ b/editor/icons/icon_panorama_sky.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/icon_parallax_background.png b/editor/icons/icon_parallax_background.png deleted file mode 100644 index 78d7484e8b1..00000000000 Binary files a/editor/icons/icon_parallax_background.png and /dev/null differ diff --git a/editor/icons/icon_parallax_background.svg b/editor/icons/icon_parallax_background.svg new file mode 100644 index 00000000000..dc0a7ba2163 --- /dev/null +++ b/editor/icons/icon_parallax_background.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_parallax_layer.png b/editor/icons/icon_parallax_layer.png deleted file mode 100644 index 748c9164bba..00000000000 Binary files a/editor/icons/icon_parallax_layer.png and /dev/null differ diff --git a/editor/icons/icon_parallax_layer.svg b/editor/icons/icon_parallax_layer.svg new file mode 100644 index 00000000000..776f7d6a6c0 --- /dev/null +++ b/editor/icons/icon_parallax_layer.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_particle_attractor_2d.png b/editor/icons/icon_particle_attractor_2d.png deleted file mode 100644 index 84be7dff3b3..00000000000 Binary files a/editor/icons/icon_particle_attractor_2d.png and /dev/null differ diff --git a/editor/icons/icon_particle_attractor_2d.svg b/editor/icons/icon_particle_attractor_2d.svg new file mode 100644 index 00000000000..c89742be042 --- /dev/null +++ b/editor/icons/icon_particle_attractor_2d.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_particles.png b/editor/icons/icon_particles.png deleted file mode 100644 index 8d146b2946d..00000000000 Binary files a/editor/icons/icon_particles.png and /dev/null differ diff --git a/editor/icons/icon_particles.svg b/editor/icons/icon_particles.svg new file mode 100644 index 00000000000..f8a0ec46ec3 --- /dev/null +++ b/editor/icons/icon_particles.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_particles_2d.png b/editor/icons/icon_particles_2d.png deleted file mode 100644 index e03ff1e1897..00000000000 Binary files a/editor/icons/icon_particles_2d.png and /dev/null differ diff --git a/editor/icons/icon_particles_2d.svg b/editor/icons/icon_particles_2d.svg new file mode 100644 index 00000000000..397922f31f0 --- /dev/null +++ b/editor/icons/icon_particles_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_particles_frame.png b/editor/icons/icon_particles_frame.png deleted file mode 100644 index 968bbccf8ae..00000000000 Binary files a/editor/icons/icon_particles_frame.png and /dev/null differ diff --git a/editor/icons/icon_particles_material.png b/editor/icons/icon_particles_material.png deleted file mode 100644 index 3b5c5644b2b..00000000000 Binary files a/editor/icons/icon_particles_material.png and /dev/null differ diff --git a/editor/icons/icon_particles_material.svg b/editor/icons/icon_particles_material.svg new file mode 100644 index 00000000000..95121d83218 --- /dev/null +++ b/editor/icons/icon_particles_material.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_particles_shader.png b/editor/icons/icon_particles_shader.png deleted file mode 100644 index 3b5c5644b2b..00000000000 Binary files a/editor/icons/icon_particles_shader.png and /dev/null differ diff --git a/editor/icons/icon_patch_9_rect.png b/editor/icons/icon_patch_9_rect.png deleted file mode 100644 index bdd14671448..00000000000 Binary files a/editor/icons/icon_patch_9_rect.png and /dev/null differ diff --git a/editor/icons/icon_path.png b/editor/icons/icon_path.png deleted file mode 100644 index 4ebdcbdc44d..00000000000 Binary files a/editor/icons/icon_path.png and /dev/null differ diff --git a/editor/icons/icon_path.svg b/editor/icons/icon_path.svg new file mode 100644 index 00000000000..998fabb8881 --- /dev/null +++ b/editor/icons/icon_path.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_path_2d.png b/editor/icons/icon_path_2d.png deleted file mode 100644 index c5b0d5d7c6b..00000000000 Binary files a/editor/icons/icon_path_2d.png and /dev/null differ diff --git a/editor/icons/icon_path_2d.svg b/editor/icons/icon_path_2d.svg new file mode 100644 index 00000000000..8d329b3f1f9 --- /dev/null +++ b/editor/icons/icon_path_2d.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_path_follow.png b/editor/icons/icon_path_follow.png deleted file mode 100644 index f71651d2417..00000000000 Binary files a/editor/icons/icon_path_follow.png and /dev/null differ diff --git a/editor/icons/icon_path_follow.svg b/editor/icons/icon_path_follow.svg new file mode 100644 index 00000000000..a614e2c8611 --- /dev/null +++ b/editor/icons/icon_path_follow.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_path_follow_2d.png b/editor/icons/icon_path_follow_2d.png deleted file mode 100644 index d82e682dba6..00000000000 Binary files a/editor/icons/icon_path_follow_2d.png and /dev/null differ diff --git a/editor/icons/icon_path_follow_2d.svg b/editor/icons/icon_path_follow_2d.svg new file mode 100644 index 00000000000..97e21396aff --- /dev/null +++ b/editor/icons/icon_path_follow_2d.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_pause.png b/editor/icons/icon_pause.png deleted file mode 100644 index aec11d5c357..00000000000 Binary files a/editor/icons/icon_pause.png and /dev/null differ diff --git a/editor/icons/icon_pause.svg b/editor/icons/icon_pause.svg new file mode 100644 index 00000000000..794a610ff2f --- /dev/null +++ b/editor/icons/icon_pause.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_pe_edit.png b/editor/icons/icon_pe_edit.png deleted file mode 100644 index 7082303a4e1..00000000000 Binary files a/editor/icons/icon_pe_edit.png and /dev/null differ diff --git a/editor/icons/icon_physics_joint_pin.png b/editor/icons/icon_physics_joint_pin.png deleted file mode 100644 index 27ac67ed0a5..00000000000 Binary files a/editor/icons/icon_physics_joint_pin.png and /dev/null differ diff --git a/editor/icons/icon_pin.png b/editor/icons/icon_pin.png deleted file mode 100644 index cf89679f88e..00000000000 Binary files a/editor/icons/icon_pin.png and /dev/null differ diff --git a/editor/icons/icon_pin.svg b/editor/icons/icon_pin.svg new file mode 100644 index 00000000000..b0f4ae4e99a --- /dev/null +++ b/editor/icons/icon_pin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_pin_joint.png b/editor/icons/icon_pin_joint.png deleted file mode 100644 index 78e8a837244..00000000000 Binary files a/editor/icons/icon_pin_joint.png and /dev/null differ diff --git a/editor/icons/icon_pin_joint.svg b/editor/icons/icon_pin_joint.svg new file mode 100644 index 00000000000..028981a95a4 --- /dev/null +++ b/editor/icons/icon_pin_joint.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_pin_joint_2d.png b/editor/icons/icon_pin_joint_2d.png deleted file mode 100644 index 355d5a2022f..00000000000 Binary files a/editor/icons/icon_pin_joint_2d.png and /dev/null differ diff --git a/editor/icons/icon_pin_joint_2d.svg b/editor/icons/icon_pin_joint_2d.svg new file mode 100644 index 00000000000..d07fb81c79f --- /dev/null +++ b/editor/icons/icon_pin_joint_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_pin_pressed.png b/editor/icons/icon_pin_pressed.png deleted file mode 100644 index cf89679f88e..00000000000 Binary files a/editor/icons/icon_pin_pressed.png and /dev/null differ diff --git a/editor/icons/icon_pin_pressed.svg b/editor/icons/icon_pin_pressed.svg new file mode 100644 index 00000000000..b0f4ae4e99a --- /dev/null +++ b/editor/icons/icon_pin_pressed.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_plane.png b/editor/icons/icon_plane.png deleted file mode 100644 index 25d869f31ee..00000000000 Binary files a/editor/icons/icon_plane.png and /dev/null differ diff --git a/editor/icons/icon_plane.svg b/editor/icons/icon_plane.svg new file mode 100644 index 00000000000..d0525e13dce --- /dev/null +++ b/editor/icons/icon_plane.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_plane_mesh.png b/editor/icons/icon_plane_mesh.png deleted file mode 100644 index 8b86099d676..00000000000 Binary files a/editor/icons/icon_plane_mesh.png and /dev/null differ diff --git a/editor/icons/icon_plane_mesh.svg b/editor/icons/icon_plane_mesh.svg new file mode 100644 index 00000000000..7a5c8f43549 --- /dev/null +++ b/editor/icons/icon_plane_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_plane_shape.png b/editor/icons/icon_plane_shape.png deleted file mode 100644 index e7ebe1fbcdb..00000000000 Binary files a/editor/icons/icon_plane_shape.png and /dev/null differ diff --git a/editor/icons/icon_plane_shape.svg b/editor/icons/icon_plane_shape.svg new file mode 100644 index 00000000000..27395b6a421 --- /dev/null +++ b/editor/icons/icon_plane_shape.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_play.png b/editor/icons/icon_play.png deleted file mode 100644 index 864e4e4fb99..00000000000 Binary files a/editor/icons/icon_play.png and /dev/null differ diff --git a/editor/icons/icon_play.svg b/editor/icons/icon_play.svg new file mode 100644 index 00000000000..7b96840a44e --- /dev/null +++ b/editor/icons/icon_play.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_play_backwards.png b/editor/icons/icon_play_backwards.png deleted file mode 100644 index bab28583730..00000000000 Binary files a/editor/icons/icon_play_backwards.png and /dev/null differ diff --git a/editor/icons/icon_play_backwards.svg b/editor/icons/icon_play_backwards.svg new file mode 100644 index 00000000000..bb6ae76e0d8 --- /dev/null +++ b/editor/icons/icon_play_backwards.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_play_button_group.png b/editor/icons/icon_play_button_group.png deleted file mode 100644 index 83820c8e0c2..00000000000 Binary files a/editor/icons/icon_play_button_group.png and /dev/null differ diff --git a/editor/icons/icon_play_custom.png b/editor/icons/icon_play_custom.png deleted file mode 100644 index b742e131ca9..00000000000 Binary files a/editor/icons/icon_play_custom.png and /dev/null differ diff --git a/editor/icons/icon_play_custom.svg b/editor/icons/icon_play_custom.svg new file mode 100644 index 00000000000..9da56dc19e5 --- /dev/null +++ b/editor/icons/icon_play_custom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_play_scene.png b/editor/icons/icon_play_scene.png deleted file mode 100644 index ebba3187998..00000000000 Binary files a/editor/icons/icon_play_scene.png and /dev/null differ diff --git a/editor/icons/icon_play_scene.svg b/editor/icons/icon_play_scene.svg new file mode 100644 index 00000000000..aef7b9e8036 --- /dev/null +++ b/editor/icons/icon_play_scene.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_play_start.png b/editor/icons/icon_play_start.png deleted file mode 100644 index dacc156614b..00000000000 Binary files a/editor/icons/icon_play_start.png and /dev/null differ diff --git a/editor/icons/icon_play_start.svg b/editor/icons/icon_play_start.svg new file mode 100644 index 00000000000..9c75dca2a17 --- /dev/null +++ b/editor/icons/icon_play_start.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_play_start_backwards.png b/editor/icons/icon_play_start_backwards.png deleted file mode 100644 index 7608e18cbab..00000000000 Binary files a/editor/icons/icon_play_start_backwards.png and /dev/null differ diff --git a/editor/icons/icon_play_start_backwards.svg b/editor/icons/icon_play_start_backwards.svg new file mode 100644 index 00000000000..eede120ae77 --- /dev/null +++ b/editor/icons/icon_play_start_backwards.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_polygon_2_d.svg b/editor/icons/icon_polygon_2_d.svg new file mode 100644 index 00000000000..fe3846adcba --- /dev/null +++ b/editor/icons/icon_polygon_2_d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_polygon_2d.png b/editor/icons/icon_polygon_2d.png deleted file mode 100644 index b372749cb0e..00000000000 Binary files a/editor/icons/icon_polygon_2d.png and /dev/null differ diff --git a/editor/icons/icon_polygon_path_finder.png b/editor/icons/icon_polygon_path_finder.png deleted file mode 100644 index 9d76d872dbd..00000000000 Binary files a/editor/icons/icon_polygon_path_finder.png and /dev/null differ diff --git a/editor/icons/icon_polygon_path_finder.svg b/editor/icons/icon_polygon_path_finder.svg new file mode 100644 index 00000000000..5c1cb86b841 --- /dev/null +++ b/editor/icons/icon_polygon_path_finder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_popup.png b/editor/icons/icon_popup.png deleted file mode 100644 index 4dda9e50f9d..00000000000 Binary files a/editor/icons/icon_popup.png and /dev/null differ diff --git a/editor/icons/icon_popup.svg b/editor/icons/icon_popup.svg new file mode 100644 index 00000000000..bcd77b21a1c --- /dev/null +++ b/editor/icons/icon_popup.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_popup_dialog.png b/editor/icons/icon_popup_dialog.png deleted file mode 100644 index 82b011e06c0..00000000000 Binary files a/editor/icons/icon_popup_dialog.png and /dev/null differ diff --git a/editor/icons/icon_popup_dialog.svg b/editor/icons/icon_popup_dialog.svg new file mode 100644 index 00000000000..6fed66e8e42 --- /dev/null +++ b/editor/icons/icon_popup_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_popup_menu.png b/editor/icons/icon_popup_menu.png deleted file mode 100644 index 28d928a98e7..00000000000 Binary files a/editor/icons/icon_popup_menu.png and /dev/null differ diff --git a/editor/icons/icon_popup_menu.svg b/editor/icons/icon_popup_menu.svg new file mode 100644 index 00000000000..05e60d7d41b --- /dev/null +++ b/editor/icons/icon_popup_menu.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_popup_panel.png b/editor/icons/icon_popup_panel.png deleted file mode 100644 index 90c86c2c051..00000000000 Binary files a/editor/icons/icon_popup_panel.png and /dev/null differ diff --git a/editor/icons/icon_popup_panel.svg b/editor/icons/icon_popup_panel.svg new file mode 100644 index 00000000000..ce4e7c283c9 --- /dev/null +++ b/editor/icons/icon_popup_panel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_portal.png b/editor/icons/icon_portal.png deleted file mode 100644 index b10aee650d8..00000000000 Binary files a/editor/icons/icon_portal.png and /dev/null differ diff --git a/editor/icons/icon_portal.svg b/editor/icons/icon_portal.svg new file mode 100644 index 00000000000..7fc35ee2985 --- /dev/null +++ b/editor/icons/icon_portal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_position_2d.png b/editor/icons/icon_position_2d.png deleted file mode 100644 index da7446e3e24..00000000000 Binary files a/editor/icons/icon_position_2d.png and /dev/null differ diff --git a/editor/icons/icon_position_2d.svg b/editor/icons/icon_position_2d.svg new file mode 100644 index 00000000000..c04484d27b4 --- /dev/null +++ b/editor/icons/icon_position_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_position_3d.png b/editor/icons/icon_position_3d.png deleted file mode 100644 index a36bca3260d..00000000000 Binary files a/editor/icons/icon_position_3d.png and /dev/null differ diff --git a/editor/icons/icon_position_3d.svg b/editor/icons/icon_position_3d.svg new file mode 100644 index 00000000000..b52657fc49d --- /dev/null +++ b/editor/icons/icon_position_3d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_prev_scene.png b/editor/icons/icon_prev_scene.png deleted file mode 100644 index 9d8dda51802..00000000000 Binary files a/editor/icons/icon_prev_scene.png and /dev/null differ diff --git a/editor/icons/icon_prism_mesh.png b/editor/icons/icon_prism_mesh.png deleted file mode 100644 index 49f773765f4..00000000000 Binary files a/editor/icons/icon_prism_mesh.png and /dev/null differ diff --git a/editor/icons/icon_prism_mesh.svg b/editor/icons/icon_prism_mesh.svg new file mode 100644 index 00000000000..68dfa117f7a --- /dev/null +++ b/editor/icons/icon_prism_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_procedural_sky.png b/editor/icons/icon_procedural_sky.png deleted file mode 100644 index 484bcde038b..00000000000 Binary files a/editor/icons/icon_procedural_sky.png and /dev/null differ diff --git a/editor/icons/icon_procedural_sky.svg b/editor/icons/icon_procedural_sky.svg new file mode 100644 index 00000000000..b3bc9274095 --- /dev/null +++ b/editor/icons/icon_procedural_sky.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/editor/icons/icon_progress_1.png b/editor/icons/icon_progress_1.png deleted file mode 100644 index 34196ec2ddb..00000000000 Binary files a/editor/icons/icon_progress_1.png and /dev/null differ diff --git a/editor/icons/icon_progress_1.svg b/editor/icons/icon_progress_1.svg new file mode 100644 index 00000000000..2df93a13f7f --- /dev/null +++ b/editor/icons/icon_progress_1.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_progress_2.png b/editor/icons/icon_progress_2.png deleted file mode 100644 index 6f683f2473f..00000000000 Binary files a/editor/icons/icon_progress_2.png and /dev/null differ diff --git a/editor/icons/icon_progress_2.svg b/editor/icons/icon_progress_2.svg new file mode 100644 index 00000000000..9af1ff7c3d0 --- /dev/null +++ b/editor/icons/icon_progress_2.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_progress_3.png b/editor/icons/icon_progress_3.png deleted file mode 100644 index 82202d28a69..00000000000 Binary files a/editor/icons/icon_progress_3.png and /dev/null differ diff --git a/editor/icons/icon_progress_3.svg b/editor/icons/icon_progress_3.svg new file mode 100644 index 00000000000..92489f013c4 --- /dev/null +++ b/editor/icons/icon_progress_3.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_progress_4.png b/editor/icons/icon_progress_4.png deleted file mode 100644 index 70198ab26af..00000000000 Binary files a/editor/icons/icon_progress_4.png and /dev/null differ diff --git a/editor/icons/icon_progress_4.svg b/editor/icons/icon_progress_4.svg new file mode 100644 index 00000000000..5acd6c39365 --- /dev/null +++ b/editor/icons/icon_progress_4.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_progress_5.png b/editor/icons/icon_progress_5.png deleted file mode 100644 index b5f4bdcdec4..00000000000 Binary files a/editor/icons/icon_progress_5.png and /dev/null differ diff --git a/editor/icons/icon_progress_5.svg b/editor/icons/icon_progress_5.svg new file mode 100644 index 00000000000..8c4d1abcc39 --- /dev/null +++ b/editor/icons/icon_progress_5.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_progress_6.png b/editor/icons/icon_progress_6.png deleted file mode 100644 index df8f27c60db..00000000000 Binary files a/editor/icons/icon_progress_6.png and /dev/null differ diff --git a/editor/icons/icon_progress_6.svg b/editor/icons/icon_progress_6.svg new file mode 100644 index 00000000000..c91a5d7e9e2 --- /dev/null +++ b/editor/icons/icon_progress_6.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_progress_7.png b/editor/icons/icon_progress_7.png deleted file mode 100644 index 892d5b53ba6..00000000000 Binary files a/editor/icons/icon_progress_7.png and /dev/null differ diff --git a/editor/icons/icon_progress_7.svg b/editor/icons/icon_progress_7.svg new file mode 100644 index 00000000000..b28175215db --- /dev/null +++ b/editor/icons/icon_progress_7.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_progress_8.png b/editor/icons/icon_progress_8.png deleted file mode 100644 index c593afb7ddd..00000000000 Binary files a/editor/icons/icon_progress_8.png and /dev/null differ diff --git a/editor/icons/icon_progress_8.svg b/editor/icons/icon_progress_8.svg new file mode 100644 index 00000000000..f88fbe308de --- /dev/null +++ b/editor/icons/icon_progress_8.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_progress_bar.png b/editor/icons/icon_progress_bar.png deleted file mode 100644 index 30822dd7a82..00000000000 Binary files a/editor/icons/icon_progress_bar.png and /dev/null differ diff --git a/editor/icons/icon_progress_bar.svg b/editor/icons/icon_progress_bar.svg new file mode 100644 index 00000000000..f068d3e8102 --- /dev/null +++ b/editor/icons/icon_progress_bar.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_property_editor.png b/editor/icons/icon_property_editor.png deleted file mode 100644 index 5ee0ab80681..00000000000 Binary files a/editor/icons/icon_property_editor.png and /dev/null differ diff --git a/editor/icons/icon_proximity_group.png b/editor/icons/icon_proximity_group.png deleted file mode 100644 index 230ca752ec4..00000000000 Binary files a/editor/icons/icon_proximity_group.png and /dev/null differ diff --git a/editor/icons/icon_proximity_group.svg b/editor/icons/icon_proximity_group.svg new file mode 100644 index 00000000000..536060dc7e0 --- /dev/null +++ b/editor/icons/icon_proximity_group.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_quad.png b/editor/icons/icon_quad.png deleted file mode 100644 index a1b31b026ba..00000000000 Binary files a/editor/icons/icon_quad.png and /dev/null differ diff --git a/editor/icons/icon_quad.svg b/editor/icons/icon_quad.svg new file mode 100644 index 00000000000..72a97c2cf33 --- /dev/null +++ b/editor/icons/icon_quad.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_quad_mesh.png b/editor/icons/icon_quad_mesh.png deleted file mode 100644 index 52f19899a30..00000000000 Binary files a/editor/icons/icon_quad_mesh.png and /dev/null differ diff --git a/editor/icons/icon_quad_mesh.svg b/editor/icons/icon_quad_mesh.svg new file mode 100644 index 00000000000..bf7b593e9e4 --- /dev/null +++ b/editor/icons/icon_quad_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_quat.png b/editor/icons/icon_quat.png deleted file mode 100644 index 0fcaa35b56d..00000000000 Binary files a/editor/icons/icon_quat.png and /dev/null differ diff --git a/editor/icons/icon_quat.svg b/editor/icons/icon_quat.svg new file mode 100644 index 00000000000..076770360ce --- /dev/null +++ b/editor/icons/icon_quat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_range.png b/editor/icons/icon_range.png deleted file mode 100644 index 6e46df9690d..00000000000 Binary files a/editor/icons/icon_range.png and /dev/null differ diff --git a/editor/icons/icon_range.svg b/editor/icons/icon_range.svg new file mode 100644 index 00000000000..e8b62cd723b --- /dev/null +++ b/editor/icons/icon_range.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_rating_no_star.png b/editor/icons/icon_rating_no_star.png deleted file mode 100644 index e7421bdb13c..00000000000 Binary files a/editor/icons/icon_rating_no_star.png and /dev/null differ diff --git a/editor/icons/icon_rating_no_star.svg b/editor/icons/icon_rating_no_star.svg new file mode 100644 index 00000000000..f46f90eae9a --- /dev/null +++ b/editor/icons/icon_rating_no_star.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_rating_star.png b/editor/icons/icon_rating_star.png deleted file mode 100644 index b2a7e013228..00000000000 Binary files a/editor/icons/icon_rating_star.png and /dev/null differ diff --git a/editor/icons/icon_rating_star.svg b/editor/icons/icon_rating_star.svg new file mode 100644 index 00000000000..f4a01990076 --- /dev/null +++ b/editor/icons/icon_rating_star.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_ray_cast.png b/editor/icons/icon_ray_cast.png deleted file mode 100644 index 19cba12d1d6..00000000000 Binary files a/editor/icons/icon_ray_cast.png and /dev/null differ diff --git a/editor/icons/icon_ray_cast.svg b/editor/icons/icon_ray_cast.svg new file mode 100644 index 00000000000..ab2a9a58c80 --- /dev/null +++ b/editor/icons/icon_ray_cast.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_ray_cast_2d.png b/editor/icons/icon_ray_cast_2d.png deleted file mode 100644 index 2a5054ab005..00000000000 Binary files a/editor/icons/icon_ray_cast_2d.png and /dev/null differ diff --git a/editor/icons/icon_ray_cast_2d.svg b/editor/icons/icon_ray_cast_2d.svg new file mode 100644 index 00000000000..1451a733108 --- /dev/null +++ b/editor/icons/icon_ray_cast_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_ray_shape.png b/editor/icons/icon_ray_shape.png deleted file mode 100644 index a3188d1a3a1..00000000000 Binary files a/editor/icons/icon_ray_shape.png and /dev/null differ diff --git a/editor/icons/icon_ray_shape.svg b/editor/icons/icon_ray_shape.svg new file mode 100644 index 00000000000..4591b0a3f9c --- /dev/null +++ b/editor/icons/icon_ray_shape.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_ray_shape_2d.png b/editor/icons/icon_ray_shape_2d.png deleted file mode 100644 index c91a63570d6..00000000000 Binary files a/editor/icons/icon_ray_shape_2d.png and /dev/null differ diff --git a/editor/icons/icon_ray_shape_2d.svg b/editor/icons/icon_ray_shape_2d.svg new file mode 100644 index 00000000000..89533b84077 --- /dev/null +++ b/editor/icons/icon_ray_shape_2d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_rayito.png b/editor/icons/icon_rayito.png deleted file mode 100644 index 1afb5975d16..00000000000 Binary files a/editor/icons/icon_rayito.png and /dev/null differ diff --git a/editor/icons/icon_rayito.svg b/editor/icons/icon_rayito.svg new file mode 100644 index 00000000000..e1891e783aa --- /dev/null +++ b/editor/icons/icon_rayito.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_real.png b/editor/icons/icon_real.png deleted file mode 100644 index 555b61427fa..00000000000 Binary files a/editor/icons/icon_real.png and /dev/null differ diff --git a/editor/icons/icon_real.svg b/editor/icons/icon_real.svg new file mode 100644 index 00000000000..68f477f7275 --- /dev/null +++ b/editor/icons/icon_real.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_rect2.png b/editor/icons/icon_rect2.png deleted file mode 100644 index cf3cfe3b225..00000000000 Binary files a/editor/icons/icon_rect2.png and /dev/null differ diff --git a/editor/icons/icon_rect3.png b/editor/icons/icon_rect3.png deleted file mode 100644 index 8eacfff2077..00000000000 Binary files a/editor/icons/icon_rect3.png and /dev/null differ diff --git a/editor/icons/icon_rectangle_shape_2d.png b/editor/icons/icon_rectangle_shape_2d.png deleted file mode 100644 index 002730b9427..00000000000 Binary files a/editor/icons/icon_rectangle_shape_2d.png and /dev/null differ diff --git a/editor/icons/icon_rectangle_shape_2d.svg b/editor/icons/icon_rectangle_shape_2d.svg new file mode 100644 index 00000000000..d5cf89f5dc2 --- /dev/null +++ b/editor/icons/icon_rectangle_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_reference_rect.png b/editor/icons/icon_reference_rect.png deleted file mode 100644 index 3d08ee4f76d..00000000000 Binary files a/editor/icons/icon_reference_rect.png and /dev/null differ diff --git a/editor/icons/icon_reference_rect.svg b/editor/icons/icon_reference_rect.svg new file mode 100644 index 00000000000..6756d4bb2fb --- /dev/null +++ b/editor/icons/icon_reference_rect.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_reflection_probe.png b/editor/icons/icon_reflection_probe.png deleted file mode 100644 index a6646114fb7..00000000000 Binary files a/editor/icons/icon_reflection_probe.png and /dev/null differ diff --git a/editor/icons/icon_reflection_probe.svg b/editor/icons/icon_reflection_probe.svg new file mode 100644 index 00000000000..ab4ce548022 --- /dev/null +++ b/editor/icons/icon_reflection_probe.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_region_edit.png b/editor/icons/icon_region_edit.png deleted file mode 100644 index 5f133072d4e..00000000000 Binary files a/editor/icons/icon_region_edit.png and /dev/null differ diff --git a/editor/icons/icon_region_edit.svg b/editor/icons/icon_region_edit.svg new file mode 100644 index 00000000000..484af3db714 --- /dev/null +++ b/editor/icons/icon_region_edit.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_reload.png b/editor/icons/icon_reload.png deleted file mode 100644 index 9303fabb9c5..00000000000 Binary files a/editor/icons/icon_reload.png and /dev/null differ diff --git a/editor/icons/icon_reload_empty.png b/editor/icons/icon_reload_empty.png deleted file mode 100644 index d43582b2c49..00000000000 Binary files a/editor/icons/icon_reload_empty.png and /dev/null differ diff --git a/editor/icons/icon_reload_small.png b/editor/icons/icon_reload_small.png deleted file mode 100644 index 1397ac6aa5e..00000000000 Binary files a/editor/icons/icon_reload_small.png and /dev/null differ diff --git a/editor/icons/icon_reload_small.svg b/editor/icons/icon_reload_small.svg new file mode 100644 index 00000000000..270c045964f --- /dev/null +++ b/editor/icons/icon_reload_small.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_remote.png b/editor/icons/icon_remote.png deleted file mode 100644 index 7eb7608b13c..00000000000 Binary files a/editor/icons/icon_remote.png and /dev/null differ diff --git a/editor/icons/icon_remote.svg b/editor/icons/icon_remote.svg new file mode 100644 index 00000000000..2066464a828 --- /dev/null +++ b/editor/icons/icon_remote.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_remote_transform.png b/editor/icons/icon_remote_transform.png deleted file mode 100644 index 9a6c30bcc8f..00000000000 Binary files a/editor/icons/icon_remote_transform.png and /dev/null differ diff --git a/editor/icons/icon_remote_transform.svg b/editor/icons/icon_remote_transform.svg new file mode 100644 index 00000000000..9cb1c67dfb4 --- /dev/null +++ b/editor/icons/icon_remote_transform.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_remote_transform_2d.png b/editor/icons/icon_remote_transform_2d.png deleted file mode 100644 index 7266f2a71d8..00000000000 Binary files a/editor/icons/icon_remote_transform_2d.png and /dev/null differ diff --git a/editor/icons/icon_remote_transform_2d.svg b/editor/icons/icon_remote_transform_2d.svg new file mode 100644 index 00000000000..f3c2d65e978 --- /dev/null +++ b/editor/icons/icon_remote_transform_2d.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_remove.png b/editor/icons/icon_remove.png deleted file mode 100644 index b6bf05a16de..00000000000 Binary files a/editor/icons/icon_remove.png and /dev/null differ diff --git a/editor/icons/icon_remove.svg b/editor/icons/icon_remove.svg new file mode 100644 index 00000000000..3b03aa93052 --- /dev/null +++ b/editor/icons/icon_remove.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_remove_hl.png b/editor/icons/icon_remove_hl.png deleted file mode 100644 index 0d3b887e7fb..00000000000 Binary files a/editor/icons/icon_remove_hl.png and /dev/null differ diff --git a/editor/icons/icon_remove_small.png b/editor/icons/icon_remove_small.png deleted file mode 100644 index e0903689cf1..00000000000 Binary files a/editor/icons/icon_remove_small.png and /dev/null differ diff --git a/editor/icons/icon_rename.png b/editor/icons/icon_rename.png deleted file mode 100644 index 2df503f1001..00000000000 Binary files a/editor/icons/icon_rename.png and /dev/null differ diff --git a/editor/icons/icon_rename.svg b/editor/icons/icon_rename.svg new file mode 100644 index 00000000000..d7336070337 --- /dev/null +++ b/editor/icons/icon_rename.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_reparent.png b/editor/icons/icon_reparent.png deleted file mode 100644 index 135ccee4adc..00000000000 Binary files a/editor/icons/icon_reparent.png and /dev/null differ diff --git a/editor/icons/icon_reparent.svg b/editor/icons/icon_reparent.svg new file mode 100644 index 00000000000..6f4d2908e72 --- /dev/null +++ b/editor/icons/icon_reparent.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_replace.png b/editor/icons/icon_replace.png deleted file mode 100644 index 662a58dc935..00000000000 Binary files a/editor/icons/icon_replace.png and /dev/null differ diff --git a/editor/icons/icon_resource_preloader.png b/editor/icons/icon_resource_preloader.png deleted file mode 100644 index d3064f5e90f..00000000000 Binary files a/editor/icons/icon_resource_preloader.png and /dev/null differ diff --git a/editor/icons/icon_resource_preloader.svg b/editor/icons/icon_resource_preloader.svg new file mode 100644 index 00000000000..82f24d74006 --- /dev/null +++ b/editor/icons/icon_resource_preloader.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_rich_text_label.png b/editor/icons/icon_rich_text_label.png deleted file mode 100644 index 1aea6e8fa7c..00000000000 Binary files a/editor/icons/icon_rich_text_label.png and /dev/null differ diff --git a/editor/icons/icon_rich_text_label.svg b/editor/icons/icon_rich_text_label.svg new file mode 100644 index 00000000000..c0b4039e3ab --- /dev/null +++ b/editor/icons/icon_rich_text_label.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_rid.png b/editor/icons/icon_rid.png deleted file mode 100644 index f7bc02e1286..00000000000 Binary files a/editor/icons/icon_rid.png and /dev/null differ diff --git a/editor/icons/icon_rigid_body.png b/editor/icons/icon_rigid_body.png deleted file mode 100644 index 4072308f712..00000000000 Binary files a/editor/icons/icon_rigid_body.png and /dev/null differ diff --git a/editor/icons/icon_rigid_body.svg b/editor/icons/icon_rigid_body.svg new file mode 100644 index 00000000000..61aa52162da --- /dev/null +++ b/editor/icons/icon_rigid_body.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_rigid_body_2_d.png b/editor/icons/icon_rigid_body_2_d.png deleted file mode 100644 index c296b88636f..00000000000 Binary files a/editor/icons/icon_rigid_body_2_d.png and /dev/null differ diff --git a/editor/icons/icon_rigid_body_2d.png b/editor/icons/icon_rigid_body_2d.png deleted file mode 100644 index 8d11d536c12..00000000000 Binary files a/editor/icons/icon_rigid_body_2d.png and /dev/null differ diff --git a/editor/icons/icon_rigid_body_2d.svg b/editor/icons/icon_rigid_body_2d.svg new file mode 100644 index 00000000000..c28e009e859 --- /dev/null +++ b/editor/icons/icon_rigid_body_2d.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_room.png b/editor/icons/icon_room.png deleted file mode 100644 index 840db145fda..00000000000 Binary files a/editor/icons/icon_room.png and /dev/null differ diff --git a/editor/icons/icon_room.svg b/editor/icons/icon_room.svg new file mode 100644 index 00000000000..5563ef965b1 --- /dev/null +++ b/editor/icons/icon_room.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_room_bounds.png b/editor/icons/icon_room_bounds.png deleted file mode 100644 index 15b198e821a..00000000000 Binary files a/editor/icons/icon_room_bounds.png and /dev/null differ diff --git a/editor/icons/icon_room_bounds.svg b/editor/icons/icon_room_bounds.svg new file mode 100644 index 00000000000..f092865568f --- /dev/null +++ b/editor/icons/icon_room_bounds.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_room_instance.png b/editor/icons/icon_room_instance.png deleted file mode 100644 index f0c46e689c7..00000000000 Binary files a/editor/icons/icon_room_instance.png and /dev/null differ diff --git a/editor/icons/icon_rotate_0.png b/editor/icons/icon_rotate_0.png deleted file mode 100644 index 75bd6678458..00000000000 Binary files a/editor/icons/icon_rotate_0.png and /dev/null differ diff --git a/editor/icons/icon_rotate_0.svg b/editor/icons/icon_rotate_0.svg new file mode 100644 index 00000000000..d9ad4eedeaf --- /dev/null +++ b/editor/icons/icon_rotate_0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_rotate_180.png b/editor/icons/icon_rotate_180.png deleted file mode 100644 index dd9333207ec..00000000000 Binary files a/editor/icons/icon_rotate_180.png and /dev/null differ diff --git a/editor/icons/icon_rotate_180.svg b/editor/icons/icon_rotate_180.svg new file mode 100644 index 00000000000..3344c16e3f0 --- /dev/null +++ b/editor/icons/icon_rotate_180.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_rotate_270.png b/editor/icons/icon_rotate_270.png deleted file mode 100644 index 551fd3afb9a..00000000000 Binary files a/editor/icons/icon_rotate_270.png and /dev/null differ diff --git a/editor/icons/icon_rotate_270.svg b/editor/icons/icon_rotate_270.svg new file mode 100644 index 00000000000..567e4edd5b4 --- /dev/null +++ b/editor/icons/icon_rotate_270.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_rotate_90.png b/editor/icons/icon_rotate_90.png deleted file mode 100644 index 55a084cc4ed..00000000000 Binary files a/editor/icons/icon_rotate_90.png and /dev/null differ diff --git a/editor/icons/icon_rotate_90.svg b/editor/icons/icon_rotate_90.svg new file mode 100644 index 00000000000..6a3a449db69 --- /dev/null +++ b/editor/icons/icon_rotate_90.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_run.png b/editor/icons/icon_run.png deleted file mode 100644 index 133d383d9ea..00000000000 Binary files a/editor/icons/icon_run.png and /dev/null differ diff --git a/editor/icons/icon_s_s_a_o_f_x.png b/editor/icons/icon_s_s_a_o_f_x.png deleted file mode 100644 index 36eccedca5b..00000000000 Binary files a/editor/icons/icon_s_s_a_o_f_x.png and /dev/null differ diff --git a/editor/icons/icon_sample.png b/editor/icons/icon_sample.png deleted file mode 100644 index 25755699be8..00000000000 Binary files a/editor/icons/icon_sample.png and /dev/null differ diff --git a/editor/icons/icon_sample_library.png b/editor/icons/icon_sample_library.png deleted file mode 100644 index 5921aa86e75..00000000000 Binary files a/editor/icons/icon_sample_library.png and /dev/null differ diff --git a/editor/icons/icon_sample_library.svg b/editor/icons/icon_sample_library.svg new file mode 100644 index 00000000000..b5ec2bb43c7 --- /dev/null +++ b/editor/icons/icon_sample_library.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_sample_player.png b/editor/icons/icon_sample_player.png deleted file mode 100644 index 4056cceeffa..00000000000 Binary files a/editor/icons/icon_sample_player.png and /dev/null differ diff --git a/editor/icons/icon_sample_player_2d.png b/editor/icons/icon_sample_player_2d.png deleted file mode 100644 index eb70340db86..00000000000 Binary files a/editor/icons/icon_sample_player_2d.png and /dev/null differ diff --git a/editor/icons/icon_save.png b/editor/icons/icon_save.png deleted file mode 100644 index 8695b7839d4..00000000000 Binary files a/editor/icons/icon_save.png and /dev/null differ diff --git a/editor/icons/icon_save.svg b/editor/icons/icon_save.svg new file mode 100644 index 00000000000..dae6693b26d --- /dev/null +++ b/editor/icons/icon_save.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_scene.png b/editor/icons/icon_scene.png deleted file mode 100644 index 9629bb91c25..00000000000 Binary files a/editor/icons/icon_scene.png and /dev/null differ diff --git a/editor/icons/icon_scene_instance.png b/editor/icons/icon_scene_instance.png deleted file mode 100644 index 05df811aa09..00000000000 Binary files a/editor/icons/icon_scene_instance.png and /dev/null differ diff --git a/editor/icons/icon_scene_tree_editor.png b/editor/icons/icon_scene_tree_editor.png deleted file mode 100644 index 0b51763555a..00000000000 Binary files a/editor/icons/icon_scene_tree_editor.png and /dev/null differ diff --git a/editor/icons/icon_script.png b/editor/icons/icon_script.png deleted file mode 100644 index 5aa673fcd64..00000000000 Binary files a/editor/icons/icon_script.png and /dev/null differ diff --git a/editor/icons/icon_script.svg b/editor/icons/icon_script.svg new file mode 100644 index 00000000000..ad3c9d7f803 --- /dev/null +++ b/editor/icons/icon_script.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_script_control.png b/editor/icons/icon_script_control.png deleted file mode 100644 index cd1cc9b9af0..00000000000 Binary files a/editor/icons/icon_script_control.png and /dev/null differ diff --git a/editor/icons/icon_script_create.png b/editor/icons/icon_script_create.png deleted file mode 100644 index 86c19f748b4..00000000000 Binary files a/editor/icons/icon_script_create.png and /dev/null differ diff --git a/editor/icons/icon_script_create.svg b/editor/icons/icon_script_create.svg new file mode 100644 index 00000000000..231a6754305 --- /dev/null +++ b/editor/icons/icon_script_create.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_script_error.png b/editor/icons/icon_script_error.png deleted file mode 100644 index 3532c2c3793..00000000000 Binary files a/editor/icons/icon_script_error.png and /dev/null differ diff --git a/editor/icons/icon_script_list.png b/editor/icons/icon_script_list.png deleted file mode 100644 index cdea1e161ee..00000000000 Binary files a/editor/icons/icon_script_list.png and /dev/null differ diff --git a/editor/icons/icon_script_node.png b/editor/icons/icon_script_node.png deleted file mode 100644 index fcf205b2e9e..00000000000 Binary files a/editor/icons/icon_script_node.png and /dev/null differ diff --git a/editor/icons/icon_script_remove.png b/editor/icons/icon_script_remove.png deleted file mode 100644 index c200b016903..00000000000 Binary files a/editor/icons/icon_script_remove.png and /dev/null differ diff --git a/editor/icons/icon_script_remove.svg b/editor/icons/icon_script_remove.svg new file mode 100644 index 00000000000..b5dcaff4606 --- /dev/null +++ b/editor/icons/icon_script_remove.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_scroll_bar.png b/editor/icons/icon_scroll_bar.png deleted file mode 100644 index e4576c4ae3a..00000000000 Binary files a/editor/icons/icon_scroll_bar.png and /dev/null differ diff --git a/editor/icons/icon_scroll_bar.svg b/editor/icons/icon_scroll_bar.svg new file mode 100644 index 00000000000..f956615ff1a --- /dev/null +++ b/editor/icons/icon_scroll_bar.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_scroll_bg.png b/editor/icons/icon_scroll_bg.png deleted file mode 100644 index 1908fd8aee1..00000000000 Binary files a/editor/icons/icon_scroll_bg.png and /dev/null differ diff --git a/editor/icons/icon_scroll_container.png b/editor/icons/icon_scroll_container.png deleted file mode 100644 index 4e42d84ab16..00000000000 Binary files a/editor/icons/icon_scroll_container.png and /dev/null differ diff --git a/editor/icons/icon_scroll_container.svg b/editor/icons/icon_scroll_container.svg new file mode 100644 index 00000000000..83ca7f753de --- /dev/null +++ b/editor/icons/icon_scroll_container.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_scroll_grabber.png b/editor/icons/icon_scroll_grabber.png deleted file mode 100644 index 4be7f4e6ccc..00000000000 Binary files a/editor/icons/icon_scroll_grabber.png and /dev/null differ diff --git a/editor/icons/icon_scroll_grabber_hl.png b/editor/icons/icon_scroll_grabber_hl.png deleted file mode 100644 index a81239b84be..00000000000 Binary files a/editor/icons/icon_scroll_grabber_hl.png and /dev/null differ diff --git a/editor/icons/icon_search.png b/editor/icons/icon_search.png deleted file mode 100644 index f3748803cfe..00000000000 Binary files a/editor/icons/icon_search.png and /dev/null differ diff --git a/editor/icons/icon_search.svg b/editor/icons/icon_search.svg new file mode 100644 index 00000000000..6ef1d42815c --- /dev/null +++ b/editor/icons/icon_search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_segment_shape_2d.png b/editor/icons/icon_segment_shape_2d.png deleted file mode 100644 index 8f3771be7ab..00000000000 Binary files a/editor/icons/icon_segment_shape_2d.png and /dev/null differ diff --git a/editor/icons/icon_segment_shape_2d.svg b/editor/icons/icon_segment_shape_2d.svg new file mode 100644 index 00000000000..beb1dd3d3ff --- /dev/null +++ b/editor/icons/icon_segment_shape_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_shader.png b/editor/icons/icon_shader.png deleted file mode 100644 index 568a45d9384..00000000000 Binary files a/editor/icons/icon_shader.png and /dev/null differ diff --git a/editor/icons/icon_shader.svg b/editor/icons/icon_shader.svg new file mode 100644 index 00000000000..f77aa837c5f --- /dev/null +++ b/editor/icons/icon_shader.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_shader_material.png b/editor/icons/icon_shader_material.png deleted file mode 100644 index 568a45d9384..00000000000 Binary files a/editor/icons/icon_shader_material.png and /dev/null differ diff --git a/editor/icons/icon_short_cut.png b/editor/icons/icon_short_cut.png deleted file mode 100644 index 22e15c38898..00000000000 Binary files a/editor/icons/icon_short_cut.png and /dev/null differ diff --git a/editor/icons/icon_short_cut.svg b/editor/icons/icon_short_cut.svg new file mode 100644 index 00000000000..736f1f3c021 --- /dev/null +++ b/editor/icons/icon_short_cut.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_signal.png b/editor/icons/icon_signal.png deleted file mode 100644 index c2f393228c8..00000000000 Binary files a/editor/icons/icon_signal.png and /dev/null differ diff --git a/editor/icons/icon_signal.svg b/editor/icons/icon_signal.svg new file mode 100644 index 00000000000..74fbdf85203 --- /dev/null +++ b/editor/icons/icon_signal.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_skeleton.png b/editor/icons/icon_skeleton.png deleted file mode 100644 index 17b003caac1..00000000000 Binary files a/editor/icons/icon_skeleton.png and /dev/null differ diff --git a/editor/icons/icon_skeleton.svg b/editor/icons/icon_skeleton.svg new file mode 100644 index 00000000000..97169409069 --- /dev/null +++ b/editor/icons/icon_skeleton.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_skeletonr.png b/editor/icons/icon_skeletonr.png deleted file mode 100644 index dcb2d512abf..00000000000 Binary files a/editor/icons/icon_skeletonr.png and /dev/null differ diff --git a/editor/icons/icon_sky_box_f_x.png b/editor/icons/icon_sky_box_f_x.png deleted file mode 100644 index cabd19e550a..00000000000 Binary files a/editor/icons/icon_sky_box_f_x.png and /dev/null differ diff --git a/editor/icons/icon_slider_grabber.png b/editor/icons/icon_slider_grabber.png deleted file mode 100644 index 6b6982e26c9..00000000000 Binary files a/editor/icons/icon_slider_grabber.png and /dev/null differ diff --git a/editor/icons/icon_slider_grabber_hl.png b/editor/icons/icon_slider_grabber_hl.png deleted file mode 100644 index 03d4b2bb998..00000000000 Binary files a/editor/icons/icon_slider_grabber_hl.png and /dev/null differ diff --git a/editor/icons/icon_slider_joint.png b/editor/icons/icon_slider_joint.png deleted file mode 100644 index 5b8c2df6ff2..00000000000 Binary files a/editor/icons/icon_slider_joint.png and /dev/null differ diff --git a/editor/icons/icon_slider_joint.svg b/editor/icons/icon_slider_joint.svg new file mode 100644 index 00000000000..479323bf9a4 --- /dev/null +++ b/editor/icons/icon_slider_joint.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_slot.png b/editor/icons/icon_slot.png deleted file mode 100644 index 856bf72281c..00000000000 Binary files a/editor/icons/icon_slot.png and /dev/null differ diff --git a/editor/icons/icon_slot.svg b/editor/icons/icon_slot.svg new file mode 100644 index 00000000000..f3d27ec55e2 --- /dev/null +++ b/editor/icons/icon_slot.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_small_next.png b/editor/icons/icon_small_next.png deleted file mode 100644 index f853d100b58..00000000000 Binary files a/editor/icons/icon_small_next.png and /dev/null differ diff --git a/editor/icons/icon_snap.png b/editor/icons/icon_snap.png deleted file mode 100644 index 93194d34e7f..00000000000 Binary files a/editor/icons/icon_snap.png and /dev/null differ diff --git a/editor/icons/icon_snap.svg b/editor/icons/icon_snap.svg new file mode 100644 index 00000000000..b1f36cfe43d --- /dev/null +++ b/editor/icons/icon_snap.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_sound_room_params.png b/editor/icons/icon_sound_room_params.png deleted file mode 100644 index 6f66da2e432..00000000000 Binary files a/editor/icons/icon_sound_room_params.png and /dev/null differ diff --git a/editor/icons/icon_sound_room_params.svg b/editor/icons/icon_sound_room_params.svg new file mode 100644 index 00000000000..ddec8a3cf96 --- /dev/null +++ b/editor/icons/icon_sound_room_params.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_spatial.png b/editor/icons/icon_spatial.png deleted file mode 100644 index 7c9f7210538..00000000000 Binary files a/editor/icons/icon_spatial.png and /dev/null differ diff --git a/editor/icons/icon_spatial.svg b/editor/icons/icon_spatial.svg new file mode 100644 index 00000000000..f0b4e65c21f --- /dev/null +++ b/editor/icons/icon_spatial.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_spatial_add.png b/editor/icons/icon_spatial_add.png deleted file mode 100644 index 47950fbbb5e..00000000000 Binary files a/editor/icons/icon_spatial_add.png and /dev/null differ diff --git a/editor/icons/icon_spatial_material.png b/editor/icons/icon_spatial_material.png deleted file mode 100644 index 7608fc9036e..00000000000 Binary files a/editor/icons/icon_spatial_material.png and /dev/null differ diff --git a/editor/icons/icon_spatial_material.svg b/editor/icons/icon_spatial_material.svg new file mode 100644 index 00000000000..aa8bfc9a5be --- /dev/null +++ b/editor/icons/icon_spatial_material.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_spatial_sample_player.png b/editor/icons/icon_spatial_sample_player.png deleted file mode 100644 index bb2451da99b..00000000000 Binary files a/editor/icons/icon_spatial_sample_player.png and /dev/null differ diff --git a/editor/icons/icon_spatial_sample_player.svg b/editor/icons/icon_spatial_sample_player.svg new file mode 100644 index 00000000000..32f70cd2a6a --- /dev/null +++ b/editor/icons/icon_spatial_sample_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_spatial_shader.png b/editor/icons/icon_spatial_shader.png deleted file mode 100644 index 7608fc9036e..00000000000 Binary files a/editor/icons/icon_spatial_shader.png and /dev/null differ diff --git a/editor/icons/icon_spatial_stream_player.png b/editor/icons/icon_spatial_stream_player.png deleted file mode 100644 index a6f98515485..00000000000 Binary files a/editor/icons/icon_spatial_stream_player.png and /dev/null differ diff --git a/editor/icons/icon_spatial_stream_player.svg b/editor/icons/icon_spatial_stream_player.svg new file mode 100644 index 00000000000..20fadb59f83 --- /dev/null +++ b/editor/icons/icon_spatial_stream_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_sphere_mesh.png b/editor/icons/icon_sphere_mesh.png deleted file mode 100644 index 19ed49c3cd4..00000000000 Binary files a/editor/icons/icon_sphere_mesh.png and /dev/null differ diff --git a/editor/icons/icon_sphere_mesh.svg b/editor/icons/icon_sphere_mesh.svg new file mode 100644 index 00000000000..519b69cbd7b --- /dev/null +++ b/editor/icons/icon_sphere_mesh.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_sphere_shape.png b/editor/icons/icon_sphere_shape.png deleted file mode 100644 index 23300a0da11..00000000000 Binary files a/editor/icons/icon_sphere_shape.png and /dev/null differ diff --git a/editor/icons/icon_sphere_shape.svg b/editor/icons/icon_sphere_shape.svg new file mode 100644 index 00000000000..f2995ae96af --- /dev/null +++ b/editor/icons/icon_sphere_shape.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_spin_box.png b/editor/icons/icon_spin_box.png deleted file mode 100644 index 6da0dbec79a..00000000000 Binary files a/editor/icons/icon_spin_box.png and /dev/null differ diff --git a/editor/icons/icon_spin_box.svg b/editor/icons/icon_spin_box.svg new file mode 100644 index 00000000000..965df69a02c --- /dev/null +++ b/editor/icons/icon_spin_box.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_spinbox_updown.png b/editor/icons/icon_spinbox_updown.png deleted file mode 100644 index ff65df801bf..00000000000 Binary files a/editor/icons/icon_spinbox_updown.png and /dev/null differ diff --git a/editor/icons/icon_spline.png b/editor/icons/icon_spline.png deleted file mode 100644 index 3239aff383b..00000000000 Binary files a/editor/icons/icon_spline.png and /dev/null differ diff --git a/editor/icons/icon_spot_light.png b/editor/icons/icon_spot_light.png deleted file mode 100644 index f52570a5cdd..00000000000 Binary files a/editor/icons/icon_spot_light.png and /dev/null differ diff --git a/editor/icons/icon_spot_light.svg b/editor/icons/icon_spot_light.svg new file mode 100644 index 00000000000..93d4247405d --- /dev/null +++ b/editor/icons/icon_spot_light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_sprite.png b/editor/icons/icon_sprite.png deleted file mode 100644 index b698d32d4c4..00000000000 Binary files a/editor/icons/icon_sprite.png and /dev/null differ diff --git a/editor/icons/icon_sprite.svg b/editor/icons/icon_sprite.svg new file mode 100644 index 00000000000..4feea4d265b --- /dev/null +++ b/editor/icons/icon_sprite.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_sprite_3d.png b/editor/icons/icon_sprite_3d.png deleted file mode 100644 index 47a3ff429b8..00000000000 Binary files a/editor/icons/icon_sprite_3d.png and /dev/null differ diff --git a/editor/icons/icon_sprite_3d.svg b/editor/icons/icon_sprite_3d.svg new file mode 100644 index 00000000000..0d5caae501e --- /dev/null +++ b/editor/icons/icon_sprite_3d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_sprite_frames.png b/editor/icons/icon_sprite_frames.png deleted file mode 100644 index 5576b24f2eb..00000000000 Binary files a/editor/icons/icon_sprite_frames.png and /dev/null differ diff --git a/editor/icons/icon_sprite_frames.svg b/editor/icons/icon_sprite_frames.svg new file mode 100644 index 00000000000..5147ccdb1e9 --- /dev/null +++ b/editor/icons/icon_sprite_frames.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_squirrel_script.png b/editor/icons/icon_squirrel_script.png deleted file mode 100644 index 32926b59752..00000000000 Binary files a/editor/icons/icon_squirrel_script.png and /dev/null differ diff --git a/editor/icons/icon_static_body.png b/editor/icons/icon_static_body.png deleted file mode 100644 index 62948f97cd2..00000000000 Binary files a/editor/icons/icon_static_body.png and /dev/null differ diff --git a/editor/icons/icon_static_body.svg b/editor/icons/icon_static_body.svg new file mode 100644 index 00000000000..e8ba9bff6fd --- /dev/null +++ b/editor/icons/icon_static_body.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_static_body_2_d.png b/editor/icons/icon_static_body_2_d.png deleted file mode 100644 index 9af0274a652..00000000000 Binary files a/editor/icons/icon_static_body_2_d.png and /dev/null differ diff --git a/editor/icons/icon_static_body_2d.png b/editor/icons/icon_static_body_2d.png deleted file mode 100644 index b7bad4f7423..00000000000 Binary files a/editor/icons/icon_static_body_2d.png and /dev/null differ diff --git a/editor/icons/icon_static_body_2d.svg b/editor/icons/icon_static_body_2d.svg new file mode 100644 index 00000000000..9c2b85ac104 --- /dev/null +++ b/editor/icons/icon_static_body_2d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_stop.png b/editor/icons/icon_stop.png deleted file mode 100644 index 0fd43b403a1..00000000000 Binary files a/editor/icons/icon_stop.png and /dev/null differ diff --git a/editor/icons/icon_stream_player.png b/editor/icons/icon_stream_player.png deleted file mode 100644 index 15bdbdf440f..00000000000 Binary files a/editor/icons/icon_stream_player.png and /dev/null differ diff --git a/editor/icons/icon_stream_player.svg b/editor/icons/icon_stream_player.svg new file mode 100644 index 00000000000..c135487de9b --- /dev/null +++ b/editor/icons/icon_stream_player.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_stream_texture.png b/editor/icons/icon_stream_texture.png deleted file mode 100644 index 1858a299d7b..00000000000 Binary files a/editor/icons/icon_stream_texture.png and /dev/null differ diff --git a/editor/icons/icon_stream_texture.svg b/editor/icons/icon_stream_texture.svg new file mode 100644 index 00000000000..0210142b7ee --- /dev/null +++ b/editor/icons/icon_stream_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_string.png b/editor/icons/icon_string.png deleted file mode 100644 index 8d01b738da1..00000000000 Binary files a/editor/icons/icon_string.png and /dev/null differ diff --git a/editor/icons/icon_string.svg b/editor/icons/icon_string.svg new file mode 100644 index 00000000000..515658aa1b8 --- /dev/null +++ b/editor/icons/icon_string.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_style_box_empty.png b/editor/icons/icon_style_box_empty.png deleted file mode 100644 index f595eaaa571..00000000000 Binary files a/editor/icons/icon_style_box_empty.png and /dev/null differ diff --git a/editor/icons/icon_style_box_empty.svg b/editor/icons/icon_style_box_empty.svg new file mode 100644 index 00000000000..aa14bd4eadf --- /dev/null +++ b/editor/icons/icon_style_box_empty.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_style_box_flat.png b/editor/icons/icon_style_box_flat.png deleted file mode 100644 index 6ec6a6dd350..00000000000 Binary files a/editor/icons/icon_style_box_flat.png and /dev/null differ diff --git a/editor/icons/icon_style_box_flat.svg b/editor/icons/icon_style_box_flat.svg new file mode 100644 index 00000000000..d76ec8d7f16 --- /dev/null +++ b/editor/icons/icon_style_box_flat.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_style_box_texture.png b/editor/icons/icon_style_box_texture.png deleted file mode 100644 index f6495084186..00000000000 Binary files a/editor/icons/icon_style_box_texture.png and /dev/null differ diff --git a/editor/icons/icon_style_box_texture.svg b/editor/icons/icon_style_box_texture.svg new file mode 100644 index 00000000000..b9eaad8df79 --- /dev/null +++ b/editor/icons/icon_style_box_texture.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_surface.png b/editor/icons/icon_surface.png deleted file mode 100644 index e7af8e94445..00000000000 Binary files a/editor/icons/icon_surface.png and /dev/null differ diff --git a/editor/icons/icon_tab_container.png b/editor/icons/icon_tab_container.png deleted file mode 100644 index 7ff3081ec15..00000000000 Binary files a/editor/icons/icon_tab_container.png and /dev/null differ diff --git a/editor/icons/icon_tab_container.svg b/editor/icons/icon_tab_container.svg new file mode 100644 index 00000000000..b6489e9fbf5 --- /dev/null +++ b/editor/icons/icon_tab_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_tab_menu.png b/editor/icons/icon_tab_menu.png deleted file mode 100644 index ffc63f2d415..00000000000 Binary files a/editor/icons/icon_tab_menu.png and /dev/null differ diff --git a/editor/icons/icon_tabs.png b/editor/icons/icon_tabs.png deleted file mode 100644 index c17ab6fa1bb..00000000000 Binary files a/editor/icons/icon_tabs.png and /dev/null differ diff --git a/editor/icons/icon_tabs.svg b/editor/icons/icon_tabs.svg new file mode 100644 index 00000000000..dfcc20a1333 --- /dev/null +++ b/editor/icons/icon_tabs.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_test_cube.png b/editor/icons/icon_test_cube.png deleted file mode 100644 index 4d11a69c3ea..00000000000 Binary files a/editor/icons/icon_test_cube.png and /dev/null differ diff --git a/editor/icons/icon_test_cube.svg b/editor/icons/icon_test_cube.svg new file mode 100644 index 00000000000..8400a9617a5 --- /dev/null +++ b/editor/icons/icon_test_cube.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_text_edit.png b/editor/icons/icon_text_edit.png deleted file mode 100644 index 7599e89eb11..00000000000 Binary files a/editor/icons/icon_text_edit.png and /dev/null differ diff --git a/editor/icons/icon_text_edit.svg b/editor/icons/icon_text_edit.svg new file mode 100644 index 00000000000..d3485a0b626 --- /dev/null +++ b/editor/icons/icon_text_edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_texture.png b/editor/icons/icon_texture.png deleted file mode 100644 index 7c4493395ef..00000000000 Binary files a/editor/icons/icon_texture.png and /dev/null differ diff --git a/editor/icons/icon_texture_button.png b/editor/icons/icon_texture_button.png deleted file mode 100644 index ea1d8235e1b..00000000000 Binary files a/editor/icons/icon_texture_button.png and /dev/null differ diff --git a/editor/icons/icon_texture_button.svg b/editor/icons/icon_texture_button.svg new file mode 100644 index 00000000000..17f87ab8618 --- /dev/null +++ b/editor/icons/icon_texture_button.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_texture_progress.png b/editor/icons/icon_texture_progress.png deleted file mode 100644 index ea3cc35da87..00000000000 Binary files a/editor/icons/icon_texture_progress.png and /dev/null differ diff --git a/editor/icons/icon_texture_progress.svg b/editor/icons/icon_texture_progress.svg new file mode 100644 index 00000000000..03aa3965bac --- /dev/null +++ b/editor/icons/icon_texture_progress.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_texture_rect.png b/editor/icons/icon_texture_rect.png deleted file mode 100644 index 20adc227155..00000000000 Binary files a/editor/icons/icon_texture_rect.png and /dev/null differ diff --git a/editor/icons/icon_texture_rect.svg b/editor/icons/icon_texture_rect.svg new file mode 100644 index 00000000000..86d24ac223b --- /dev/null +++ b/editor/icons/icon_texture_rect.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_theme.png b/editor/icons/icon_theme.png deleted file mode 100644 index 55d799c722d..00000000000 Binary files a/editor/icons/icon_theme.png and /dev/null differ diff --git a/editor/icons/icon_theme.svg b/editor/icons/icon_theme.svg new file mode 100644 index 00000000000..3dfb4aaa004 --- /dev/null +++ b/editor/icons/icon_theme.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_thumbnail_wait.png b/editor/icons/icon_thumbnail_wait.png deleted file mode 100644 index 96a7d424e3d..00000000000 Binary files a/editor/icons/icon_thumbnail_wait.png and /dev/null differ diff --git a/editor/icons/icon_tile_map.png b/editor/icons/icon_tile_map.png deleted file mode 100644 index 0ba6276e259..00000000000 Binary files a/editor/icons/icon_tile_map.png and /dev/null differ diff --git a/editor/icons/icon_tile_map.svg b/editor/icons/icon_tile_map.svg new file mode 100644 index 00000000000..826b515025e --- /dev/null +++ b/editor/icons/icon_tile_map.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_tile_set.png b/editor/icons/icon_tile_set.png deleted file mode 100644 index a1c3fccddd8..00000000000 Binary files a/editor/icons/icon_tile_set.png and /dev/null differ diff --git a/editor/icons/icon_tile_set.svg b/editor/icons/icon_tile_set.svg new file mode 100644 index 00000000000..c7be24ae627 --- /dev/null +++ b/editor/icons/icon_tile_set.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_time.png b/editor/icons/icon_time.png deleted file mode 100644 index a8e97ea7b8a..00000000000 Binary files a/editor/icons/icon_time.png and /dev/null differ diff --git a/editor/icons/icon_timer.png b/editor/icons/icon_timer.png deleted file mode 100644 index 81e619cdaa1..00000000000 Binary files a/editor/icons/icon_timer.png and /dev/null differ diff --git a/editor/icons/icon_timer.svg b/editor/icons/icon_timer.svg new file mode 100644 index 00000000000..e5907cea20d --- /dev/null +++ b/editor/icons/icon_timer.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_tool_button.png b/editor/icons/icon_tool_button.png deleted file mode 100644 index 43c08592c61..00000000000 Binary files a/editor/icons/icon_tool_button.png and /dev/null differ diff --git a/editor/icons/icon_tool_button.svg b/editor/icons/icon_tool_button.svg new file mode 100644 index 00000000000..25bc83e6904 --- /dev/null +++ b/editor/icons/icon_tool_button.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/editor/icons/icon_tool_move.png b/editor/icons/icon_tool_move.png deleted file mode 100644 index 2b6984e8b26..00000000000 Binary files a/editor/icons/icon_tool_move.png and /dev/null differ diff --git a/editor/icons/icon_tool_move.svg b/editor/icons/icon_tool_move.svg new file mode 100644 index 00000000000..51ab4bc0df1 --- /dev/null +++ b/editor/icons/icon_tool_move.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_tool_pan.png b/editor/icons/icon_tool_pan.png deleted file mode 100644 index a24545a6d45..00000000000 Binary files a/editor/icons/icon_tool_pan.png and /dev/null differ diff --git a/editor/icons/icon_tool_pan.svg b/editor/icons/icon_tool_pan.svg new file mode 100644 index 00000000000..ff2b2eda1d0 --- /dev/null +++ b/editor/icons/icon_tool_pan.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_tool_rotate.png b/editor/icons/icon_tool_rotate.png deleted file mode 100644 index 9303fabb9c5..00000000000 Binary files a/editor/icons/icon_tool_rotate.png and /dev/null differ diff --git a/editor/icons/icon_tool_rotate.svg b/editor/icons/icon_tool_rotate.svg new file mode 100644 index 00000000000..ae0cf02170c --- /dev/null +++ b/editor/icons/icon_tool_rotate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_tool_scale.png b/editor/icons/icon_tool_scale.png deleted file mode 100644 index b389c40746a..00000000000 Binary files a/editor/icons/icon_tool_scale.png and /dev/null differ diff --git a/editor/icons/icon_tool_scale.svg b/editor/icons/icon_tool_scale.svg new file mode 100644 index 00000000000..70acd520828 --- /dev/null +++ b/editor/icons/icon_tool_scale.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_tool_select.png b/editor/icons/icon_tool_select.png deleted file mode 100644 index dcf6fcd2c8d..00000000000 Binary files a/editor/icons/icon_tool_select.png and /dev/null differ diff --git a/editor/icons/icon_tool_select.svg b/editor/icons/icon_tool_select.svg new file mode 100644 index 00000000000..fc8931cd0e3 --- /dev/null +++ b/editor/icons/icon_tool_select.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_tools.png b/editor/icons/icon_tools.png deleted file mode 100644 index d81c93f212a..00000000000 Binary files a/editor/icons/icon_tools.png and /dev/null differ diff --git a/editor/icons/icon_tools.svg b/editor/icons/icon_tools.svg new file mode 100644 index 00000000000..854cc08e79d --- /dev/null +++ b/editor/icons/icon_tools.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_touch_screen_button.png b/editor/icons/icon_touch_screen_button.png deleted file mode 100644 index 6bd0af3f479..00000000000 Binary files a/editor/icons/icon_touch_screen_button.png and /dev/null differ diff --git a/editor/icons/icon_touch_screen_button.svg b/editor/icons/icon_touch_screen_button.svg new file mode 100644 index 00000000000..21a8f16ee6f --- /dev/null +++ b/editor/icons/icon_touch_screen_button.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_track_add_key.png b/editor/icons/icon_track_add_key.png deleted file mode 100644 index 02d92439a38..00000000000 Binary files a/editor/icons/icon_track_add_key.png and /dev/null differ diff --git a/editor/icons/icon_track_add_key.svg b/editor/icons/icon_track_add_key.svg new file mode 100644 index 00000000000..e59de703489 --- /dev/null +++ b/editor/icons/icon_track_add_key.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_track_add_key_hl.png b/editor/icons/icon_track_add_key_hl.png deleted file mode 100644 index 0e857f5fe29..00000000000 Binary files a/editor/icons/icon_track_add_key_hl.png and /dev/null differ diff --git a/editor/icons/icon_track_add_key_hl.svg b/editor/icons/icon_track_add_key_hl.svg new file mode 100644 index 00000000000..01ef661adc4 --- /dev/null +++ b/editor/icons/icon_track_add_key_hl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_track_continuous.png b/editor/icons/icon_track_continuous.png deleted file mode 100644 index dabdc718d5e..00000000000 Binary files a/editor/icons/icon_track_continuous.png and /dev/null differ diff --git a/editor/icons/icon_track_continuous.svg b/editor/icons/icon_track_continuous.svg new file mode 100644 index 00000000000..635b5587586 --- /dev/null +++ b/editor/icons/icon_track_continuous.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_track_discrete.png b/editor/icons/icon_track_discrete.png deleted file mode 100644 index 3f580ac5fcd..00000000000 Binary files a/editor/icons/icon_track_discrete.png and /dev/null differ diff --git a/editor/icons/icon_track_discrete.svg b/editor/icons/icon_track_discrete.svg new file mode 100644 index 00000000000..80c9062365c --- /dev/null +++ b/editor/icons/icon_track_discrete.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_track_method.png b/editor/icons/icon_track_method.png deleted file mode 100644 index 1355c84e678..00000000000 Binary files a/editor/icons/icon_track_method.png and /dev/null differ diff --git a/editor/icons/icon_track_prop.png b/editor/icons/icon_track_prop.png deleted file mode 100644 index de8f549cd23..00000000000 Binary files a/editor/icons/icon_track_prop.png and /dev/null differ diff --git a/editor/icons/icon_track_trigger.png b/editor/icons/icon_track_trigger.png deleted file mode 100644 index e89f95561a8..00000000000 Binary files a/editor/icons/icon_track_trigger.png and /dev/null differ diff --git a/editor/icons/icon_track_trigger.svg b/editor/icons/icon_track_trigger.svg new file mode 100644 index 00000000000..f6149438453 --- /dev/null +++ b/editor/icons/icon_track_trigger.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_track_value.png b/editor/icons/icon_track_value.png deleted file mode 100644 index 5f5dc0d3155..00000000000 Binary files a/editor/icons/icon_track_value.png and /dev/null differ diff --git a/editor/icons/icon_translation.png b/editor/icons/icon_translation.png deleted file mode 100644 index abca359eeab..00000000000 Binary files a/editor/icons/icon_translation.png and /dev/null differ diff --git a/editor/icons/icon_translation.svg b/editor/icons/icon_translation.svg new file mode 100644 index 00000000000..81abe5070ee --- /dev/null +++ b/editor/icons/icon_translation.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_transparent.png b/editor/icons/icon_transparent.png deleted file mode 100644 index 07e9b52b5c3..00000000000 Binary files a/editor/icons/icon_transparent.png and /dev/null differ diff --git a/editor/icons/icon_transpose.png b/editor/icons/icon_transpose.png deleted file mode 100644 index 7a126c84284..00000000000 Binary files a/editor/icons/icon_transpose.png and /dev/null differ diff --git a/editor/icons/icon_transpose.svg b/editor/icons/icon_transpose.svg new file mode 100644 index 00000000000..d92b37a7b1c --- /dev/null +++ b/editor/icons/icon_transpose.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_tree.png b/editor/icons/icon_tree.png deleted file mode 100644 index de856a79fbd..00000000000 Binary files a/editor/icons/icon_tree.png and /dev/null differ diff --git a/editor/icons/icon_tree.svg b/editor/icons/icon_tree.svg new file mode 100644 index 00000000000..093f9d2fc55 --- /dev/null +++ b/editor/icons/icon_tree.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_tree_arrow_down.png b/editor/icons/icon_tree_arrow_down.png deleted file mode 100644 index 4ef7b41de64..00000000000 Binary files a/editor/icons/icon_tree_arrow_down.png and /dev/null differ diff --git a/editor/icons/icon_tree_arrow_right.png b/editor/icons/icon_tree_arrow_right.png deleted file mode 100644 index 13a42f730d5..00000000000 Binary files a/editor/icons/icon_tree_arrow_right.png and /dev/null differ diff --git a/editor/icons/icon_tween.png b/editor/icons/icon_tween.png deleted file mode 100644 index 3181e2cf63c..00000000000 Binary files a/editor/icons/icon_tween.png and /dev/null differ diff --git a/editor/icons/icon_tween.svg b/editor/icons/icon_tween.svg new file mode 100644 index 00000000000..202dd9eb65c --- /dev/null +++ b/editor/icons/icon_tween.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_unbone.png b/editor/icons/icon_unbone.png deleted file mode 100644 index 919e13ad6bf..00000000000 Binary files a/editor/icons/icon_unbone.png and /dev/null differ diff --git a/editor/icons/icon_unbone.svg b/editor/icons/icon_unbone.svg new file mode 100644 index 00000000000..06dfe67030c --- /dev/null +++ b/editor/icons/icon_unbone.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_unchecked.png b/editor/icons/icon_unchecked.png deleted file mode 100644 index 9d7d55aa460..00000000000 Binary files a/editor/icons/icon_unchecked.png and /dev/null differ diff --git a/editor/icons/icon_ungroup.png b/editor/icons/icon_ungroup.png deleted file mode 100644 index b4c2e01814c..00000000000 Binary files a/editor/icons/icon_ungroup.png and /dev/null differ diff --git a/editor/icons/icon_ungroup.svg b/editor/icons/icon_ungroup.svg new file mode 100644 index 00000000000..edab685ef7b --- /dev/null +++ b/editor/icons/icon_ungroup.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_uninstance.png b/editor/icons/icon_uninstance.png deleted file mode 100644 index de8b2f9a405..00000000000 Binary files a/editor/icons/icon_uninstance.png and /dev/null differ diff --git a/editor/icons/icon_unlock.png b/editor/icons/icon_unlock.png deleted file mode 100644 index d314aa46fef..00000000000 Binary files a/editor/icons/icon_unlock.png and /dev/null differ diff --git a/editor/icons/icon_unlock.svg b/editor/icons/icon_unlock.svg new file mode 100644 index 00000000000..10ea82cbcfd --- /dev/null +++ b/editor/icons/icon_unlock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_up.png b/editor/icons/icon_up.png deleted file mode 100644 index 346c4cdba8b..00000000000 Binary files a/editor/icons/icon_up.png and /dev/null differ diff --git a/editor/icons/icon_updown.png b/editor/icons/icon_updown.png deleted file mode 100644 index 3141dc56ae3..00000000000 Binary files a/editor/icons/icon_updown.png and /dev/null differ diff --git a/editor/icons/icon_uv.png b/editor/icons/icon_uv.png deleted file mode 100644 index f5d901ab915..00000000000 Binary files a/editor/icons/icon_uv.png and /dev/null differ diff --git a/editor/icons/icon_uv.svg b/editor/icons/icon_uv.svg new file mode 100644 index 00000000000..13744d496a9 --- /dev/null +++ b/editor/icons/icon_uv.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_v_box_container.png b/editor/icons/icon_v_box_container.png deleted file mode 100644 index 4d9bdb67b8d..00000000000 Binary files a/editor/icons/icon_v_box_container.png and /dev/null differ diff --git a/editor/icons/icon_v_box_container.svg b/editor/icons/icon_v_box_container.svg new file mode 100644 index 00000000000..07c2b230c0d --- /dev/null +++ b/editor/icons/icon_v_box_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_v_button_array.png b/editor/icons/icon_v_button_array.png deleted file mode 100644 index 996475ffa48..00000000000 Binary files a/editor/icons/icon_v_button_array.png and /dev/null differ diff --git a/editor/icons/icon_v_button_array.svg b/editor/icons/icon_v_button_array.svg new file mode 100644 index 00000000000..ac7ce6064c9 --- /dev/null +++ b/editor/icons/icon_v_button_array.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_v_scroll_bar.png b/editor/icons/icon_v_scroll_bar.png deleted file mode 100644 index edd6d4cd677..00000000000 Binary files a/editor/icons/icon_v_scroll_bar.png and /dev/null differ diff --git a/editor/icons/icon_v_scroll_bar.svg b/editor/icons/icon_v_scroll_bar.svg new file mode 100644 index 00000000000..49b2f5e851a --- /dev/null +++ b/editor/icons/icon_v_scroll_bar.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_v_separator.png b/editor/icons/icon_v_separator.png deleted file mode 100644 index f0122d197fe..00000000000 Binary files a/editor/icons/icon_v_separator.png and /dev/null differ diff --git a/editor/icons/icon_v_separator.svg b/editor/icons/icon_v_separator.svg new file mode 100644 index 00000000000..b12bbd1ca6d --- /dev/null +++ b/editor/icons/icon_v_separator.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_v_slider.png b/editor/icons/icon_v_slider.png deleted file mode 100644 index d9c0bb00d91..00000000000 Binary files a/editor/icons/icon_v_slider.png and /dev/null differ diff --git a/editor/icons/icon_v_slider.svg b/editor/icons/icon_v_slider.svg new file mode 100644 index 00000000000..c016ebd814d --- /dev/null +++ b/editor/icons/icon_v_slider.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_v_split_container.png b/editor/icons/icon_v_split_container.png deleted file mode 100644 index 23093e334fa..00000000000 Binary files a/editor/icons/icon_v_split_container.png and /dev/null differ diff --git a/editor/icons/icon_v_split_container.svg b/editor/icons/icon_v_split_container.svg new file mode 100644 index 00000000000..d038edccc91 --- /dev/null +++ b/editor/icons/icon_v_split_container.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_variant.png b/editor/icons/icon_variant.png deleted file mode 100644 index af7590345ed..00000000000 Binary files a/editor/icons/icon_variant.png and /dev/null differ diff --git a/editor/icons/icon_variant.svg b/editor/icons/icon_variant.svg new file mode 100644 index 00000000000..32f72b1ce6f --- /dev/null +++ b/editor/icons/icon_variant.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_vector.png b/editor/icons/icon_vector.png deleted file mode 100644 index 8dba948daff..00000000000 Binary files a/editor/icons/icon_vector.png and /dev/null differ diff --git a/editor/icons/icon_vector.svg b/editor/icons/icon_vector.svg new file mode 100644 index 00000000000..dda46edeaa9 --- /dev/null +++ b/editor/icons/icon_vector.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_vector2.png b/editor/icons/icon_vector2.png deleted file mode 100644 index f84052cda01..00000000000 Binary files a/editor/icons/icon_vector2.png and /dev/null differ diff --git a/editor/icons/icon_vector2.svg b/editor/icons/icon_vector2.svg new file mode 100644 index 00000000000..ab92e7bb607 --- /dev/null +++ b/editor/icons/icon_vector2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_vehicle_body.png b/editor/icons/icon_vehicle_body.png deleted file mode 100644 index c4042189118..00000000000 Binary files a/editor/icons/icon_vehicle_body.png and /dev/null differ diff --git a/editor/icons/icon_vehicle_body.svg b/editor/icons/icon_vehicle_body.svg new file mode 100644 index 00000000000..6761355d0ef --- /dev/null +++ b/editor/icons/icon_vehicle_body.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_vehicle_wheel.png b/editor/icons/icon_vehicle_wheel.png deleted file mode 100644 index 23299a0425b..00000000000 Binary files a/editor/icons/icon_vehicle_wheel.png and /dev/null differ diff --git a/editor/icons/icon_vehicle_wheel.svg b/editor/icons/icon_vehicle_wheel.svg new file mode 100644 index 00000000000..fcee90e2e23 --- /dev/null +++ b/editor/icons/icon_vehicle_wheel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_video_player.png b/editor/icons/icon_video_player.png deleted file mode 100644 index 0d5dc0ed731..00000000000 Binary files a/editor/icons/icon_video_player.png and /dev/null differ diff --git a/editor/icons/icon_video_player.svg b/editor/icons/icon_video_player.svg new file mode 100644 index 00000000000..cbee054665b --- /dev/null +++ b/editor/icons/icon_video_player.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_video_stream_theora.png b/editor/icons/icon_video_stream_theora.png deleted file mode 100644 index 3f019f9b614..00000000000 Binary files a/editor/icons/icon_video_stream_theora.png and /dev/null differ diff --git a/editor/icons/icon_view.png b/editor/icons/icon_view.png deleted file mode 100644 index c7975ed461f..00000000000 Binary files a/editor/icons/icon_view.png and /dev/null differ diff --git a/editor/icons/icon_viewport.png b/editor/icons/icon_viewport.png deleted file mode 100644 index 8b25ea87642..00000000000 Binary files a/editor/icons/icon_viewport.png and /dev/null differ diff --git a/editor/icons/icon_viewport.svg b/editor/icons/icon_viewport.svg new file mode 100644 index 00000000000..4c3069adc25 --- /dev/null +++ b/editor/icons/icon_viewport.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_viewport_container.png b/editor/icons/icon_viewport_container.png deleted file mode 100644 index c70dee36988..00000000000 Binary files a/editor/icons/icon_viewport_container.png and /dev/null differ diff --git a/editor/icons/icon_viewport_container.svg b/editor/icons/icon_viewport_container.svg new file mode 100644 index 00000000000..28df39af515 --- /dev/null +++ b/editor/icons/icon_viewport_container.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_viewport_sprite.png b/editor/icons/icon_viewport_sprite.png deleted file mode 100644 index 9aefb471d6c..00000000000 Binary files a/editor/icons/icon_viewport_sprite.png and /dev/null differ diff --git a/editor/icons/icon_viewport_sprite.svg b/editor/icons/icon_viewport_sprite.svg new file mode 100644 index 00000000000..2c8c3561026 --- /dev/null +++ b/editor/icons/icon_viewport_sprite.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/icon_viewport_texture.png b/editor/icons/icon_viewport_texture.png deleted file mode 100644 index ae744cc4074..00000000000 Binary files a/editor/icons/icon_viewport_texture.png and /dev/null differ diff --git a/editor/icons/icon_viewport_texture.svg b/editor/icons/icon_viewport_texture.svg new file mode 100644 index 00000000000..57cb08b32c3 --- /dev/null +++ b/editor/icons/icon_viewport_texture.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_visibility_area.png b/editor/icons/icon_visibility_area.png deleted file mode 100644 index f3ca05711bd..00000000000 Binary files a/editor/icons/icon_visibility_area.png and /dev/null differ diff --git a/editor/icons/icon_visibility_enabler.png b/editor/icons/icon_visibility_enabler.png deleted file mode 100644 index 66dffd34837..00000000000 Binary files a/editor/icons/icon_visibility_enabler.png and /dev/null differ diff --git a/editor/icons/icon_visibility_enabler.svg b/editor/icons/icon_visibility_enabler.svg new file mode 100644 index 00000000000..3aa4c6d73f7 --- /dev/null +++ b/editor/icons/icon_visibility_enabler.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_visibility_enabler_2d.png b/editor/icons/icon_visibility_enabler_2d.png deleted file mode 100644 index e198b9785be..00000000000 Binary files a/editor/icons/icon_visibility_enabler_2d.png and /dev/null differ diff --git a/editor/icons/icon_visibility_enabler_2d.svg b/editor/icons/icon_visibility_enabler_2d.svg new file mode 100644 index 00000000000..15b54c0ba08 --- /dev/null +++ b/editor/icons/icon_visibility_enabler_2d.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/editor/icons/icon_visibility_notifier.png b/editor/icons/icon_visibility_notifier.png deleted file mode 100644 index 624122fb4c2..00000000000 Binary files a/editor/icons/icon_visibility_notifier.png and /dev/null differ diff --git a/editor/icons/icon_visibility_notifier.svg b/editor/icons/icon_visibility_notifier.svg new file mode 100644 index 00000000000..807d03869cc --- /dev/null +++ b/editor/icons/icon_visibility_notifier.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/editor/icons/icon_visibility_notifier_2d.png b/editor/icons/icon_visibility_notifier_2d.png deleted file mode 100644 index f904223edff..00000000000 Binary files a/editor/icons/icon_visibility_notifier_2d.png and /dev/null differ diff --git a/editor/icons/icon_visibility_notifier_2d.svg b/editor/icons/icon_visibility_notifier_2d.svg new file mode 100644 index 00000000000..e7eac0c715d --- /dev/null +++ b/editor/icons/icon_visibility_notifier_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_visible.png b/editor/icons/icon_visible.png deleted file mode 100644 index 4e79dd32455..00000000000 Binary files a/editor/icons/icon_visible.png and /dev/null differ diff --git a/editor/icons/icon_visible.svg b/editor/icons/icon_visible.svg new file mode 100644 index 00000000000..faa0eabb03a --- /dev/null +++ b/editor/icons/icon_visible.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_visual_script.png b/editor/icons/icon_visual_script.png deleted file mode 100644 index 355d3c03c39..00000000000 Binary files a/editor/icons/icon_visual_script.png and /dev/null differ diff --git a/editor/icons/icon_visual_script.svg b/editor/icons/icon_visual_script.svg new file mode 100644 index 00000000000..f6475d590e3 --- /dev/null +++ b/editor/icons/icon_visual_script.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_visual_shader_port.png b/editor/icons/icon_visual_shader_port.png deleted file mode 100644 index 27daedbdd00..00000000000 Binary files a/editor/icons/icon_visual_shader_port.png and /dev/null differ diff --git a/editor/icons/icon_visual_shader_port.svg b/editor/icons/icon_visual_shader_port.svg new file mode 100644 index 00000000000..0f5d00dbc4d --- /dev/null +++ b/editor/icons/icon_visual_shader_port.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_volume.png b/editor/icons/icon_volume.png deleted file mode 100644 index 2ce013cb033..00000000000 Binary files a/editor/icons/icon_volume.png and /dev/null differ diff --git a/editor/icons/icon_vslider_bg.png b/editor/icons/icon_vslider_bg.png deleted file mode 100644 index a7e0e785648..00000000000 Binary files a/editor/icons/icon_vslider_bg.png and /dev/null differ diff --git a/editor/icons/icon_vsplit_bg.png b/editor/icons/icon_vsplit_bg.png deleted file mode 100644 index 0c29b1e35c9..00000000000 Binary files a/editor/icons/icon_vsplit_bg.png and /dev/null differ diff --git a/editor/icons/icon_vsplitter.png b/editor/icons/icon_vsplitter.png deleted file mode 100644 index 56fb20bc3ff..00000000000 Binary files a/editor/icons/icon_vsplitter.png and /dev/null differ diff --git a/editor/icons/icon_vu_db.png b/editor/icons/icon_vu_db.png deleted file mode 100644 index 405a929e2a3..00000000000 Binary files a/editor/icons/icon_vu_db.png and /dev/null differ diff --git a/editor/icons/icon_vu_empty.png b/editor/icons/icon_vu_empty.png deleted file mode 100644 index b749e1f2cae..00000000000 Binary files a/editor/icons/icon_vu_empty.png and /dev/null differ diff --git a/editor/icons/icon_vu_empty.svg b/editor/icons/icon_vu_empty.svg new file mode 100644 index 00000000000..76bb913e389 --- /dev/null +++ b/editor/icons/icon_vu_empty.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/editor/icons/icon_vu_full.png b/editor/icons/icon_vu_full.png deleted file mode 100644 index cb2b30d397d..00000000000 Binary files a/editor/icons/icon_vu_full.png and /dev/null differ diff --git a/editor/icons/icon_vu_full.svg b/editor/icons/icon_vu_full.svg new file mode 100644 index 00000000000..bacab2a83cc --- /dev/null +++ b/editor/icons/icon_vu_full.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_wait_no_preview.png b/editor/icons/icon_wait_no_preview.png deleted file mode 100644 index 5d20cd99ece..00000000000 Binary files a/editor/icons/icon_wait_no_preview.png and /dev/null differ diff --git a/editor/icons/icon_wait_preview_1.png b/editor/icons/icon_wait_preview_1.png deleted file mode 100644 index 0aab42e04aa..00000000000 Binary files a/editor/icons/icon_wait_preview_1.png and /dev/null differ diff --git a/editor/icons/icon_wait_preview_2.png b/editor/icons/icon_wait_preview_2.png deleted file mode 100644 index f476b9ce1ff..00000000000 Binary files a/editor/icons/icon_wait_preview_2.png and /dev/null differ diff --git a/editor/icons/icon_wait_preview_3.png b/editor/icons/icon_wait_preview_3.png deleted file mode 100644 index 2775d1ef43c..00000000000 Binary files a/editor/icons/icon_wait_preview_3.png and /dev/null differ diff --git a/editor/icons/icon_wait_preview_4.png b/editor/icons/icon_wait_preview_4.png deleted file mode 100644 index 2eaa86fec93..00000000000 Binary files a/editor/icons/icon_wait_preview_4.png and /dev/null differ diff --git a/editor/icons/icon_wait_preview_5.png b/editor/icons/icon_wait_preview_5.png deleted file mode 100644 index 6590644bc1d..00000000000 Binary files a/editor/icons/icon_wait_preview_5.png and /dev/null differ diff --git a/editor/icons/icon_wait_preview_6.png b/editor/icons/icon_wait_preview_6.png deleted file mode 100644 index 307e4123108..00000000000 Binary files a/editor/icons/icon_wait_preview_6.png and /dev/null differ diff --git a/editor/icons/icon_wait_preview_7.png b/editor/icons/icon_wait_preview_7.png deleted file mode 100644 index b0edc94d93c..00000000000 Binary files a/editor/icons/icon_wait_preview_7.png and /dev/null differ diff --git a/editor/icons/icon_wait_preview_8.png b/editor/icons/icon_wait_preview_8.png deleted file mode 100644 index 67a2f48ec3e..00000000000 Binary files a/editor/icons/icon_wait_preview_8.png and /dev/null differ diff --git a/editor/icons/icon_warning.png b/editor/icons/icon_warning.png deleted file mode 100644 index 45b52542da1..00000000000 Binary files a/editor/icons/icon_warning.png and /dev/null differ diff --git a/editor/icons/icon_warning.svg b/editor/icons/icon_warning.svg new file mode 100644 index 00000000000..455e7b18770 --- /dev/null +++ b/editor/icons/icon_warning.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_window_dialog.png b/editor/icons/icon_window_dialog.png deleted file mode 100644 index 8591b156133..00000000000 Binary files a/editor/icons/icon_window_dialog.png and /dev/null differ diff --git a/editor/icons/icon_window_dialog.svg b/editor/icons/icon_window_dialog.svg new file mode 100644 index 00000000000..2b450dee33c --- /dev/null +++ b/editor/icons/icon_window_dialog.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_world.png b/editor/icons/icon_world.png deleted file mode 100644 index d54b979cad2..00000000000 Binary files a/editor/icons/icon_world.png and /dev/null differ diff --git a/editor/icons/icon_world.svg b/editor/icons/icon_world.svg new file mode 100644 index 00000000000..4ea501e194d --- /dev/null +++ b/editor/icons/icon_world.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_world_2d.png b/editor/icons/icon_world_2d.png deleted file mode 100644 index ebe54262ff2..00000000000 Binary files a/editor/icons/icon_world_2d.png and /dev/null differ diff --git a/editor/icons/icon_world_2d.svg b/editor/icons/icon_world_2d.svg new file mode 100644 index 00000000000..e2b9e627039 --- /dev/null +++ b/editor/icons/icon_world_2d.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_world_environment.png b/editor/icons/icon_world_environment.png deleted file mode 100644 index 230d6601076..00000000000 Binary files a/editor/icons/icon_world_environment.png and /dev/null differ diff --git a/editor/icons/icon_world_environment.svg b/editor/icons/icon_world_environment.svg new file mode 100644 index 00000000000..823c6401be6 --- /dev/null +++ b/editor/icons/icon_world_environment.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_y_sort.png b/editor/icons/icon_y_sort.png deleted file mode 100644 index 585956983cd..00000000000 Binary files a/editor/icons/icon_y_sort.png and /dev/null differ diff --git a/editor/icons/icon_y_sort.svg b/editor/icons/icon_y_sort.svg new file mode 100644 index 00000000000..6ad296ba54d --- /dev/null +++ b/editor/icons/icon_y_sort.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/editor/icons/icon_zoom.png b/editor/icons/icon_zoom.png deleted file mode 100644 index e95cf2bd788..00000000000 Binary files a/editor/icons/icon_zoom.png and /dev/null differ diff --git a/editor/icons/icon_zoom.svg b/editor/icons/icon_zoom.svg new file mode 100644 index 00000000000..2b355574a0e --- /dev/null +++ b/editor/icons/icon_zoom.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_zoom_less.png b/editor/icons/icon_zoom_less.png deleted file mode 100644 index fd8ef9075e4..00000000000 Binary files a/editor/icons/icon_zoom_less.png and /dev/null differ diff --git a/editor/icons/icon_zoom_less.svg b/editor/icons/icon_zoom_less.svg new file mode 100644 index 00000000000..46db3007857 --- /dev/null +++ b/editor/icons/icon_zoom_less.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_zoom_more.png b/editor/icons/icon_zoom_more.png deleted file mode 100644 index 8e818db1ee3..00000000000 Binary files a/editor/icons/icon_zoom_more.png and /dev/null differ diff --git a/editor/icons/icon_zoom_more.svg b/editor/icons/icon_zoom_more.svg new file mode 100644 index 00000000000..3cf2c7fbb18 --- /dev/null +++ b/editor/icons/icon_zoom_more.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/editor/icons/icon_zoom_reset.png b/editor/icons/icon_zoom_reset.png deleted file mode 100644 index fa8a9d197e2..00000000000 Binary files a/editor/icons/icon_zoom_reset.png and /dev/null differ diff --git a/editor/icons/icon_zoom_reset.svg b/editor/icons/icon_zoom_reset.svg new file mode 100644 index 00000000000..053092445a6 --- /dev/null +++ b/editor/icons/icon_zoom_reset.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/editor/icons/source/icon_2_d.svg b/editor/icons/source/icon_2_d.svg deleted file mode 100644 index 54c93a45aa8..00000000000 --- a/editor/icons/source/icon_2_d.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_3_d.svg b/editor/icons/source/icon_3_d.svg deleted file mode 100644 index 3147d14dc1c..00000000000 --- a/editor/icons/source/icon_3_d.svg +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_checked.svg b/editor/icons/source/icon_GUI_checked.svg deleted file mode 100644 index 6d2c03f4c5c..00000000000 --- a/editor/icons/source/icon_GUI_checked.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_dropdown.svg b/editor/icons/source/icon_GUI_dropdown.svg deleted file mode 100644 index 897f63c2689..00000000000 --- a/editor/icons/source/icon_GUI_dropdown.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_hslider_bg.svg b/editor/icons/source/icon_GUI_hslider_bg.svg deleted file mode 100644 index a920bf34ab8..00000000000 --- a/editor/icons/source/icon_GUI_hslider_bg.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_hsplitter.svg b/editor/icons/source/icon_GUI_hsplitter.svg deleted file mode 100644 index 01c893fc560..00000000000 --- a/editor/icons/source/icon_GUI_hsplitter.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_mini_tab_menu.svg b/editor/icons/source/icon_GUI_mini_tab_menu.svg deleted file mode 100644 index 65d71e86a08..00000000000 --- a/editor/icons/source/icon_GUI_mini_tab_menu.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_option_arrow.svg b/editor/icons/source/icon_GUI_option_arrow.svg deleted file mode 100644 index 5cd943e9e3c..00000000000 --- a/editor/icons/source/icon_GUI_option_arrow.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_play_button_group.svg b/editor/icons/source/icon_GUI_play_button_group.svg deleted file mode 100644 index 84bdb00505d..00000000000 --- a/editor/icons/source/icon_GUI_play_button_group.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_progress_bar.svg b/editor/icons/source/icon_GUI_progress_bar.svg deleted file mode 100644 index 1edd33dd856..00000000000 --- a/editor/icons/source/icon_GUI_progress_bar.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_progress_fill.svg b/editor/icons/source/icon_GUI_progress_fill.svg deleted file mode 100644 index cf55c55ab11..00000000000 --- a/editor/icons/source/icon_GUI_progress_fill.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_radio_checked.svg b/editor/icons/source/icon_GUI_radio_checked.svg deleted file mode 100644 index c0dc46448b4..00000000000 --- a/editor/icons/source/icon_GUI_radio_checked.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_radio_unchecked.svg b/editor/icons/source/icon_GUI_radio_unchecked.svg deleted file mode 100644 index d21ba299b69..00000000000 --- a/editor/icons/source/icon_GUI_radio_unchecked.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_scroll_bg.svg b/editor/icons/source/icon_GUI_scroll_bg.svg deleted file mode 100644 index 29604b9e143..00000000000 --- a/editor/icons/source/icon_GUI_scroll_bg.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - diff --git a/editor/icons/source/icon_GUI_scroll_grabber.svg b/editor/icons/source/icon_GUI_scroll_grabber.svg deleted file mode 100644 index b9d2bbbec03..00000000000 --- a/editor/icons/source/icon_GUI_scroll_grabber.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_scroll_grabber_hl.svg b/editor/icons/source/icon_GUI_scroll_grabber_hl.svg deleted file mode 100644 index ce9a66c5bc1..00000000000 --- a/editor/icons/source/icon_GUI_scroll_grabber_hl.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_scroll_grabber_pressed.svg b/editor/icons/source/icon_GUI_scroll_grabber_pressed.svg deleted file mode 100644 index 852e985c4c8..00000000000 --- a/editor/icons/source/icon_GUI_scroll_grabber_pressed.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_slider_grabber.svg b/editor/icons/source/icon_GUI_slider_grabber.svg deleted file mode 100644 index fb6c9d1c5c2..00000000000 --- a/editor/icons/source/icon_GUI_slider_grabber.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_slider_grabber_hl.svg b/editor/icons/source/icon_GUI_slider_grabber_hl.svg deleted file mode 100644 index c7e9018ac3a..00000000000 --- a/editor/icons/source/icon_GUI_slider_grabber_hl.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_spinbox_updown.svg b/editor/icons/source/icon_GUI_spinbox_updown.svg deleted file mode 100644 index e29d7fe0d26..00000000000 --- a/editor/icons/source/icon_GUI_spinbox_updown.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_tab_menu.svg b/editor/icons/source/icon_GUI_tab_menu.svg deleted file mode 100644 index 39e0d1f2614..00000000000 --- a/editor/icons/source/icon_GUI_tab_menu.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_toggle_off.svg b/editor/icons/source/icon_GUI_toggle_off.svg deleted file mode 100644 index f0cf10a653e..00000000000 --- a/editor/icons/source/icon_GUI_toggle_off.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_toggle_on.svg b/editor/icons/source/icon_GUI_toggle_on.svg deleted file mode 100644 index 79715dd7673..00000000000 --- a/editor/icons/source/icon_GUI_toggle_on.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_tree_arrow_down.svg b/editor/icons/source/icon_GUI_tree_arrow_down.svg deleted file mode 100644 index 1dd209720f6..00000000000 --- a/editor/icons/source/icon_GUI_tree_arrow_down.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_tree_arrow_right.svg b/editor/icons/source/icon_GUI_tree_arrow_right.svg deleted file mode 100644 index 43134ba1b1d..00000000000 --- a/editor/icons/source/icon_GUI_tree_arrow_right.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_unchecked.svg b/editor/icons/source/icon_GUI_unchecked.svg deleted file mode 100644 index 053cbe6de53..00000000000 --- a/editor/icons/source/icon_GUI_unchecked.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_vslider_bg.svg b/editor/icons/source/icon_GUI_vslider_bg.svg deleted file mode 100644 index cfa4feeca62..00000000000 --- a/editor/icons/source/icon_GUI_vslider_bg.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_vsplit_bg.svg b/editor/icons/source/icon_GUI_vsplit_bg.svg deleted file mode 100644 index e11940cf53a..00000000000 --- a/editor/icons/source/icon_GUI_vsplit_bg.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_GUI_vsplitter.svg b/editor/icons/source/icon_GUI_vsplitter.svg deleted file mode 100644 index 80f7c2ce125..00000000000 --- a/editor/icons/source/icon_GUI_vsplitter.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_accept_dialog.svg b/editor/icons/source/icon_accept_dialog.svg deleted file mode 100644 index 9f82b30c943..00000000000 --- a/editor/icons/source/icon_accept_dialog.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_add_track.svg b/editor/icons/source/icon_add_track.svg deleted file mode 100644 index d19448efb0f..00000000000 --- a/editor/icons/source/icon_add_track.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_anchor.svg b/editor/icons/source/icon_anchor.svg deleted file mode 100644 index 6b10be040b8..00000000000 --- a/editor/icons/source/icon_anchor.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_animated_sprite.svg b/editor/icons/source/icon_animated_sprite.svg deleted file mode 100644 index 36ccd8bca22..00000000000 --- a/editor/icons/source/icon_animated_sprite.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_animated_sprite_3d.svg b/editor/icons/source/icon_animated_sprite_3d.svg deleted file mode 100644 index f088c9e32d3..00000000000 --- a/editor/icons/source/icon_animated_sprite_3d.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_animation.svg b/editor/icons/source/icon_animation.svg deleted file mode 100644 index 371979345fa..00000000000 --- a/editor/icons/source/icon_animation.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_animation_player.svg b/editor/icons/source/icon_animation_player.svg deleted file mode 100644 index e6500ea249c..00000000000 --- a/editor/icons/source/icon_animation_player.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_animation_tree_player.svg b/editor/icons/source/icon_animation_tree_player.svg deleted file mode 100644 index fa5803489ea..00000000000 --- a/editor/icons/source/icon_animation_tree_player.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_area.svg b/editor/icons/source/icon_area.svg deleted file mode 100644 index d16ad26e239..00000000000 --- a/editor/icons/source/icon_area.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_area_2d.svg b/editor/icons/source/icon_area_2d.svg deleted file mode 100644 index ef7b16dd060..00000000000 --- a/editor/icons/source/icon_area_2d.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_arrow_left.svg b/editor/icons/source/icon_arrow_left.svg deleted file mode 100644 index a9be19b6d41..00000000000 --- a/editor/icons/source/icon_arrow_left.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_arrow_right.svg b/editor/icons/source/icon_arrow_right.svg deleted file mode 100644 index f6cbe3bc198..00000000000 --- a/editor/icons/source/icon_arrow_right.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_arrow_up.svg b/editor/icons/source/icon_arrow_up.svg deleted file mode 100644 index b24a167b8ea..00000000000 --- a/editor/icons/source/icon_arrow_up.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_asset_lib.svg b/editor/icons/source/icon_asset_lib.svg deleted file mode 100644 index db9fcda6d4f..00000000000 --- a/editor/icons/source/icon_asset_lib.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_atlas_texture.svg b/editor/icons/source/icon_atlas_texture.svg deleted file mode 100644 index 10c8b745b66..00000000000 --- a/editor/icons/source/icon_atlas_texture.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_audio_bus_bypass.svg b/editor/icons/source/icon_audio_bus_bypass.svg deleted file mode 100644 index fe517d9ff78..00000000000 --- a/editor/icons/source/icon_audio_bus_bypass.svg +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_audio_bus_layout.svg b/editor/icons/source/icon_audio_bus_layout.svg deleted file mode 100644 index 66dc37ecfc5..00000000000 --- a/editor/icons/source/icon_audio_bus_layout.svg +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_audio_bus_mute.svg b/editor/icons/source/icon_audio_bus_mute.svg deleted file mode 100644 index 55a776dd97d..00000000000 --- a/editor/icons/source/icon_audio_bus_mute.svg +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_audio_bus_solo.svg b/editor/icons/source/icon_audio_bus_solo.svg deleted file mode 100644 index fd06442da1b..00000000000 --- a/editor/icons/source/icon_audio_bus_solo.svg +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_audio_effect_amplify.svg b/editor/icons/source/icon_audio_effect_amplify.svg deleted file mode 100644 index 3c75d717912..00000000000 --- a/editor/icons/source/icon_audio_effect_amplify.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_audio_stream_gibberish.svg b/editor/icons/source/icon_audio_stream_gibberish.svg deleted file mode 100644 index 82b48c7004e..00000000000 --- a/editor/icons/source/icon_audio_stream_gibberish.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_audio_stream_player.svg b/editor/icons/source/icon_audio_stream_player.svg deleted file mode 100644 index 2d9c5f4e6cc..00000000000 --- a/editor/icons/source/icon_audio_stream_player.svg +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_audio_stream_player_2_d.svg b/editor/icons/source/icon_audio_stream_player_2_d.svg deleted file mode 100644 index 39149786c41..00000000000 --- a/editor/icons/source/icon_audio_stream_player_2_d.svg +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_audio_stream_player_3_d.svg b/editor/icons/source/icon_audio_stream_player_3_d.svg deleted file mode 100644 index 1858f8fe330..00000000000 --- a/editor/icons/source/icon_audio_stream_player_3_d.svg +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_audio_stream_sample.svg b/editor/icons/source/icon_audio_stream_sample.svg deleted file mode 100644 index 0724daa3334..00000000000 --- a/editor/icons/source/icon_audio_stream_sample.svg +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_auto_play.svg b/editor/icons/source/icon_auto_play.svg deleted file mode 100644 index d4e1068ebfb..00000000000 --- a/editor/icons/source/icon_auto_play.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_back.svg b/editor/icons/source/icon_back.svg deleted file mode 100644 index dfaf25de01a..00000000000 --- a/editor/icons/source/icon_back.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_back_buffer_copy.svg b/editor/icons/source/icon_back_buffer_copy.svg deleted file mode 100644 index 17d83ed73f3..00000000000 --- a/editor/icons/source/icon_back_buffer_copy.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_bake.svg b/editor/icons/source/icon_bake.svg deleted file mode 100644 index ca07bca3792..00000000000 --- a/editor/icons/source/icon_bake.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_baked_light.svg b/editor/icons/source/icon_baked_light.svg deleted file mode 100644 index e4d435254d2..00000000000 --- a/editor/icons/source/icon_baked_light.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_baked_light_instance.svg b/editor/icons/source/icon_baked_light_instance.svg deleted file mode 100644 index d854378f122..00000000000 --- a/editor/icons/source/icon_baked_light_instance.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_baked_light_sampler.svg b/editor/icons/source/icon_baked_light_sampler.svg deleted file mode 100644 index 2dc7c396217..00000000000 --- a/editor/icons/source/icon_baked_light_sampler.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_bit_map.svg b/editor/icons/source/icon_bit_map.svg deleted file mode 100644 index 5c1ad9139af..00000000000 --- a/editor/icons/source/icon_bit_map.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_bitmap_font.svg b/editor/icons/source/icon_bitmap_font.svg deleted file mode 100644 index 70749923d57..00000000000 --- a/editor/icons/source/icon_bitmap_font.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_blend.svg b/editor/icons/source/icon_blend.svg deleted file mode 100644 index 64d2aeec833..00000000000 --- a/editor/icons/source/icon_blend.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_bone.svg b/editor/icons/source/icon_bone.svg deleted file mode 100644 index c87902a3360..00000000000 --- a/editor/icons/source/icon_bone.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_bone_attachment.svg b/editor/icons/source/icon_bone_attachment.svg deleted file mode 100644 index 5cb85c3c17a..00000000000 --- a/editor/icons/source/icon_bone_attachment.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_bone_track.svg b/editor/icons/source/icon_bone_track.svg deleted file mode 100644 index cdaab7e34a3..00000000000 --- a/editor/icons/source/icon_bone_track.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_bool.svg b/editor/icons/source/icon_bool.svg deleted file mode 100644 index 9f429376fdd..00000000000 --- a/editor/icons/source/icon_bool.svg +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_box_shape.svg b/editor/icons/source/icon_box_shape.svg deleted file mode 100644 index 04aaf16ebc4..00000000000 --- a/editor/icons/source/icon_box_shape.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_bus_vu_db.svg b/editor/icons/source/icon_bus_vu_db.svg deleted file mode 100644 index 813990bb423..00000000000 --- a/editor/icons/source/icon_bus_vu_db.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_bus_vu_empty.svg b/editor/icons/source/icon_bus_vu_empty.svg deleted file mode 100644 index 0755a2695b5..00000000000 --- a/editor/icons/source/icon_bus_vu_empty.svg +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_bus_vu_frozen.svg b/editor/icons/source/icon_bus_vu_frozen.svg deleted file mode 100644 index 40577a1a77e..00000000000 --- a/editor/icons/source/icon_bus_vu_frozen.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_bus_vu_full.svg b/editor/icons/source/icon_bus_vu_full.svg deleted file mode 100644 index 7f2fd22560f..00000000000 --- a/editor/icons/source/icon_bus_vu_full.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_button.svg b/editor/icons/source/icon_button.svg deleted file mode 100644 index f095b169caf..00000000000 --- a/editor/icons/source/icon_button.svg +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_button_group.svg b/editor/icons/source/icon_button_group.svg deleted file mode 100644 index d1433634df7..00000000000 --- a/editor/icons/source/icon_button_group.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_camera.svg b/editor/icons/source/icon_camera.svg deleted file mode 100644 index 55d4aa698de..00000000000 --- a/editor/icons/source/icon_camera.svg +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_camera_2d.svg b/editor/icons/source/icon_camera_2d.svg deleted file mode 100644 index 1be8c0f984e..00000000000 --- a/editor/icons/source/icon_camera_2d.svg +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_canvas_item.svg b/editor/icons/source/icon_canvas_item.svg deleted file mode 100644 index d15a9a71b76..00000000000 --- a/editor/icons/source/icon_canvas_item.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_canvas_item_material.svg b/editor/icons/source/icon_canvas_item_material.svg deleted file mode 100644 index ce8fd4b7def..00000000000 --- a/editor/icons/source/icon_canvas_item_material.svg +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_canvas_item_shader.svg b/editor/icons/source/icon_canvas_item_shader.svg deleted file mode 100644 index 6d1d7e6bb17..00000000000 --- a/editor/icons/source/icon_canvas_item_shader.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_canvas_item_shader_graph.svg b/editor/icons/source/icon_canvas_item_shader_graph.svg deleted file mode 100644 index 84575ad3880..00000000000 --- a/editor/icons/source/icon_canvas_item_shader_graph.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_canvas_layer.svg b/editor/icons/source/icon_canvas_layer.svg deleted file mode 100644 index 794d832eeab..00000000000 --- a/editor/icons/source/icon_canvas_layer.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_canvas_modulate.svg b/editor/icons/source/icon_canvas_modulate.svg deleted file mode 100644 index 8f8bd55f82f..00000000000 --- a/editor/icons/source/icon_canvas_modulate.svg +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_capsule_mesh.svg b/editor/icons/source/icon_capsule_mesh.svg deleted file mode 100644 index 38975b3d25d..00000000000 --- a/editor/icons/source/icon_capsule_mesh.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_capsule_shape.svg b/editor/icons/source/icon_capsule_shape.svg deleted file mode 100644 index dcc6e8c00f8..00000000000 --- a/editor/icons/source/icon_capsule_shape.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_capsule_shape_2d.svg b/editor/icons/source/icon_capsule_shape_2d.svg deleted file mode 100644 index 13c66483683..00000000000 --- a/editor/icons/source/icon_capsule_shape_2d.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_center_container.svg b/editor/icons/source/icon_center_container.svg deleted file mode 100644 index 31262f8494f..00000000000 --- a/editor/icons/source/icon_center_container.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_check_box.svg b/editor/icons/source/icon_check_box.svg deleted file mode 100644 index 1068b424bde..00000000000 --- a/editor/icons/source/icon_check_box.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_check_button.svg b/editor/icons/source/icon_check_button.svg deleted file mode 100644 index 1dddc7bf43b..00000000000 --- a/editor/icons/source/icon_check_button.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_circle_shape_2d.svg b/editor/icons/source/icon_circle_shape_2d.svg deleted file mode 100644 index 56ac5386723..00000000000 --- a/editor/icons/source/icon_circle_shape_2d.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_class_list.svg b/editor/icons/source/icon_class_list.svg deleted file mode 100644 index 326174e5666..00000000000 --- a/editor/icons/source/icon_class_list.svg +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_close.svg b/editor/icons/source/icon_close.svg deleted file mode 100644 index 65b71ae8606..00000000000 --- a/editor/icons/source/icon_close.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_collapse.svg b/editor/icons/source/icon_collapse.svg deleted file mode 100644 index a1c55e92de9..00000000000 --- a/editor/icons/source/icon_collapse.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_collision_2d.svg b/editor/icons/source/icon_collision_2d.svg deleted file mode 100644 index 29905795bd7..00000000000 --- a/editor/icons/source/icon_collision_2d.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_collision_polygon.svg b/editor/icons/source/icon_collision_polygon.svg deleted file mode 100644 index 41f20abb5ff..00000000000 --- a/editor/icons/source/icon_collision_polygon.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_collision_shape.svg b/editor/icons/source/icon_collision_shape.svg deleted file mode 100644 index 066e3bc0fd1..00000000000 --- a/editor/icons/source/icon_collision_shape.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_collision_shape_2d.svg b/editor/icons/source/icon_collision_shape_2d.svg deleted file mode 100644 index e0a750c946b..00000000000 --- a/editor/icons/source/icon_collision_shape_2d.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_color.svg b/editor/icons/source/icon_color.svg deleted file mode 100644 index c46f64b8ed7..00000000000 --- a/editor/icons/source/icon_color.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_color_pick.svg b/editor/icons/source/icon_color_pick.svg deleted file mode 100644 index bbb05fc6b63..00000000000 --- a/editor/icons/source/icon_color_pick.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_color_picker.svg b/editor/icons/source/icon_color_picker.svg deleted file mode 100644 index 0efd276c507..00000000000 --- a/editor/icons/source/icon_color_picker.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_color_picker_button.svg b/editor/icons/source/icon_color_picker_button.svg deleted file mode 100644 index 4e4fb8cc1bd..00000000000 --- a/editor/icons/source/icon_color_picker_button.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_color_ramp.svg b/editor/icons/source/icon_color_ramp.svg deleted file mode 100644 index ff23cdba8de..00000000000 --- a/editor/icons/source/icon_color_ramp.svg +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_color_rect.svg b/editor/icons/source/icon_color_rect.svg deleted file mode 100644 index f352c5552ab..00000000000 --- a/editor/icons/source/icon_color_rect.svg +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_concave_polygon_shape.svg b/editor/icons/source/icon_concave_polygon_shape.svg deleted file mode 100644 index b0e0fe63ce3..00000000000 --- a/editor/icons/source/icon_concave_polygon_shape.svg +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_concave_polygon_shape_2d.svg b/editor/icons/source/icon_concave_polygon_shape_2d.svg deleted file mode 100644 index 624105e5a8a..00000000000 --- a/editor/icons/source/icon_concave_polygon_shape_2d.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_cone_twist_joint.svg b/editor/icons/source/icon_cone_twist_joint.svg deleted file mode 100644 index 4799deb1d5b..00000000000 --- a/editor/icons/source/icon_cone_twist_joint.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_confirmation_dialog.svg b/editor/icons/source/icon_confirmation_dialog.svg deleted file mode 100644 index 52cdf7618e6..00000000000 --- a/editor/icons/source/icon_confirmation_dialog.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_connect.svg b/editor/icons/source/icon_connect.svg deleted file mode 100644 index 15c8b481a1e..00000000000 --- a/editor/icons/source/icon_connect.svg +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_connection_and_groups.svg b/editor/icons/source/icon_connection_and_groups.svg deleted file mode 100644 index 5468312b4b8..00000000000 --- a/editor/icons/source/icon_connection_and_groups.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_container.svg b/editor/icons/source/icon_container.svg deleted file mode 100644 index 2d39efafeec..00000000000 --- a/editor/icons/source/icon_container.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_control.svg b/editor/icons/source/icon_control.svg deleted file mode 100644 index 675a9f5c432..00000000000 --- a/editor/icons/source/icon_control.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_bottom_center.svg b/editor/icons/source/icon_control_align_bottom_center.svg deleted file mode 100644 index d6c660bb2db..00000000000 --- a/editor/icons/source/icon_control_align_bottom_center.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_bottom_left.svg b/editor/icons/source/icon_control_align_bottom_left.svg deleted file mode 100644 index 7a234b10adf..00000000000 --- a/editor/icons/source/icon_control_align_bottom_left.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_bottom_right.svg b/editor/icons/source/icon_control_align_bottom_right.svg deleted file mode 100644 index a4ba9a552a8..00000000000 --- a/editor/icons/source/icon_control_align_bottom_right.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_bottom_wide.svg b/editor/icons/source/icon_control_align_bottom_wide.svg deleted file mode 100644 index 93352dd3f5e..00000000000 --- a/editor/icons/source/icon_control_align_bottom_wide.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_center.svg b/editor/icons/source/icon_control_align_center.svg deleted file mode 100644 index 0c34d13defa..00000000000 --- a/editor/icons/source/icon_control_align_center.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_center_left.svg b/editor/icons/source/icon_control_align_center_left.svg deleted file mode 100644 index ea62c9457d5..00000000000 --- a/editor/icons/source/icon_control_align_center_left.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_center_right.svg b/editor/icons/source/icon_control_align_center_right.svg deleted file mode 100644 index 3212ce85382..00000000000 --- a/editor/icons/source/icon_control_align_center_right.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_left_center.svg b/editor/icons/source/icon_control_align_left_center.svg deleted file mode 100644 index 716b6a2fd00..00000000000 --- a/editor/icons/source/icon_control_align_left_center.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_left_wide.svg b/editor/icons/source/icon_control_align_left_wide.svg deleted file mode 100644 index 7092c785081..00000000000 --- a/editor/icons/source/icon_control_align_left_wide.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_right_center.svg b/editor/icons/source/icon_control_align_right_center.svg deleted file mode 100644 index 7e7e4f2b23c..00000000000 --- a/editor/icons/source/icon_control_align_right_center.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_right_wide.svg b/editor/icons/source/icon_control_align_right_wide.svg deleted file mode 100644 index ef2d105bd8c..00000000000 --- a/editor/icons/source/icon_control_align_right_wide.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_top_center.svg b/editor/icons/source/icon_control_align_top_center.svg deleted file mode 100644 index a5b60846f47..00000000000 --- a/editor/icons/source/icon_control_align_top_center.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_top_left.svg b/editor/icons/source/icon_control_align_top_left.svg deleted file mode 100644 index 9f4631cf31c..00000000000 --- a/editor/icons/source/icon_control_align_top_left.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_top_right.svg b/editor/icons/source/icon_control_align_top_right.svg deleted file mode 100644 index d968ba3d097..00000000000 --- a/editor/icons/source/icon_control_align_top_right.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_top_wide.svg b/editor/icons/source/icon_control_align_top_wide.svg deleted file mode 100644 index 886ef60fe08..00000000000 --- a/editor/icons/source/icon_control_align_top_wide.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_align_wide.svg b/editor/icons/source/icon_control_align_wide.svg deleted file mode 100644 index 3f58ed93b62..00000000000 --- a/editor/icons/source/icon_control_align_wide.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_hcenter_wide.svg b/editor/icons/source/icon_control_hcenter_wide.svg deleted file mode 100644 index 3aafa0340e7..00000000000 --- a/editor/icons/source/icon_control_hcenter_wide.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_control_vcenter_wide.svg b/editor/icons/source/icon_control_vcenter_wide.svg deleted file mode 100644 index 96fd44f3c84..00000000000 --- a/editor/icons/source/icon_control_vcenter_wide.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_convex_polygon_shape.svg b/editor/icons/source/icon_convex_polygon_shape.svg deleted file mode 100644 index b867a58f6fe..00000000000 --- a/editor/icons/source/icon_convex_polygon_shape.svg +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_convex_polygon_shape_2d.svg b/editor/icons/source/icon_convex_polygon_shape_2d.svg deleted file mode 100644 index 3b55df7fba7..00000000000 --- a/editor/icons/source/icon_convex_polygon_shape_2d.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_copy_node_path.svg b/editor/icons/source/icon_copy_node_path.svg deleted file mode 100644 index abc93eb0039..00000000000 --- a/editor/icons/source/icon_copy_node_path.svg +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_create_new_scene_from.svg b/editor/icons/source/icon_create_new_scene_from.svg deleted file mode 100644 index 529553bbd3b..00000000000 --- a/editor/icons/source/icon_create_new_scene_from.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_cube_map.svg b/editor/icons/source/icon_cube_map.svg deleted file mode 100644 index 4fd86b12339..00000000000 --- a/editor/icons/source/icon_cube_map.svg +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_cube_mesh.svg b/editor/icons/source/icon_cube_mesh.svg deleted file mode 100644 index 1506b3e434f..00000000000 --- a/editor/icons/source/icon_cube_mesh.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_curve.svg b/editor/icons/source/icon_curve.svg deleted file mode 100644 index a58e08d950d..00000000000 --- a/editor/icons/source/icon_curve.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_curve_2d.svg b/editor/icons/source/icon_curve_2d.svg deleted file mode 100644 index 34719e37de3..00000000000 --- a/editor/icons/source/icon_curve_2d.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_curve_3d.svg b/editor/icons/source/icon_curve_3d.svg deleted file mode 100644 index 66034968b26..00000000000 --- a/editor/icons/source/icon_curve_3d.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_curve_close.svg b/editor/icons/source/icon_curve_close.svg deleted file mode 100644 index 15909df7c8a..00000000000 --- a/editor/icons/source/icon_curve_close.svg +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_curve_constant.svg b/editor/icons/source/icon_curve_constant.svg deleted file mode 100644 index 6d9a7dc959d..00000000000 --- a/editor/icons/source/icon_curve_constant.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_curve_create.svg b/editor/icons/source/icon_curve_create.svg deleted file mode 100644 index 8ab578e9a07..00000000000 --- a/editor/icons/source/icon_curve_create.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_curve_curve.svg b/editor/icons/source/icon_curve_curve.svg deleted file mode 100644 index e3b6b64a4c9..00000000000 --- a/editor/icons/source/icon_curve_curve.svg +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_curve_delete.svg b/editor/icons/source/icon_curve_delete.svg deleted file mode 100644 index f40dd1eeb13..00000000000 --- a/editor/icons/source/icon_curve_delete.svg +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_curve_edit.svg b/editor/icons/source/icon_curve_edit.svg deleted file mode 100644 index f695e96b8cd..00000000000 --- a/editor/icons/source/icon_curve_edit.svg +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_curve_in.svg b/editor/icons/source/icon_curve_in.svg deleted file mode 100644 index 9dc033aa958..00000000000 --- a/editor/icons/source/icon_curve_in.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_curve_in_out.svg b/editor/icons/source/icon_curve_in_out.svg deleted file mode 100644 index c68f9064234..00000000000 --- a/editor/icons/source/icon_curve_in_out.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_curve_linear.svg b/editor/icons/source/icon_curve_linear.svg deleted file mode 100644 index ae7a889a71c..00000000000 --- a/editor/icons/source/icon_curve_linear.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_curve_out.svg b/editor/icons/source/icon_curve_out.svg deleted file mode 100644 index 080aa755dc2..00000000000 --- a/editor/icons/source/icon_curve_out.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_curve_out_in.svg b/editor/icons/source/icon_curve_out_in.svg deleted file mode 100644 index d2b4d06e5f4..00000000000 --- a/editor/icons/source/icon_curve_out_in.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_curve_texture.svg b/editor/icons/source/icon_curve_texture.svg deleted file mode 100644 index b1cb4566082..00000000000 --- a/editor/icons/source/icon_curve_texture.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_cylinder_mesh.svg b/editor/icons/source/icon_cylinder_mesh.svg deleted file mode 100644 index 26003365bcb..00000000000 --- a/editor/icons/source/icon_cylinder_mesh.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_damped_spring_joint_2d.svg b/editor/icons/source/icon_damped_spring_joint_2d.svg deleted file mode 100644 index bf12810a6cc..00000000000 --- a/editor/icons/source/icon_damped_spring_joint_2d.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_debug.svg b/editor/icons/source/icon_debug.svg deleted file mode 100644 index 25ca0d6a11c..00000000000 --- a/editor/icons/source/icon_debug.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_debug_continue.svg b/editor/icons/source/icon_debug_continue.svg deleted file mode 100644 index 5d9ccd5a7e5..00000000000 --- a/editor/icons/source/icon_debug_continue.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_debug_next.svg b/editor/icons/source/icon_debug_next.svg deleted file mode 100644 index 4dd9bb8c4b6..00000000000 --- a/editor/icons/source/icon_debug_next.svg +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_debug_step.svg b/editor/icons/source/icon_debug_step.svg deleted file mode 100644 index 20d11f8710c..00000000000 --- a/editor/icons/source/icon_debug_step.svg +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_dependency_changed.svg b/editor/icons/source/icon_dependency_changed.svg deleted file mode 100644 index bbcd3f0c0a0..00000000000 --- a/editor/icons/source/icon_dependency_changed.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_dependency_changed_hl.svg b/editor/icons/source/icon_dependency_changed_hl.svg deleted file mode 100644 index 54a37695ef6..00000000000 --- a/editor/icons/source/icon_dependency_changed_hl.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_dependency_local_changed.svg b/editor/icons/source/icon_dependency_local_changed.svg deleted file mode 100644 index 799d69c4e0d..00000000000 --- a/editor/icons/source/icon_dependency_local_changed.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_dependency_local_changed_hl.svg b/editor/icons/source/icon_dependency_local_changed_hl.svg deleted file mode 100644 index 67c04c312ac..00000000000 --- a/editor/icons/source/icon_dependency_local_changed_hl.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_dependency_ok.svg b/editor/icons/source/icon_dependency_ok.svg deleted file mode 100644 index 76d7f540651..00000000000 --- a/editor/icons/source/icon_dependency_ok.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_dependency_ok_hl.svg b/editor/icons/source/icon_dependency_ok_hl.svg deleted file mode 100644 index 190458c532b..00000000000 --- a/editor/icons/source/icon_dependency_ok_hl.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_directional_light.svg b/editor/icons/source/icon_directional_light.svg deleted file mode 100644 index dbec7550392..00000000000 --- a/editor/icons/source/icon_directional_light.svg +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_distraction_free.svg b/editor/icons/source/icon_distraction_free.svg deleted file mode 100644 index 4ae48b2fb63..00000000000 --- a/editor/icons/source/icon_distraction_free.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_duplicate.svg b/editor/icons/source/icon_duplicate.svg deleted file mode 100644 index b1d5544fc06..00000000000 --- a/editor/icons/source/icon_duplicate.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_dynamic_font.svg b/editor/icons/source/icon_dynamic_font.svg deleted file mode 100644 index a40c0e34084..00000000000 --- a/editor/icons/source/icon_dynamic_font.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_dynamic_font_data.svg b/editor/icons/source/icon_dynamic_font_data.svg deleted file mode 100644 index 9f06172fefe..00000000000 --- a/editor/icons/source/icon_dynamic_font_data.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_edit.svg b/editor/icons/source/icon_edit.svg deleted file mode 100644 index 6da05a6603e..00000000000 --- a/editor/icons/source/icon_edit.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_edit_key.svg b/editor/icons/source/icon_edit_key.svg deleted file mode 100644 index 46795bef352..00000000000 --- a/editor/icons/source/icon_edit_key.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_edit_pivot.svg b/editor/icons/source/icon_edit_pivot.svg deleted file mode 100644 index 8ae55ad8b72..00000000000 --- a/editor/icons/source/icon_edit_pivot.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_edit_resource.svg b/editor/icons/source/icon_edit_resource.svg deleted file mode 100644 index 7f6516eb58b..00000000000 --- a/editor/icons/source/icon_edit_resource.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_editor_3d_handle.svg b/editor/icons/source/icon_editor_3d_handle.svg deleted file mode 100644 index 255d1801a91..00000000000 --- a/editor/icons/source/icon_editor_3d_handle.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_editor_control_anchor.svg b/editor/icons/source/icon_editor_control_anchor.svg deleted file mode 100644 index 473b69d0600..00000000000 --- a/editor/icons/source/icon_editor_control_anchor.svg +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_editor_handle.svg b/editor/icons/source/icon_editor_handle.svg deleted file mode 100644 index 17ed2a61e71..00000000000 --- a/editor/icons/source/icon_editor_handle.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_editor_pivot.svg b/editor/icons/source/icon_editor_pivot.svg deleted file mode 100644 index 8ce7d489703..00000000000 --- a/editor/icons/source/icon_editor_pivot.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_editor_plugin.svg b/editor/icons/source/icon_editor_plugin.svg deleted file mode 100644 index b9460de6834..00000000000 --- a/editor/icons/source/icon_editor_plugin.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_environment.svg b/editor/icons/source/icon_environment.svg deleted file mode 100644 index 96d0f7e29cd..00000000000 --- a/editor/icons/source/icon_environment.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_error.svg b/editor/icons/source/icon_error.svg deleted file mode 100644 index 013f1c7ba9b..00000000000 --- a/editor/icons/source/icon_error.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_error_sign.svg b/editor/icons/source/icon_error_sign.svg deleted file mode 100644 index 01c1dbb4d55..00000000000 --- a/editor/icons/source/icon_error_sign.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_event_player.svg b/editor/icons/source/icon_event_player.svg deleted file mode 100644 index 3f5f7da693a..00000000000 --- a/editor/icons/source/icon_event_player.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_favorites.svg b/editor/icons/source/icon_favorites.svg deleted file mode 100644 index 12d4b568979..00000000000 --- a/editor/icons/source/icon_favorites.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_file_big.svg b/editor/icons/source/icon_file_big.svg deleted file mode 100644 index 084247937be..00000000000 --- a/editor/icons/source/icon_file_big.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_file_dialog.svg b/editor/icons/source/icon_file_dialog.svg deleted file mode 100644 index a3af269bee3..00000000000 --- a/editor/icons/source/icon_file_dialog.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_file_list.svg b/editor/icons/source/icon_file_list.svg deleted file mode 100644 index 82dad29aac8..00000000000 --- a/editor/icons/source/icon_file_list.svg +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_file_server.svg b/editor/icons/source/icon_file_server.svg deleted file mode 100644 index 1e1f9b6e429..00000000000 --- a/editor/icons/source/icon_file_server.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_file_server_active.svg b/editor/icons/source/icon_file_server_active.svg deleted file mode 100644 index f01ba578da5..00000000000 --- a/editor/icons/source/icon_file_server_active.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_file_thumbnail.svg b/editor/icons/source/icon_file_thumbnail.svg deleted file mode 100644 index 48d90dd3c63..00000000000 --- a/editor/icons/source/icon_file_thumbnail.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_fixed_material.svg b/editor/icons/source/icon_fixed_material.svg deleted file mode 100644 index 5be74f490d5..00000000000 --- a/editor/icons/source/icon_fixed_material.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_fixed_spatial_material.svg b/editor/icons/source/icon_fixed_spatial_material.svg deleted file mode 100644 index 7ae0f93ffc9..00000000000 --- a/editor/icons/source/icon_fixed_spatial_material.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_folder.svg b/editor/icons/source/icon_folder.svg deleted file mode 100644 index ca16a5737f4..00000000000 --- a/editor/icons/source/icon_folder.svg +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_folder_big.svg b/editor/icons/source/icon_folder_big.svg deleted file mode 100644 index 818eaa2ba33..00000000000 --- a/editor/icons/source/icon_folder_big.svg +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_font.svg b/editor/icons/source/icon_font.svg deleted file mode 100644 index 36567fe10ca..00000000000 --- a/editor/icons/source/icon_font.svg +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_forward.svg b/editor/icons/source/icon_forward.svg deleted file mode 100644 index 392e2bda8ee..00000000000 --- a/editor/icons/source/icon_forward.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_g_d_native_library.svg b/editor/icons/source/icon_g_d_native_library.svg deleted file mode 100644 index 9eae07c69b8..00000000000 --- a/editor/icons/source/icon_g_d_native_library.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_g_d_script.svg b/editor/icons/source/icon_g_d_script.svg deleted file mode 100644 index f2b8cd9343d..00000000000 --- a/editor/icons/source/icon_g_d_script.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_g_i_probe.svg b/editor/icons/source/icon_g_i_probe.svg deleted file mode 100644 index d803a5f63d9..00000000000 --- a/editor/icons/source/icon_g_i_probe.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_g_i_probe_data.svg b/editor/icons/source/icon_g_i_probe_data.svg deleted file mode 100644 index 96fa62723c1..00000000000 --- a/editor/icons/source/icon_g_i_probe_data.svg +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_generic_6_d_o_f_joint.svg b/editor/icons/source/icon_generic_6_d_o_f_joint.svg deleted file mode 100644 index 485040c6dc4..00000000000 --- a/editor/icons/source/icon_generic_6_d_o_f_joint.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_gizmo_directional_light.svg b/editor/icons/source/icon_gizmo_directional_light.svg deleted file mode 100644 index 65202877a08..00000000000 --- a/editor/icons/source/icon_gizmo_directional_light.svg +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_gizmo_light.svg b/editor/icons/source/icon_gizmo_light.svg deleted file mode 100644 index c42d6e1f762..00000000000 --- a/editor/icons/source/icon_gizmo_light.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_gizmo_listener.svg b/editor/icons/source/icon_gizmo_listener.svg deleted file mode 100644 index 3667cbc69be..00000000000 --- a/editor/icons/source/icon_gizmo_listener.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_gizmo_spatial_sample_player.svg b/editor/icons/source/icon_gizmo_spatial_sample_player.svg deleted file mode 100644 index a7340952680..00000000000 --- a/editor/icons/source/icon_gizmo_spatial_sample_player.svg +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_gizmo_spatial_stream_player.svg b/editor/icons/source/icon_gizmo_spatial_stream_player.svg deleted file mode 100644 index c3336412497..00000000000 --- a/editor/icons/source/icon_gizmo_spatial_stream_player.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_godot.svg b/editor/icons/source/icon_godot.svg deleted file mode 100644 index 8f90c4c91ad..00000000000 --- a/editor/icons/source/icon_godot.svg +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_gradient.svg b/editor/icons/source/icon_gradient.svg deleted file mode 100644 index 4ce1b3232f4..00000000000 --- a/editor/icons/source/icon_gradient.svg +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_gradient_texture.svg b/editor/icons/source/icon_gradient_texture.svg deleted file mode 100644 index efc48bb778c..00000000000 --- a/editor/icons/source/icon_gradient_texture.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_comment.svg b/editor/icons/source/icon_graph_comment.svg deleted file mode 100644 index 5ad8fc8253e..00000000000 --- a/editor/icons/source/icon_graph_comment.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_cube_uniform.svg b/editor/icons/source/icon_graph_cube_uniform.svg deleted file mode 100644 index 63774a7431e..00000000000 --- a/editor/icons/source/icon_graph_cube_uniform.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_curve_map.svg b/editor/icons/source/icon_graph_curve_map.svg deleted file mode 100644 index 6c3594cb1b7..00000000000 --- a/editor/icons/source/icon_graph_curve_map.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_default_texture.svg b/editor/icons/source/icon_graph_default_texture.svg deleted file mode 100644 index 8d1c78ddd71..00000000000 --- a/editor/icons/source/icon_graph_default_texture.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_edit.svg b/editor/icons/source/icon_graph_edit.svg deleted file mode 100644 index 30d3ad96f6e..00000000000 --- a/editor/icons/source/icon_graph_edit.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_input.svg b/editor/icons/source/icon_graph_input.svg deleted file mode 100644 index 265fb7279e1..00000000000 --- a/editor/icons/source/icon_graph_input.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_node.svg b/editor/icons/source/icon_graph_node.svg deleted file mode 100644 index 078b0ffe9e7..00000000000 --- a/editor/icons/source/icon_graph_node.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_rgb.svg b/editor/icons/source/icon_graph_rgb.svg deleted file mode 100644 index a00e97a1049..00000000000 --- a/editor/icons/source/icon_graph_rgb.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_rgb_op.svg b/editor/icons/source/icon_graph_rgb_op.svg deleted file mode 100644 index fdd3d3a9f43..00000000000 --- a/editor/icons/source/icon_graph_rgb_op.svg +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_rgb_uniform.svg b/editor/icons/source/icon_graph_rgb_uniform.svg deleted file mode 100644 index 359c86d61a4..00000000000 --- a/editor/icons/source/icon_graph_rgb_uniform.svg +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_scalar.svg b/editor/icons/source/icon_graph_scalar.svg deleted file mode 100644 index 7a75ddba78d..00000000000 --- a/editor/icons/source/icon_graph_scalar.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_scalar_interp.svg b/editor/icons/source/icon_graph_scalar_interp.svg deleted file mode 100644 index 47b619d608a..00000000000 --- a/editor/icons/source/icon_graph_scalar_interp.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_scalar_op.svg b/editor/icons/source/icon_graph_scalar_op.svg deleted file mode 100644 index fcb54f9aa0e..00000000000 --- a/editor/icons/source/icon_graph_scalar_op.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_scalar_uniform.svg b/editor/icons/source/icon_graph_scalar_uniform.svg deleted file mode 100644 index e5e5edea9c6..00000000000 --- a/editor/icons/source/icon_graph_scalar_uniform.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_scalars_to_vec.svg b/editor/icons/source/icon_graph_scalars_to_vec.svg deleted file mode 100644 index d951a418320..00000000000 --- a/editor/icons/source/icon_graph_scalars_to_vec.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_texscreen.svg b/editor/icons/source/icon_graph_texscreen.svg deleted file mode 100644 index 89d000d7cbf..00000000000 --- a/editor/icons/source/icon_graph_texscreen.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_texture_uniform.svg b/editor/icons/source/icon_graph_texture_uniform.svg deleted file mode 100644 index 440f83642c1..00000000000 --- a/editor/icons/source/icon_graph_texture_uniform.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_time.svg b/editor/icons/source/icon_graph_time.svg deleted file mode 100644 index 77b80e920bb..00000000000 --- a/editor/icons/source/icon_graph_time.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_vec_dp.svg b/editor/icons/source/icon_graph_vec_dp.svg deleted file mode 100644 index 8994d8ce59e..00000000000 --- a/editor/icons/source/icon_graph_vec_dp.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_vec_interp.svg b/editor/icons/source/icon_graph_vec_interp.svg deleted file mode 100644 index 885b342a547..00000000000 --- a/editor/icons/source/icon_graph_vec_interp.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_vec_length.svg b/editor/icons/source/icon_graph_vec_length.svg deleted file mode 100644 index aa01e3ef2a7..00000000000 --- a/editor/icons/source/icon_graph_vec_length.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_vec_op.svg b/editor/icons/source/icon_graph_vec_op.svg deleted file mode 100644 index da7540ce860..00000000000 --- a/editor/icons/source/icon_graph_vec_op.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_vec_scalar_op.svg b/editor/icons/source/icon_graph_vec_scalar_op.svg deleted file mode 100644 index aeb2626120d..00000000000 --- a/editor/icons/source/icon_graph_vec_scalar_op.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_vec_to_scalars.svg b/editor/icons/source/icon_graph_vec_to_scalars.svg deleted file mode 100644 index 8bddf89b2dd..00000000000 --- a/editor/icons/source/icon_graph_vec_to_scalars.svg +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_vecs_to_xform.svg b/editor/icons/source/icon_graph_vecs_to_xform.svg deleted file mode 100644 index 13217661171..00000000000 --- a/editor/icons/source/icon_graph_vecs_to_xform.svg +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_vector.svg b/editor/icons/source/icon_graph_vector.svg deleted file mode 100644 index e7f6bd927f2..00000000000 --- a/editor/icons/source/icon_graph_vector.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_vector_uniform.svg b/editor/icons/source/icon_graph_vector_uniform.svg deleted file mode 100644 index 2310938af5a..00000000000 --- a/editor/icons/source/icon_graph_vector_uniform.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_xform.svg b/editor/icons/source/icon_graph_xform.svg deleted file mode 100644 index c9b027ee2d9..00000000000 --- a/editor/icons/source/icon_graph_xform.svg +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_xform_mult.svg b/editor/icons/source/icon_graph_xform_mult.svg deleted file mode 100644 index 71fca83f3d6..00000000000 --- a/editor/icons/source/icon_graph_xform_mult.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_xform_scalar_func.svg b/editor/icons/source/icon_graph_xform_scalar_func.svg deleted file mode 100644 index 45fd97a671d..00000000000 --- a/editor/icons/source/icon_graph_xform_scalar_func.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_xform_to_vecs.svg b/editor/icons/source/icon_graph_xform_to_vecs.svg deleted file mode 100644 index 45754c8a44b..00000000000 --- a/editor/icons/source/icon_graph_xform_to_vecs.svg +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_xform_uniform.svg b/editor/icons/source/icon_graph_xform_uniform.svg deleted file mode 100644 index f1cdcd408c3..00000000000 --- a/editor/icons/source/icon_graph_xform_uniform.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_graph_xform_vec_func.svg b/editor/icons/source/icon_graph_xform_vec_func.svg deleted file mode 100644 index 0d141bc646d..00000000000 --- a/editor/icons/source/icon_graph_xform_vec_func.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_xform_vec_imult.svg b/editor/icons/source/icon_graph_xform_vec_imult.svg deleted file mode 100644 index 74dc1ba7e30..00000000000 --- a/editor/icons/source/icon_graph_xform_vec_imult.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_graph_xform_vec_mult.svg b/editor/icons/source/icon_graph_xform_vec_mult.svg deleted file mode 100644 index c3e59abd46d..00000000000 --- a/editor/icons/source/icon_graph_xform_vec_mult.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_grid.svg b/editor/icons/source/icon_grid.svg deleted file mode 100644 index 2d9288de146..00000000000 --- a/editor/icons/source/icon_grid.svg +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_grid_container.svg b/editor/icons/source/icon_grid_container.svg deleted file mode 100644 index a27578f1962..00000000000 --- a/editor/icons/source/icon_grid_container.svg +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_grid_map.svg b/editor/icons/source/icon_grid_map.svg deleted file mode 100644 index 83b831abd4b..00000000000 --- a/editor/icons/source/icon_grid_map.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_groove_joint_2d.svg b/editor/icons/source/icon_groove_joint_2d.svg deleted file mode 100644 index d05bebef484..00000000000 --- a/editor/icons/source/icon_groove_joint_2d.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_group.svg b/editor/icons/source/icon_group.svg deleted file mode 100644 index a0a2f02af5d..00000000000 --- a/editor/icons/source/icon_group.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_groups.svg b/editor/icons/source/icon_groups.svg deleted file mode 100644 index 00249597a4c..00000000000 --- a/editor/icons/source/icon_groups.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_gui_close_dark.svg b/editor/icons/source/icon_gui_close_dark.svg deleted file mode 100644 index ccb42397840..00000000000 --- a/editor/icons/source/icon_gui_close_dark.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_gui_close_light.svg b/editor/icons/source/icon_gui_close_light.svg deleted file mode 100644 index 90d811965b9..00000000000 --- a/editor/icons/source/icon_gui_close_light.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_h_box_container.svg b/editor/icons/source/icon_h_box_container.svg deleted file mode 100644 index f180dde93a6..00000000000 --- a/editor/icons/source/icon_h_box_container.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_h_button_array.svg b/editor/icons/source/icon_h_button_array.svg deleted file mode 100644 index 0dad9ee8b87..00000000000 --- a/editor/icons/source/icon_h_button_array.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_h_scroll_bar.svg b/editor/icons/source/icon_h_scroll_bar.svg deleted file mode 100644 index fbcee056b3f..00000000000 --- a/editor/icons/source/icon_h_scroll_bar.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_h_separator.svg b/editor/icons/source/icon_h_separator.svg deleted file mode 100644 index 461299731d3..00000000000 --- a/editor/icons/source/icon_h_separator.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_h_slider.svg b/editor/icons/source/icon_h_slider.svg deleted file mode 100644 index b3e8a956daf..00000000000 --- a/editor/icons/source/icon_h_slider.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_h_split_container.svg b/editor/icons/source/icon_h_split_container.svg deleted file mode 100644 index 9ca2df0ff1f..00000000000 --- a/editor/icons/source/icon_h_split_container.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_h_t_t_p_request.svg b/editor/icons/source/icon_h_t_t_p_request.svg deleted file mode 100644 index f43141dd7cf..00000000000 --- a/editor/icons/source/icon_h_t_t_p_request.svg +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_headphones.svg b/editor/icons/source/icon_headphones.svg deleted file mode 100644 index 456a9b8d4eb..00000000000 --- a/editor/icons/source/icon_headphones.svg +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_help.svg b/editor/icons/source/icon_help.svg deleted file mode 100644 index cc8517d2d16..00000000000 --- a/editor/icons/source/icon_help.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_help_search.svg b/editor/icons/source/icon_help_search.svg deleted file mode 100644 index ab914c0c64d..00000000000 --- a/editor/icons/source/icon_help_search.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_hidden.svg b/editor/icons/source/icon_hidden.svg deleted file mode 100644 index 1d504f02fbf..00000000000 --- a/editor/icons/source/icon_hidden.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_hinge_joint.svg b/editor/icons/source/icon_hinge_joint.svg deleted file mode 100644 index 767feac9d59..00000000000 --- a/editor/icons/source/icon_hinge_joint.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_history.svg b/editor/icons/source/icon_history.svg deleted file mode 100644 index f81390f0f59..00000000000 --- a/editor/icons/source/icon_history.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_hsize.svg b/editor/icons/source/icon_hsize.svg deleted file mode 100644 index f24a6307701..00000000000 --- a/editor/icons/source/icon_hsize.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_image.svg b/editor/icons/source/icon_image.svg deleted file mode 100644 index bb15e962513..00000000000 --- a/editor/icons/source/icon_image.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_image_texture.svg b/editor/icons/source/icon_image_texture.svg deleted file mode 100644 index 39e88e592ba..00000000000 --- a/editor/icons/source/icon_image_texture.svg +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_immediate_geometry.svg b/editor/icons/source/icon_immediate_geometry.svg deleted file mode 100644 index 54bc4766d91..00000000000 --- a/editor/icons/source/icon_immediate_geometry.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_import_check.svg b/editor/icons/source/icon_import_check.svg deleted file mode 100644 index 606236d82ef..00000000000 --- a/editor/icons/source/icon_import_check.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_import_fail.svg b/editor/icons/source/icon_import_fail.svg deleted file mode 100644 index b5d142f9688..00000000000 --- a/editor/icons/source/icon_import_fail.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_instance.svg b/editor/icons/source/icon_instance.svg deleted file mode 100644 index f12e067e7a9..00000000000 --- a/editor/icons/source/icon_instance.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_instance_options.svg b/editor/icons/source/icon_instance_options.svg deleted file mode 100644 index a8c00bc43f4..00000000000 --- a/editor/icons/source/icon_instance_options.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_integer.svg b/editor/icons/source/icon_integer.svg deleted file mode 100644 index d4e7a9860a9..00000000000 --- a/editor/icons/source/icon_integer.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_interp_cubic.svg b/editor/icons/source/icon_interp_cubic.svg deleted file mode 100644 index 7d8d5ef70d4..00000000000 --- a/editor/icons/source/icon_interp_cubic.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_interp_linear.svg b/editor/icons/source/icon_interp_linear.svg deleted file mode 100644 index 7b1e4f2dd18..00000000000 --- a/editor/icons/source/icon_interp_linear.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_interp_raw.svg b/editor/icons/source/icon_interp_raw.svg deleted file mode 100644 index e2e20704495..00000000000 --- a/editor/icons/source/icon_interp_raw.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_interp_wrap_clamp.svg b/editor/icons/source/icon_interp_wrap_clamp.svg deleted file mode 100644 index 068e79ace0b..00000000000 --- a/editor/icons/source/icon_interp_wrap_clamp.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_interp_wrap_loop.svg b/editor/icons/source/icon_interp_wrap_loop.svg deleted file mode 100644 index bfca46331bd..00000000000 --- a/editor/icons/source/icon_interp_wrap_loop.svg +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_interpolated_camera.svg b/editor/icons/source/icon_interpolated_camera.svg deleted file mode 100644 index 16fc731c120..00000000000 --- a/editor/icons/source/icon_interpolated_camera.svg +++ /dev/null @@ -1,259 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_invalid_key.svg b/editor/icons/source/icon_invalid_key.svg deleted file mode 100644 index cbccff571ac..00000000000 --- a/editor/icons/source/icon_invalid_key.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_inverse_kinematics.svg b/editor/icons/source/icon_inverse_kinematics.svg deleted file mode 100644 index 227d22f911e..00000000000 --- a/editor/icons/source/icon_inverse_kinematics.svg +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_item_list.svg b/editor/icons/source/icon_item_list.svg deleted file mode 100644 index 943f6fe4354..00000000000 --- a/editor/icons/source/icon_item_list.svg +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_joy_axis.svg b/editor/icons/source/icon_joy_axis.svg deleted file mode 100644 index 9313342a533..00000000000 --- a/editor/icons/source/icon_joy_axis.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_joy_button.svg b/editor/icons/source/icon_joy_button.svg deleted file mode 100644 index f6d43448078..00000000000 --- a/editor/icons/source/icon_joy_button.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_joypad.svg b/editor/icons/source/icon_joypad.svg deleted file mode 100644 index fb84462919f..00000000000 --- a/editor/icons/source/icon_joypad.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_key.svg b/editor/icons/source/icon_key.svg deleted file mode 100644 index f5d7b853811..00000000000 --- a/editor/icons/source/icon_key.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_key_hover.svg b/editor/icons/source/icon_key_hover.svg deleted file mode 100644 index 10caa819682..00000000000 --- a/editor/icons/source/icon_key_hover.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_key_invalid.svg b/editor/icons/source/icon_key_invalid.svg deleted file mode 100644 index b6407dc178d..00000000000 --- a/editor/icons/source/icon_key_invalid.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_key_next.svg b/editor/icons/source/icon_key_next.svg deleted file mode 100644 index 942245305cf..00000000000 --- a/editor/icons/source/icon_key_next.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_key_selected.svg b/editor/icons/source/icon_key_selected.svg deleted file mode 100644 index 62180cca5be..00000000000 --- a/editor/icons/source/icon_key_selected.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_key_value.svg b/editor/icons/source/icon_key_value.svg deleted file mode 100644 index 21780cc695f..00000000000 --- a/editor/icons/source/icon_key_value.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_key_xform.svg b/editor/icons/source/icon_key_xform.svg deleted file mode 100644 index 37de1072841..00000000000 --- a/editor/icons/source/icon_key_xform.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_keyboard.svg b/editor/icons/source/icon_keyboard.svg deleted file mode 100644 index a03798e4a41..00000000000 --- a/editor/icons/source/icon_keyboard.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_kinematic_body.svg b/editor/icons/source/icon_kinematic_body.svg deleted file mode 100644 index 6a4c8965ab9..00000000000 --- a/editor/icons/source/icon_kinematic_body.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_kinematic_body_2d.svg b/editor/icons/source/icon_kinematic_body_2d.svg deleted file mode 100644 index 04f140b930f..00000000000 --- a/editor/icons/source/icon_kinematic_body_2d.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_label.svg b/editor/icons/source/icon_label.svg deleted file mode 100644 index ac9b52be6f8..00000000000 --- a/editor/icons/source/icon_label.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_large_texture.svg b/editor/icons/source/icon_large_texture.svg deleted file mode 100644 index 4db03420417..00000000000 --- a/editor/icons/source/icon_large_texture.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_light_2d.svg b/editor/icons/source/icon_light_2d.svg deleted file mode 100644 index 27e07a649a0..00000000000 --- a/editor/icons/source/icon_light_2d.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_light_occluder_2d.svg b/editor/icons/source/icon_light_occluder_2d.svg deleted file mode 100644 index 3558f3f2da2..00000000000 --- a/editor/icons/source/icon_light_occluder_2d.svg +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_line_2d.svg b/editor/icons/source/icon_line_2d.svg deleted file mode 100644 index 7f833f4a9cd..00000000000 --- a/editor/icons/source/icon_line_2d.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_line_edit.svg b/editor/icons/source/icon_line_edit.svg deleted file mode 100644 index ccd94b92ed1..00000000000 --- a/editor/icons/source/icon_line_edit.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_line_shape_2d.svg b/editor/icons/source/icon_line_shape_2d.svg deleted file mode 100644 index 6a8ab39ef36..00000000000 --- a/editor/icons/source/icon_line_shape_2d.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_link_button.svg b/editor/icons/source/icon_link_button.svg deleted file mode 100644 index 3872e43b29f..00000000000 --- a/editor/icons/source/icon_link_button.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_list_select.svg b/editor/icons/source/icon_list_select.svg deleted file mode 100644 index 569a0c6fea3..00000000000 --- a/editor/icons/source/icon_list_select.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_listener.svg b/editor/icons/source/icon_listener.svg deleted file mode 100644 index f815cb842a3..00000000000 --- a/editor/icons/source/icon_listener.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_load.svg b/editor/icons/source/icon_load.svg deleted file mode 100644 index 395a5c1b8ac..00000000000 --- a/editor/icons/source/icon_load.svg +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_lock.svg b/editor/icons/source/icon_lock.svg deleted file mode 100644 index 140b073e839..00000000000 --- a/editor/icons/source/icon_lock.svg +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_loop.svg b/editor/icons/source/icon_loop.svg deleted file mode 100644 index fe7f6486480..00000000000 --- a/editor/icons/source/icon_loop.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_loop_interpolation.svg b/editor/icons/source/icon_loop_interpolation.svg deleted file mode 100644 index 3733acb2534..00000000000 --- a/editor/icons/source/icon_loop_interpolation.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_main_play.svg b/editor/icons/source/icon_main_play.svg deleted file mode 100644 index 0fb48bb155c..00000000000 --- a/editor/icons/source/icon_main_play.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_main_stop.svg b/editor/icons/source/icon_main_stop.svg deleted file mode 100644 index 9d01bd5cf58..00000000000 --- a/editor/icons/source/icon_main_stop.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_margin_container.svg b/editor/icons/source/icon_margin_container.svg deleted file mode 100644 index 68a6971bd7f..00000000000 --- a/editor/icons/source/icon_margin_container.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_material_preview_cube.svg b/editor/icons/source/icon_material_preview_cube.svg deleted file mode 100644 index 2e8e5a64575..00000000000 --- a/editor/icons/source/icon_material_preview_cube.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_material_preview_cube_off.svg b/editor/icons/source/icon_material_preview_cube_off.svg deleted file mode 100644 index e03905ed050..00000000000 --- a/editor/icons/source/icon_material_preview_cube_off.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_material_preview_light_1.svg b/editor/icons/source/icon_material_preview_light_1.svg deleted file mode 100644 index d8335641f63..00000000000 --- a/editor/icons/source/icon_material_preview_light_1.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_material_preview_light_1_off.svg b/editor/icons/source/icon_material_preview_light_1_off.svg deleted file mode 100644 index c387b1845b2..00000000000 --- a/editor/icons/source/icon_material_preview_light_1_off.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_material_preview_light_2.svg b/editor/icons/source/icon_material_preview_light_2.svg deleted file mode 100644 index f192c19959b..00000000000 --- a/editor/icons/source/icon_material_preview_light_2.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_material_preview_light_2_off.svg b/editor/icons/source/icon_material_preview_light_2_off.svg deleted file mode 100644 index 9d71248cba4..00000000000 --- a/editor/icons/source/icon_material_preview_light_2_off.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_material_preview_sphere.svg b/editor/icons/source/icon_material_preview_sphere.svg deleted file mode 100644 index 76a6ec97bdc..00000000000 --- a/editor/icons/source/icon_material_preview_sphere.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_material_preview_sphere_off.svg b/editor/icons/source/icon_material_preview_sphere_off.svg deleted file mode 100644 index f9c8cadb340..00000000000 --- a/editor/icons/source/icon_material_preview_sphere_off.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_matrix.svg b/editor/icons/source/icon_matrix.svg deleted file mode 100644 index eacf2cdc9d7..00000000000 --- a/editor/icons/source/icon_matrix.svg +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_menu_button.svg b/editor/icons/source/icon_menu_button.svg deleted file mode 100644 index 9cfbf2d5028..00000000000 --- a/editor/icons/source/icon_menu_button.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_mesh.svg b/editor/icons/source/icon_mesh.svg deleted file mode 100644 index f3c33a37b1d..00000000000 --- a/editor/icons/source/icon_mesh.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_mesh_instance.svg b/editor/icons/source/icon_mesh_instance.svg deleted file mode 100644 index 51e6447eb29..00000000000 --- a/editor/icons/source/icon_mesh_instance.svg +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mesh_library.svg b/editor/icons/source/icon_mesh_library.svg deleted file mode 100644 index b908a4db6e4..00000000000 --- a/editor/icons/source/icon_mesh_library.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_mini_aabb.svg b/editor/icons/source/icon_mini_aabb.svg deleted file mode 100644 index ebfd505bea3..00000000000 --- a/editor/icons/source/icon_mini_aabb.svg +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_array.svg b/editor/icons/source/icon_mini_array.svg deleted file mode 100644 index a0a2014fbb7..00000000000 --- a/editor/icons/source/icon_mini_array.svg +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_basis.svg b/editor/icons/source/icon_mini_basis.svg deleted file mode 100644 index a9d3be82ea1..00000000000 --- a/editor/icons/source/icon_mini_basis.svg +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_boolean.svg b/editor/icons/source/icon_mini_boolean.svg deleted file mode 100644 index eb17279a620..00000000000 --- a/editor/icons/source/icon_mini_boolean.svg +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_color.svg b/editor/icons/source/icon_mini_color.svg deleted file mode 100644 index cdc176e00cd..00000000000 --- a/editor/icons/source/icon_mini_color.svg +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_color_array.svg b/editor/icons/source/icon_mini_color_array.svg deleted file mode 100644 index 2ec0e186b53..00000000000 --- a/editor/icons/source/icon_mini_color_array.svg +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_dictionary.svg b/editor/icons/source/icon_mini_dictionary.svg deleted file mode 100644 index 813ba976135..00000000000 --- a/editor/icons/source/icon_mini_dictionary.svg +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_float.svg b/editor/icons/source/icon_mini_float.svg deleted file mode 100644 index 1007955ea9d..00000000000 --- a/editor/icons/source/icon_mini_float.svg +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_float_array.svg b/editor/icons/source/icon_mini_float_array.svg deleted file mode 100644 index 86807ca7315..00000000000 --- a/editor/icons/source/icon_mini_float_array.svg +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_image.svg b/editor/icons/source/icon_mini_image.svg deleted file mode 100644 index 57faded5c86..00000000000 --- a/editor/icons/source/icon_mini_image.svg +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_input.svg b/editor/icons/source/icon_mini_input.svg deleted file mode 100644 index 9e966f77d1c..00000000000 --- a/editor/icons/source/icon_mini_input.svg +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_int_array.svg b/editor/icons/source/icon_mini_int_array.svg deleted file mode 100644 index 23b086d5e15..00000000000 --- a/editor/icons/source/icon_mini_int_array.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_integer.svg b/editor/icons/source/icon_mini_integer.svg deleted file mode 100644 index c21322adb2f..00000000000 --- a/editor/icons/source/icon_mini_integer.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_matrix3.svg b/editor/icons/source/icon_mini_matrix3.svg deleted file mode 100644 index 27adb40b17b..00000000000 --- a/editor/icons/source/icon_mini_matrix3.svg +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_object.svg b/editor/icons/source/icon_mini_object.svg deleted file mode 100644 index 380be349030..00000000000 --- a/editor/icons/source/icon_mini_object.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_path.svg b/editor/icons/source/icon_mini_path.svg deleted file mode 100644 index ef247b8b8ce..00000000000 --- a/editor/icons/source/icon_mini_path.svg +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_plane.svg b/editor/icons/source/icon_mini_plane.svg deleted file mode 100644 index bc3992cdd6c..00000000000 --- a/editor/icons/source/icon_mini_plane.svg +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_quat.svg b/editor/icons/source/icon_mini_quat.svg deleted file mode 100644 index 27188a3410e..00000000000 --- a/editor/icons/source/icon_mini_quat.svg +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_raw_array.svg b/editor/icons/source/icon_mini_raw_array.svg deleted file mode 100644 index cb735b56150..00000000000 --- a/editor/icons/source/icon_mini_raw_array.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_rect2.svg b/editor/icons/source/icon_mini_rect2.svg deleted file mode 100644 index ded27f049f5..00000000000 --- a/editor/icons/source/icon_mini_rect2.svg +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_rid.svg b/editor/icons/source/icon_mini_rid.svg deleted file mode 100644 index 6df13ae43d6..00000000000 --- a/editor/icons/source/icon_mini_rid.svg +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_string.svg b/editor/icons/source/icon_mini_string.svg deleted file mode 100644 index a655f70d33b..00000000000 --- a/editor/icons/source/icon_mini_string.svg +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_string_array.svg b/editor/icons/source/icon_mini_string_array.svg deleted file mode 100644 index cd2e850c498..00000000000 --- a/editor/icons/source/icon_mini_string_array.svg +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_transform.svg b/editor/icons/source/icon_mini_transform.svg deleted file mode 100644 index 6da4eb806d4..00000000000 --- a/editor/icons/source/icon_mini_transform.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_transform2D.svg b/editor/icons/source/icon_mini_transform2D.svg deleted file mode 100644 index e8e38f12563..00000000000 --- a/editor/icons/source/icon_mini_transform2D.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_variant.svg b/editor/icons/source/icon_mini_variant.svg deleted file mode 100644 index 6883baa584e..00000000000 --- a/editor/icons/source/icon_mini_variant.svg +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_vector2.svg b/editor/icons/source/icon_mini_vector2.svg deleted file mode 100644 index 5c9aaeccffc..00000000000 --- a/editor/icons/source/icon_mini_vector2.svg +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_vector2_array.svg b/editor/icons/source/icon_mini_vector2_array.svg deleted file mode 100644 index 03850f7c86a..00000000000 --- a/editor/icons/source/icon_mini_vector2_array.svg +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_vector3.svg b/editor/icons/source/icon_mini_vector3.svg deleted file mode 100644 index e99a211ae06..00000000000 --- a/editor/icons/source/icon_mini_vector3.svg +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mini_vector3_array.svg b/editor/icons/source/icon_mini_vector3_array.svg deleted file mode 100644 index bbac5546144..00000000000 --- a/editor/icons/source/icon_mini_vector3_array.svg +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_mirror_x.svg b/editor/icons/source/icon_mirror_x.svg deleted file mode 100644 index ca28fec4f84..00000000000 --- a/editor/icons/source/icon_mirror_x.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_mirror_y.svg b/editor/icons/source/icon_mirror_y.svg deleted file mode 100644 index 922caf6efc5..00000000000 --- a/editor/icons/source/icon_mirror_y.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_mouse.svg b/editor/icons/source/icon_mouse.svg deleted file mode 100644 index 731ceeefd8e..00000000000 --- a/editor/icons/source/icon_mouse.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_move_down.svg b/editor/icons/source/icon_move_down.svg deleted file mode 100644 index 911def98b8c..00000000000 --- a/editor/icons/source/icon_move_down.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_move_point.svg b/editor/icons/source/icon_move_point.svg deleted file mode 100644 index c951d6b90a4..00000000000 --- a/editor/icons/source/icon_move_point.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_move_up.svg b/editor/icons/source/icon_move_up.svg deleted file mode 100644 index 4e24791efb8..00000000000 --- a/editor/icons/source/icon_move_up.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_multi_edit.svg b/editor/icons/source/icon_multi_edit.svg deleted file mode 100644 index ef63861e97c..00000000000 --- a/editor/icons/source/icon_multi_edit.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_multi_line.svg b/editor/icons/source/icon_multi_line.svg deleted file mode 100644 index 542e3112867..00000000000 --- a/editor/icons/source/icon_multi_line.svg +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_multi_mesh.svg b/editor/icons/source/icon_multi_mesh.svg deleted file mode 100644 index 22f843a6862..00000000000 --- a/editor/icons/source/icon_multi_mesh.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_multi_mesh_instance.svg b/editor/icons/source/icon_multi_mesh_instance.svg deleted file mode 100644 index deceae5a038..00000000000 --- a/editor/icons/source/icon_multi_mesh_instance.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_multi_script.svg b/editor/icons/source/icon_multi_script.svg deleted file mode 100644 index 07c49383a99..00000000000 --- a/editor/icons/source/icon_multi_script.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_native_script.svg b/editor/icons/source/icon_native_script.svg deleted file mode 100644 index 33a8e52a5d0..00000000000 --- a/editor/icons/source/icon_native_script.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_navigation.svg b/editor/icons/source/icon_navigation.svg deleted file mode 100644 index 42e8f59165e..00000000000 --- a/editor/icons/source/icon_navigation.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_navigation_2d.svg b/editor/icons/source/icon_navigation_2d.svg deleted file mode 100644 index 5252541e701..00000000000 --- a/editor/icons/source/icon_navigation_2d.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_navigation_mesh.svg b/editor/icons/source/icon_navigation_mesh.svg deleted file mode 100644 index 31ab5df8ad2..00000000000 --- a/editor/icons/source/icon_navigation_mesh.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_navigation_mesh_instance.svg b/editor/icons/source/icon_navigation_mesh_instance.svg deleted file mode 100644 index 5c4e0f1579a..00000000000 --- a/editor/icons/source/icon_navigation_mesh_instance.svg +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_navigation_polygon.svg b/editor/icons/source/icon_navigation_polygon.svg deleted file mode 100644 index f3b6fcbcc3c..00000000000 --- a/editor/icons/source/icon_navigation_polygon.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_navigation_polygon_instance.svg b/editor/icons/source/icon_navigation_polygon_instance.svg deleted file mode 100644 index 5153227b150..00000000000 --- a/editor/icons/source/icon_navigation_polygon_instance.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_new.svg b/editor/icons/source/icon_new.svg deleted file mode 100644 index d59dd3513a8..00000000000 --- a/editor/icons/source/icon_new.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_nine_patch_rect.svg b/editor/icons/source/icon_nine_patch_rect.svg deleted file mode 100644 index 0a6b94094ab..00000000000 --- a/editor/icons/source/icon_nine_patch_rect.svg +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_node.svg b/editor/icons/source/icon_node.svg deleted file mode 100644 index 02e27746696..00000000000 --- a/editor/icons/source/icon_node.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_node_2d.svg b/editor/icons/source/icon_node_2d.svg deleted file mode 100644 index e546f68539b..00000000000 --- a/editor/icons/source/icon_node_2d.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_node_warning.svg b/editor/icons/source/icon_node_warning.svg deleted file mode 100644 index 89d3663fb06..00000000000 --- a/editor/icons/source/icon_node_warning.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_non_favorite.svg b/editor/icons/source/icon_non_favorite.svg deleted file mode 100644 index 54fcb8577ea..00000000000 --- a/editor/icons/source/icon_non_favorite.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_object.svg b/editor/icons/source/icon_object.svg deleted file mode 100644 index 6b36b61168a..00000000000 --- a/editor/icons/source/icon_object.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_occluder_polygon_2d.svg b/editor/icons/source/icon_occluder_polygon_2d.svg deleted file mode 100644 index 8ae6dc176dd..00000000000 --- a/editor/icons/source/icon_occluder_polygon_2d.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_omni_light.svg b/editor/icons/source/icon_omni_light.svg deleted file mode 100644 index e1049d00399..00000000000 --- a/editor/icons/source/icon_omni_light.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_option_button.svg b/editor/icons/source/icon_option_button.svg deleted file mode 100644 index a58d3d9c065..00000000000 --- a/editor/icons/source/icon_option_button.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_override.svg b/editor/icons/source/icon_override.svg deleted file mode 100644 index b7948c531cf..00000000000 --- a/editor/icons/source/icon_override.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_packed_data_container.svg b/editor/icons/source/icon_packed_data_container.svg deleted file mode 100644 index 70aed22f2c2..00000000000 --- a/editor/icons/source/icon_packed_data_container.svg +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_packed_scene.svg b/editor/icons/source/icon_packed_scene.svg deleted file mode 100644 index 910a274841e..00000000000 --- a/editor/icons/source/icon_packed_scene.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_panel.svg b/editor/icons/source/icon_panel.svg deleted file mode 100644 index 28921c40318..00000000000 --- a/editor/icons/source/icon_panel.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_panel_container.svg b/editor/icons/source/icon_panel_container.svg deleted file mode 100644 index decf220705a..00000000000 --- a/editor/icons/source/icon_panel_container.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_panels_1.svg b/editor/icons/source/icon_panels_1.svg deleted file mode 100644 index fa8bbe9fad4..00000000000 --- a/editor/icons/source/icon_panels_1.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_panels_2.svg b/editor/icons/source/icon_panels_2.svg deleted file mode 100644 index f00cc4b339b..00000000000 --- a/editor/icons/source/icon_panels_2.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_panels_2_alt.svg b/editor/icons/source/icon_panels_2_alt.svg deleted file mode 100644 index cc3a634a3e0..00000000000 --- a/editor/icons/source/icon_panels_2_alt.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_panels_3.svg b/editor/icons/source/icon_panels_3.svg deleted file mode 100644 index 04517c5a66b..00000000000 --- a/editor/icons/source/icon_panels_3.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_panels_3_alt.svg b/editor/icons/source/icon_panels_3_alt.svg deleted file mode 100644 index e5a9493287c..00000000000 --- a/editor/icons/source/icon_panels_3_alt.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_panels_4.svg b/editor/icons/source/icon_panels_4.svg deleted file mode 100644 index 6d07a0b6d51..00000000000 --- a/editor/icons/source/icon_panels_4.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_panorama_sky.svg b/editor/icons/source/icon_panorama_sky.svg deleted file mode 100644 index 32a5253fe3d..00000000000 --- a/editor/icons/source/icon_panorama_sky.svg +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_parallax_background.svg b/editor/icons/source/icon_parallax_background.svg deleted file mode 100644 index e1b6a4fb2ff..00000000000 --- a/editor/icons/source/icon_parallax_background.svg +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_parallax_layer.svg b/editor/icons/source/icon_parallax_layer.svg deleted file mode 100644 index 022fdd5339a..00000000000 --- a/editor/icons/source/icon_parallax_layer.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_particle_attractor_2d.svg b/editor/icons/source/icon_particle_attractor_2d.svg deleted file mode 100644 index f755d7fc374..00000000000 --- a/editor/icons/source/icon_particle_attractor_2d.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_particles.svg b/editor/icons/source/icon_particles.svg deleted file mode 100644 index f48929a7ef8..00000000000 --- a/editor/icons/source/icon_particles.svg +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_particles_2d.svg b/editor/icons/source/icon_particles_2d.svg deleted file mode 100644 index 1ad1d511f82..00000000000 --- a/editor/icons/source/icon_particles_2d.svg +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_particles_material.svg b/editor/icons/source/icon_particles_material.svg deleted file mode 100644 index b4c2ef7ccd7..00000000000 --- a/editor/icons/source/icon_particles_material.svg +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_path.svg b/editor/icons/source/icon_path.svg deleted file mode 100644 index 39c63eac8a3..00000000000 --- a/editor/icons/source/icon_path.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_path_2d.svg b/editor/icons/source/icon_path_2d.svg deleted file mode 100644 index 6887834048d..00000000000 --- a/editor/icons/source/icon_path_2d.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_path_follow.svg b/editor/icons/source/icon_path_follow.svg deleted file mode 100644 index 6999df33dea..00000000000 --- a/editor/icons/source/icon_path_follow.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_path_follow_2d.svg b/editor/icons/source/icon_path_follow_2d.svg deleted file mode 100644 index 020a094c0a5..00000000000 --- a/editor/icons/source/icon_path_follow_2d.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_pause.svg b/editor/icons/source/icon_pause.svg deleted file mode 100644 index 411f1b22da7..00000000000 --- a/editor/icons/source/icon_pause.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_pin.svg b/editor/icons/source/icon_pin.svg deleted file mode 100644 index 8281b6438b6..00000000000 --- a/editor/icons/source/icon_pin.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_pin_joint.svg b/editor/icons/source/icon_pin_joint.svg deleted file mode 100644 index 47dbe6be602..00000000000 --- a/editor/icons/source/icon_pin_joint.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_pin_joint_2d.svg b/editor/icons/source/icon_pin_joint_2d.svg deleted file mode 100644 index 90e15799032..00000000000 --- a/editor/icons/source/icon_pin_joint_2d.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_pin_pressed.svg b/editor/icons/source/icon_pin_pressed.svg deleted file mode 100644 index 8281b6438b6..00000000000 --- a/editor/icons/source/icon_pin_pressed.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_plane.svg b/editor/icons/source/icon_plane.svg deleted file mode 100644 index de5b5efc826..00000000000 --- a/editor/icons/source/icon_plane.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_plane_mesh.svg b/editor/icons/source/icon_plane_mesh.svg deleted file mode 100644 index 52739006062..00000000000 --- a/editor/icons/source/icon_plane_mesh.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_plane_shape.svg b/editor/icons/source/icon_plane_shape.svg deleted file mode 100644 index b2d5e18b8f7..00000000000 --- a/editor/icons/source/icon_plane_shape.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_play.svg b/editor/icons/source/icon_play.svg deleted file mode 100644 index 9d3beab97d4..00000000000 --- a/editor/icons/source/icon_play.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_play_backwards.svg b/editor/icons/source/icon_play_backwards.svg deleted file mode 100644 index d93d529dd84..00000000000 --- a/editor/icons/source/icon_play_backwards.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_play_custom.svg b/editor/icons/source/icon_play_custom.svg deleted file mode 100644 index 62ff7fe7107..00000000000 --- a/editor/icons/source/icon_play_custom.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_play_scene.svg b/editor/icons/source/icon_play_scene.svg deleted file mode 100644 index 599cd149819..00000000000 --- a/editor/icons/source/icon_play_scene.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_play_start.svg b/editor/icons/source/icon_play_start.svg deleted file mode 100644 index 7157f59f351..00000000000 --- a/editor/icons/source/icon_play_start.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_play_start_backwards.svg b/editor/icons/source/icon_play_start_backwards.svg deleted file mode 100644 index 06998f1043f..00000000000 --- a/editor/icons/source/icon_play_start_backwards.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_polygon_path_finder.svg b/editor/icons/source/icon_polygon_path_finder.svg deleted file mode 100644 index c2f8d80c3dc..00000000000 --- a/editor/icons/source/icon_polygon_path_finder.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_popup.svg b/editor/icons/source/icon_popup.svg deleted file mode 100644 index 1681e537f65..00000000000 --- a/editor/icons/source/icon_popup.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_popup_dialog.svg b/editor/icons/source/icon_popup_dialog.svg deleted file mode 100644 index 54e14accc74..00000000000 --- a/editor/icons/source/icon_popup_dialog.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_popup_menu.svg b/editor/icons/source/icon_popup_menu.svg deleted file mode 100644 index e812ca695b1..00000000000 --- a/editor/icons/source/icon_popup_menu.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_popup_panel.svg b/editor/icons/source/icon_popup_panel.svg deleted file mode 100644 index c307257efe6..00000000000 --- a/editor/icons/source/icon_popup_panel.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_portal.svg b/editor/icons/source/icon_portal.svg deleted file mode 100644 index 2f3d22025ff..00000000000 --- a/editor/icons/source/icon_portal.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_position_2d.svg b/editor/icons/source/icon_position_2d.svg deleted file mode 100644 index 4dbb2c188aa..00000000000 --- a/editor/icons/source/icon_position_2d.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_position_3d.svg b/editor/icons/source/icon_position_3d.svg deleted file mode 100644 index b735af4ac3e..00000000000 --- a/editor/icons/source/icon_position_3d.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_prism_mesh.svg b/editor/icons/source/icon_prism_mesh.svg deleted file mode 100644 index 310d8f1a284..00000000000 --- a/editor/icons/source/icon_prism_mesh.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_procedural_sky.svg b/editor/icons/source/icon_procedural_sky.svg deleted file mode 100644 index 97162f3efa3..00000000000 --- a/editor/icons/source/icon_procedural_sky.svg +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_progress_1.svg b/editor/icons/source/icon_progress_1.svg deleted file mode 100644 index 4b4694d0d42..00000000000 --- a/editor/icons/source/icon_progress_1.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_progress_2.svg b/editor/icons/source/icon_progress_2.svg deleted file mode 100644 index 1edad60e039..00000000000 --- a/editor/icons/source/icon_progress_2.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_progress_3.svg b/editor/icons/source/icon_progress_3.svg deleted file mode 100644 index 405a16854e8..00000000000 --- a/editor/icons/source/icon_progress_3.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_progress_4.svg b/editor/icons/source/icon_progress_4.svg deleted file mode 100644 index 26e97928ee0..00000000000 --- a/editor/icons/source/icon_progress_4.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_progress_5.svg b/editor/icons/source/icon_progress_5.svg deleted file mode 100644 index 024190e9fdc..00000000000 --- a/editor/icons/source/icon_progress_5.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_progress_6.svg b/editor/icons/source/icon_progress_6.svg deleted file mode 100644 index 3783c528e79..00000000000 --- a/editor/icons/source/icon_progress_6.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_progress_7.svg b/editor/icons/source/icon_progress_7.svg deleted file mode 100644 index 2a2c744b5b4..00000000000 --- a/editor/icons/source/icon_progress_7.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_progress_8.svg b/editor/icons/source/icon_progress_8.svg deleted file mode 100644 index 2331aee2e7a..00000000000 --- a/editor/icons/source/icon_progress_8.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_progress_bar.svg b/editor/icons/source/icon_progress_bar.svg deleted file mode 100644 index 1a5458080b2..00000000000 --- a/editor/icons/source/icon_progress_bar.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_proximity_group.svg b/editor/icons/source/icon_proximity_group.svg deleted file mode 100644 index 041d0c5ee2b..00000000000 --- a/editor/icons/source/icon_proximity_group.svg +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_quad.svg b/editor/icons/source/icon_quad.svg deleted file mode 100644 index 86bb1979e71..00000000000 --- a/editor/icons/source/icon_quad.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_quad_mesh.svg b/editor/icons/source/icon_quad_mesh.svg deleted file mode 100644 index f511dd8a122..00000000000 --- a/editor/icons/source/icon_quad_mesh.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_quat.svg b/editor/icons/source/icon_quat.svg deleted file mode 100644 index 36560d9d8ff..00000000000 --- a/editor/icons/source/icon_quat.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_range.svg b/editor/icons/source/icon_range.svg deleted file mode 100644 index 1dd857ff32e..00000000000 --- a/editor/icons/source/icon_range.svg +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_rating_no_star.svg b/editor/icons/source/icon_rating_no_star.svg deleted file mode 100644 index 09a9efa1125..00000000000 --- a/editor/icons/source/icon_rating_no_star.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_rating_star.svg b/editor/icons/source/icon_rating_star.svg deleted file mode 100644 index 7ed3f9fbfae..00000000000 --- a/editor/icons/source/icon_rating_star.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_ray_cast.svg b/editor/icons/source/icon_ray_cast.svg deleted file mode 100644 index b8cab72d07e..00000000000 --- a/editor/icons/source/icon_ray_cast.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_ray_cast_2d.svg b/editor/icons/source/icon_ray_cast_2d.svg deleted file mode 100644 index faadd41a177..00000000000 --- a/editor/icons/source/icon_ray_cast_2d.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_ray_shape.svg b/editor/icons/source/icon_ray_shape.svg deleted file mode 100644 index 0e0f2940ae6..00000000000 --- a/editor/icons/source/icon_ray_shape.svg +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_ray_shape_2d.svg b/editor/icons/source/icon_ray_shape_2d.svg deleted file mode 100644 index 7ffc2ff3b51..00000000000 --- a/editor/icons/source/icon_ray_shape_2d.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_rayito.svg b/editor/icons/source/icon_rayito.svg deleted file mode 100644 index 56988b9e4f1..00000000000 --- a/editor/icons/source/icon_rayito.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_real.svg b/editor/icons/source/icon_real.svg deleted file mode 100644 index 1a3406ed486..00000000000 --- a/editor/icons/source/icon_real.svg +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_rectangle_shape_2d.svg b/editor/icons/source/icon_rectangle_shape_2d.svg deleted file mode 100644 index d362944e7a0..00000000000 --- a/editor/icons/source/icon_rectangle_shape_2d.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_reference_rect.svg b/editor/icons/source/icon_reference_rect.svg deleted file mode 100644 index ace9a48a235..00000000000 --- a/editor/icons/source/icon_reference_rect.svg +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_reflection_probe.svg b/editor/icons/source/icon_reflection_probe.svg deleted file mode 100644 index 64b6493d6d0..00000000000 --- a/editor/icons/source/icon_reflection_probe.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_region_edit.svg b/editor/icons/source/icon_region_edit.svg deleted file mode 100644 index b42a53e88d2..00000000000 --- a/editor/icons/source/icon_region_edit.svg +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_reload_small.svg b/editor/icons/source/icon_reload_small.svg deleted file mode 100644 index 2d891c22388..00000000000 --- a/editor/icons/source/icon_reload_small.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_remote.svg b/editor/icons/source/icon_remote.svg deleted file mode 100644 index f5b458c3480..00000000000 --- a/editor/icons/source/icon_remote.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_remote_transform.svg b/editor/icons/source/icon_remote_transform.svg deleted file mode 100644 index 814384297e8..00000000000 --- a/editor/icons/source/icon_remote_transform.svg +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_remote_transform_2d.svg b/editor/icons/source/icon_remote_transform_2d.svg deleted file mode 100644 index 7976937a179..00000000000 --- a/editor/icons/source/icon_remote_transform_2d.svg +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_remove.svg b/editor/icons/source/icon_remove.svg deleted file mode 100644 index 9d75f1e921f..00000000000 --- a/editor/icons/source/icon_remove.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_rename.svg b/editor/icons/source/icon_rename.svg deleted file mode 100644 index 41eb10c7fc7..00000000000 --- a/editor/icons/source/icon_rename.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_reparent.svg b/editor/icons/source/icon_reparent.svg deleted file mode 100644 index 79543fe0663..00000000000 --- a/editor/icons/source/icon_reparent.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_resource_preloader.svg b/editor/icons/source/icon_resource_preloader.svg deleted file mode 100644 index bab1bb4e1e4..00000000000 --- a/editor/icons/source/icon_resource_preloader.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_rich_text_label.svg b/editor/icons/source/icon_rich_text_label.svg deleted file mode 100644 index 4a77dbe6724..00000000000 --- a/editor/icons/source/icon_rich_text_label.svg +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_rigid_body.svg b/editor/icons/source/icon_rigid_body.svg deleted file mode 100644 index 6bebb5250f6..00000000000 --- a/editor/icons/source/icon_rigid_body.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_rigid_body_2d.svg b/editor/icons/source/icon_rigid_body_2d.svg deleted file mode 100644 index 9c8309ecfbc..00000000000 --- a/editor/icons/source/icon_rigid_body_2d.svg +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_room.svg b/editor/icons/source/icon_room.svg deleted file mode 100644 index 599bbeb770c..00000000000 --- a/editor/icons/source/icon_room.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_room_bounds.svg b/editor/icons/source/icon_room_bounds.svg deleted file mode 100644 index 8f7e6e6c83a..00000000000 --- a/editor/icons/source/icon_room_bounds.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_rotate_0.svg b/editor/icons/source/icon_rotate_0.svg deleted file mode 100644 index 710edc8feee..00000000000 --- a/editor/icons/source/icon_rotate_0.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_rotate_180.svg b/editor/icons/source/icon_rotate_180.svg deleted file mode 100644 index ba44fa295de..00000000000 --- a/editor/icons/source/icon_rotate_180.svg +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_rotate_270.svg b/editor/icons/source/icon_rotate_270.svg deleted file mode 100644 index 403321cb896..00000000000 --- a/editor/icons/source/icon_rotate_270.svg +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_rotate_90.svg b/editor/icons/source/icon_rotate_90.svg deleted file mode 100644 index f6b7d840323..00000000000 --- a/editor/icons/source/icon_rotate_90.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_sample_library.svg b/editor/icons/source/icon_sample_library.svg deleted file mode 100644 index 78b01430c29..00000000000 --- a/editor/icons/source/icon_sample_library.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_save.svg b/editor/icons/source/icon_save.svg deleted file mode 100644 index 9307537d4ba..00000000000 --- a/editor/icons/source/icon_save.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_script.svg b/editor/icons/source/icon_script.svg deleted file mode 100644 index 8073692ce8b..00000000000 --- a/editor/icons/source/icon_script.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_script_create.svg b/editor/icons/source/icon_script_create.svg deleted file mode 100644 index 0cf16a9c3b6..00000000000 --- a/editor/icons/source/icon_script_create.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_script_remove.svg b/editor/icons/source/icon_script_remove.svg deleted file mode 100644 index 1a0a0eebe3e..00000000000 --- a/editor/icons/source/icon_script_remove.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_scroll_bar.svg b/editor/icons/source/icon_scroll_bar.svg deleted file mode 100644 index 2f007c7c947..00000000000 --- a/editor/icons/source/icon_scroll_bar.svg +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_scroll_container.svg b/editor/icons/source/icon_scroll_container.svg deleted file mode 100644 index d694b646e00..00000000000 --- a/editor/icons/source/icon_scroll_container.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_search.svg b/editor/icons/source/icon_search.svg deleted file mode 100644 index bcd2ecca460..00000000000 --- a/editor/icons/source/icon_search.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_segment_shape_2d.svg b/editor/icons/source/icon_segment_shape_2d.svg deleted file mode 100644 index b509a31362d..00000000000 --- a/editor/icons/source/icon_segment_shape_2d.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_shader.svg b/editor/icons/source/icon_shader.svg deleted file mode 100644 index 1a2393fec2a..00000000000 --- a/editor/icons/source/icon_shader.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_short_cut.svg b/editor/icons/source/icon_short_cut.svg deleted file mode 100644 index 05069e8ea1e..00000000000 --- a/editor/icons/source/icon_short_cut.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_signal.svg b/editor/icons/source/icon_signal.svg deleted file mode 100644 index b4d3ff5ac8f..00000000000 --- a/editor/icons/source/icon_signal.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_skeleton.svg b/editor/icons/source/icon_skeleton.svg deleted file mode 100644 index 2850b0331dc..00000000000 --- a/editor/icons/source/icon_skeleton.svg +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_slider_joint.svg b/editor/icons/source/icon_slider_joint.svg deleted file mode 100644 index 25bccca8311..00000000000 --- a/editor/icons/source/icon_slider_joint.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_slot.svg b/editor/icons/source/icon_slot.svg deleted file mode 100644 index d613f1e1a42..00000000000 --- a/editor/icons/source/icon_slot.svg +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_snap.svg b/editor/icons/source/icon_snap.svg deleted file mode 100644 index 321dedf6b68..00000000000 --- a/editor/icons/source/icon_snap.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_sound_room_params.svg b/editor/icons/source/icon_sound_room_params.svg deleted file mode 100644 index a71c126ddc0..00000000000 --- a/editor/icons/source/icon_sound_room_params.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_spatial.svg b/editor/icons/source/icon_spatial.svg deleted file mode 100644 index 0d03754016e..00000000000 --- a/editor/icons/source/icon_spatial.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_spatial_material.svg b/editor/icons/source/icon_spatial_material.svg deleted file mode 100644 index 329354b716c..00000000000 --- a/editor/icons/source/icon_spatial_material.svg +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_spatial_sample_player.svg b/editor/icons/source/icon_spatial_sample_player.svg deleted file mode 100644 index 9b5f5d9af68..00000000000 --- a/editor/icons/source/icon_spatial_sample_player.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_spatial_stream_player.svg b/editor/icons/source/icon_spatial_stream_player.svg deleted file mode 100644 index bd081a3dc24..00000000000 --- a/editor/icons/source/icon_spatial_stream_player.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_sphere_mesh.svg b/editor/icons/source/icon_sphere_mesh.svg deleted file mode 100644 index 1264ca3984a..00000000000 --- a/editor/icons/source/icon_sphere_mesh.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_sphere_shape.svg b/editor/icons/source/icon_sphere_shape.svg deleted file mode 100644 index b1bca49f973..00000000000 --- a/editor/icons/source/icon_sphere_shape.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_spin_box.svg b/editor/icons/source/icon_spin_box.svg deleted file mode 100644 index e0086ed12e7..00000000000 --- a/editor/icons/source/icon_spin_box.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_spot_light.svg b/editor/icons/source/icon_spot_light.svg deleted file mode 100644 index 04f5b42f4dc..00000000000 --- a/editor/icons/source/icon_spot_light.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_sprite.svg b/editor/icons/source/icon_sprite.svg deleted file mode 100644 index 488bbf934d1..00000000000 --- a/editor/icons/source/icon_sprite.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_sprite_3d.svg b/editor/icons/source/icon_sprite_3d.svg deleted file mode 100644 index 4ea81f7ea24..00000000000 --- a/editor/icons/source/icon_sprite_3d.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_sprite_frames.svg b/editor/icons/source/icon_sprite_frames.svg deleted file mode 100644 index dc445da773a..00000000000 --- a/editor/icons/source/icon_sprite_frames.svg +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_static_body.svg b/editor/icons/source/icon_static_body.svg deleted file mode 100644 index fcaa2b7d3e3..00000000000 --- a/editor/icons/source/icon_static_body.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_static_body_2d.svg b/editor/icons/source/icon_static_body_2d.svg deleted file mode 100644 index 0ed3ef7cf09..00000000000 --- a/editor/icons/source/icon_static_body_2d.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_stream_player.svg b/editor/icons/source/icon_stream_player.svg deleted file mode 100644 index 618646bbed9..00000000000 --- a/editor/icons/source/icon_stream_player.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_stream_texture.svg b/editor/icons/source/icon_stream_texture.svg deleted file mode 100644 index 6ec701adff6..00000000000 --- a/editor/icons/source/icon_stream_texture.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_string.svg b/editor/icons/source/icon_string.svg deleted file mode 100644 index f32e82256fe..00000000000 --- a/editor/icons/source/icon_string.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_style_box_empty.svg b/editor/icons/source/icon_style_box_empty.svg deleted file mode 100644 index c881fe1c108..00000000000 --- a/editor/icons/source/icon_style_box_empty.svg +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_style_box_flat.svg b/editor/icons/source/icon_style_box_flat.svg deleted file mode 100644 index 9071014ff3b..00000000000 --- a/editor/icons/source/icon_style_box_flat.svg +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_style_box_texture.svg b/editor/icons/source/icon_style_box_texture.svg deleted file mode 100644 index 30b1f1af683..00000000000 --- a/editor/icons/source/icon_style_box_texture.svg +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_tab_container.svg b/editor/icons/source/icon_tab_container.svg deleted file mode 100644 index 6c197a86f6d..00000000000 --- a/editor/icons/source/icon_tab_container.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_tabs.svg b/editor/icons/source/icon_tabs.svg deleted file mode 100644 index c09a042033d..00000000000 --- a/editor/icons/source/icon_tabs.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_test_cube.svg b/editor/icons/source/icon_test_cube.svg deleted file mode 100644 index c42c0bb6745..00000000000 --- a/editor/icons/source/icon_test_cube.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_text_edit.svg b/editor/icons/source/icon_text_edit.svg deleted file mode 100644 index 4d08e9e3b23..00000000000 --- a/editor/icons/source/icon_text_edit.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_texture_button.svg b/editor/icons/source/icon_texture_button.svg deleted file mode 100644 index ef447af082f..00000000000 --- a/editor/icons/source/icon_texture_button.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_texture_progress.svg b/editor/icons/source/icon_texture_progress.svg deleted file mode 100644 index 493dd7fd633..00000000000 --- a/editor/icons/source/icon_texture_progress.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_texture_rect.svg b/editor/icons/source/icon_texture_rect.svg deleted file mode 100644 index e02882812c0..00000000000 --- a/editor/icons/source/icon_texture_rect.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_theme.svg b/editor/icons/source/icon_theme.svg deleted file mode 100644 index 2cacb9755ab..00000000000 --- a/editor/icons/source/icon_theme.svg +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_tile_map.svg b/editor/icons/source/icon_tile_map.svg deleted file mode 100644 index 28f75a97e59..00000000000 --- a/editor/icons/source/icon_tile_map.svg +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_tile_set.svg b/editor/icons/source/icon_tile_set.svg deleted file mode 100644 index e697f038882..00000000000 --- a/editor/icons/source/icon_tile_set.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_timer.svg b/editor/icons/source/icon_timer.svg deleted file mode 100644 index f1564146861..00000000000 --- a/editor/icons/source/icon_timer.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_tool_button.svg b/editor/icons/source/icon_tool_button.svg deleted file mode 100644 index 6fb580bc7f1..00000000000 --- a/editor/icons/source/icon_tool_button.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_tool_move.svg b/editor/icons/source/icon_tool_move.svg deleted file mode 100644 index 243b680dfe1..00000000000 --- a/editor/icons/source/icon_tool_move.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_tool_pan.svg b/editor/icons/source/icon_tool_pan.svg deleted file mode 100644 index a93fc3d29d8..00000000000 --- a/editor/icons/source/icon_tool_pan.svg +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_tool_rotate.svg b/editor/icons/source/icon_tool_rotate.svg deleted file mode 100644 index 817aee3995a..00000000000 --- a/editor/icons/source/icon_tool_rotate.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_tool_scale.svg b/editor/icons/source/icon_tool_scale.svg deleted file mode 100644 index 515bef3bb7a..00000000000 --- a/editor/icons/source/icon_tool_scale.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_tool_select.svg b/editor/icons/source/icon_tool_select.svg deleted file mode 100644 index 2da6a3e6ba4..00000000000 --- a/editor/icons/source/icon_tool_select.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_tools.svg b/editor/icons/source/icon_tools.svg deleted file mode 100644 index 030d38f6cf2..00000000000 --- a/editor/icons/source/icon_tools.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_touch_screen_button.svg b/editor/icons/source/icon_touch_screen_button.svg deleted file mode 100644 index 70abc964aaf..00000000000 --- a/editor/icons/source/icon_touch_screen_button.svg +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_track_add_key.svg b/editor/icons/source/icon_track_add_key.svg deleted file mode 100644 index f550f922bbc..00000000000 --- a/editor/icons/source/icon_track_add_key.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_track_add_key_hl.svg b/editor/icons/source/icon_track_add_key_hl.svg deleted file mode 100644 index 1b45cf8c4ab..00000000000 --- a/editor/icons/source/icon_track_add_key_hl.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_track_continuous.svg b/editor/icons/source/icon_track_continuous.svg deleted file mode 100644 index 78b9dd3f4b5..00000000000 --- a/editor/icons/source/icon_track_continuous.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_track_discrete.svg b/editor/icons/source/icon_track_discrete.svg deleted file mode 100644 index 381782cf6fa..00000000000 --- a/editor/icons/source/icon_track_discrete.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_track_trigger.svg b/editor/icons/source/icon_track_trigger.svg deleted file mode 100644 index 9c13791f705..00000000000 --- a/editor/icons/source/icon_track_trigger.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_translation.svg b/editor/icons/source/icon_translation.svg deleted file mode 100644 index 389b8a40def..00000000000 --- a/editor/icons/source/icon_translation.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_transpose.svg b/editor/icons/source/icon_transpose.svg deleted file mode 100644 index ceccfecfa3b..00000000000 --- a/editor/icons/source/icon_transpose.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_tree.svg b/editor/icons/source/icon_tree.svg deleted file mode 100644 index 0c2b20f4580..00000000000 --- a/editor/icons/source/icon_tree.svg +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_tween.svg b/editor/icons/source/icon_tween.svg deleted file mode 100644 index 7857c5f1874..00000000000 --- a/editor/icons/source/icon_tween.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_unbone.svg b/editor/icons/source/icon_unbone.svg deleted file mode 100644 index 7e4109f2ec9..00000000000 --- a/editor/icons/source/icon_unbone.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_ungroup.svg b/editor/icons/source/icon_ungroup.svg deleted file mode 100644 index f0b33465cd9..00000000000 --- a/editor/icons/source/icon_ungroup.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_unlock.svg b/editor/icons/source/icon_unlock.svg deleted file mode 100644 index b821d486ed1..00000000000 --- a/editor/icons/source/icon_unlock.svg +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_uv.svg b/editor/icons/source/icon_uv.svg deleted file mode 100644 index 698a57fc0a7..00000000000 --- a/editor/icons/source/icon_uv.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_v_box_container.svg b/editor/icons/source/icon_v_box_container.svg deleted file mode 100644 index 9773b253fb3..00000000000 --- a/editor/icons/source/icon_v_box_container.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_v_button_array.svg b/editor/icons/source/icon_v_button_array.svg deleted file mode 100644 index 08fc7d76149..00000000000 --- a/editor/icons/source/icon_v_button_array.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_v_scroll_bar.svg b/editor/icons/source/icon_v_scroll_bar.svg deleted file mode 100644 index 8ad6baa5b33..00000000000 --- a/editor/icons/source/icon_v_scroll_bar.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_v_separator.svg b/editor/icons/source/icon_v_separator.svg deleted file mode 100644 index 7e5ce39ba0c..00000000000 --- a/editor/icons/source/icon_v_separator.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_v_slider.svg b/editor/icons/source/icon_v_slider.svg deleted file mode 100644 index e13c008d3a1..00000000000 --- a/editor/icons/source/icon_v_slider.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_v_split_container.svg b/editor/icons/source/icon_v_split_container.svg deleted file mode 100644 index 4e7704eb4e0..00000000000 --- a/editor/icons/source/icon_v_split_container.svg +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_variant.svg b/editor/icons/source/icon_variant.svg deleted file mode 100644 index d966190ab02..00000000000 --- a/editor/icons/source/icon_variant.svg +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_vector.svg b/editor/icons/source/icon_vector.svg deleted file mode 100644 index 3260aa77aca..00000000000 --- a/editor/icons/source/icon_vector.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_vector2.svg b/editor/icons/source/icon_vector2.svg deleted file mode 100644 index b7b157db015..00000000000 --- a/editor/icons/source/icon_vector2.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_vehicle_body.svg b/editor/icons/source/icon_vehicle_body.svg deleted file mode 100644 index a168b98a991..00000000000 --- a/editor/icons/source/icon_vehicle_body.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_vehicle_wheel.svg b/editor/icons/source/icon_vehicle_wheel.svg deleted file mode 100644 index dff80c4d00f..00000000000 --- a/editor/icons/source/icon_vehicle_wheel.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_video_player.svg b/editor/icons/source/icon_video_player.svg deleted file mode 100644 index a049791930f..00000000000 --- a/editor/icons/source/icon_video_player.svg +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_viewport.svg b/editor/icons/source/icon_viewport.svg deleted file mode 100644 index 631260ab334..00000000000 --- a/editor/icons/source/icon_viewport.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_viewport_container.svg b/editor/icons/source/icon_viewport_container.svg deleted file mode 100644 index 300b8390c48..00000000000 --- a/editor/icons/source/icon_viewport_container.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_viewport_sprite.svg b/editor/icons/source/icon_viewport_sprite.svg deleted file mode 100644 index ab1ac198ce0..00000000000 --- a/editor/icons/source/icon_viewport_sprite.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_viewport_texture.svg b/editor/icons/source/icon_viewport_texture.svg deleted file mode 100644 index 4cf6532059f..00000000000 --- a/editor/icons/source/icon_viewport_texture.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_visibility_enabler.svg b/editor/icons/source/icon_visibility_enabler.svg deleted file mode 100644 index 7c3bc54c99e..00000000000 --- a/editor/icons/source/icon_visibility_enabler.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_visibility_enabler_2d.svg b/editor/icons/source/icon_visibility_enabler_2d.svg deleted file mode 100644 index 1e7d1a751ff..00000000000 --- a/editor/icons/source/icon_visibility_enabler_2d.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_visibility_notifier.svg b/editor/icons/source/icon_visibility_notifier.svg deleted file mode 100644 index b307a6162d1..00000000000 --- a/editor/icons/source/icon_visibility_notifier.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_visibility_notifier_2d.svg b/editor/icons/source/icon_visibility_notifier_2d.svg deleted file mode 100644 index dc2482f9e1a..00000000000 --- a/editor/icons/source/icon_visibility_notifier_2d.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/editor/icons/source/icon_visible.svg b/editor/icons/source/icon_visible.svg deleted file mode 100644 index 0185e1f3a93..00000000000 --- a/editor/icons/source/icon_visible.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_visual_script.svg b/editor/icons/source/icon_visual_script.svg deleted file mode 100644 index d82cb36cb5f..00000000000 --- a/editor/icons/source/icon_visual_script.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_visual_shader_port.svg b/editor/icons/source/icon_visual_shader_port.svg deleted file mode 100644 index 9e80e0e9e92..00000000000 --- a/editor/icons/source/icon_visual_shader_port.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_vu_empty.svg b/editor/icons/source/icon_vu_empty.svg deleted file mode 100644 index c4c7a4e625d..00000000000 --- a/editor/icons/source/icon_vu_empty.svg +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_vu_full.svg b/editor/icons/source/icon_vu_full.svg deleted file mode 100644 index 7084ddf204b..00000000000 --- a/editor/icons/source/icon_vu_full.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_warning.svg b/editor/icons/source/icon_warning.svg deleted file mode 100644 index d886fbdaeda..00000000000 --- a/editor/icons/source/icon_warning.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_window_dialog.svg b/editor/icons/source/icon_window_dialog.svg deleted file mode 100644 index 433ae48a55d..00000000000 --- a/editor/icons/source/icon_window_dialog.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_world.svg b/editor/icons/source/icon_world.svg deleted file mode 100644 index b2be3962177..00000000000 --- a/editor/icons/source/icon_world.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/editor/icons/source/icon_world_2d.svg b/editor/icons/source/icon_world_2d.svg deleted file mode 100644 index cb4427808aa..00000000000 --- a/editor/icons/source/icon_world_2d.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_world_environment.svg b/editor/icons/source/icon_world_environment.svg deleted file mode 100644 index 33e7f861372..00000000000 --- a/editor/icons/source/icon_world_environment.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_y_sort.svg b/editor/icons/source/icon_y_sort.svg deleted file mode 100644 index 65990097c69..00000000000 --- a/editor/icons/source/icon_y_sort.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/editor/icons/source/icon_zoom.svg b/editor/icons/source/icon_zoom.svg deleted file mode 100644 index de94ed96146..00000000000 --- a/editor/icons/source/icon_zoom.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_zoom_less.svg b/editor/icons/source/icon_zoom_less.svg deleted file mode 100644 index 970b1954bb3..00000000000 --- a/editor/icons/source/icon_zoom_less.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/editor/icons/source/icon_zoom_more.svg b/editor/icons/source/icon_zoom_more.svg deleted file mode 100644 index 87acdfb021c..00000000000 --- a/editor/icons/source/icon_zoom_more.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/editor/icons/source/icon_zoom_reset.svg b/editor/icons/source/icon_zoom_reset.svg deleted file mode 100644 index a82f93dfea9..00000000000 --- a/editor/icons/source/icon_zoom_reset.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/editor/icons/xpmfix.sh b/editor/icons/xpmfix.sh deleted file mode 100755 index a24dede3c92..00000000000 --- a/editor/icons/xpmfix.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -sed -i 's/static char/static const char/g' *.xpm