From da8fecf25e11ea05ad6aaab4f9676c78e4faecdc Mon Sep 17 00:00:00 2001 From: "Daniel J. Ramirez" Date: Fri, 18 Aug 2017 21:21:24 -0500 Subject: [PATCH 1/3] Added support for SVG --- core/io/image_loader.cpp | 4 +- core/io/image_loader.h | 4 +- drivers/png/image_loader_png.cpp | 2 +- drivers/png/image_loader_png.h | 2 +- editor/import/resource_importer_texture.cpp | 13 +- modules/hdr/image_loader_hdr.cpp | 2 +- modules/hdr/image_loader_hdr.h | 2 +- modules/jpg/image_loader_jpegd.cpp | 2 +- modules/jpg/image_loader_jpegd.h | 2 +- modules/svg/SCsub | 34 + modules/svg/config.py | 7 + modules/svg/image_loader_svg.cpp | 107 + modules/svg/image_loader_svg.h | 67 + modules/svg/register_types.cpp | 45 + modules/svg/register_types.h | 31 + modules/tga/image_loader_tga.cpp | 2 +- modules/tga/image_loader_tga.h | 2 +- modules/tinyexr/image_loader_tinyexr.cpp | 2 +- modules/tinyexr/image_loader_tinyexr.h | 2 +- modules/webp/image_loader_webp.cpp | 2 +- modules/webp/image_loader_webp.h | 2 +- thirdparty/nanosvg/LICENSE.txt | 18 + thirdparty/nanosvg/README.md | 2 + thirdparty/nanosvg/src/nanosvg.cc | 8 + thirdparty/nanosvg/src/nanosvg.h | 2925 +++++++++++++++++++ thirdparty/nanosvg/src/nanosvgrast.h | 1447 +++++++++ 26 files changed, 4710 insertions(+), 26 deletions(-) create mode 100644 modules/svg/SCsub create mode 100644 modules/svg/config.py create mode 100644 modules/svg/image_loader_svg.cpp create mode 100644 modules/svg/image_loader_svg.h create mode 100644 modules/svg/register_types.cpp create mode 100644 modules/svg/register_types.h create mode 100644 thirdparty/nanosvg/LICENSE.txt create mode 100644 thirdparty/nanosvg/README.md create mode 100644 thirdparty/nanosvg/src/nanosvg.cc create mode 100644 thirdparty/nanosvg/src/nanosvg.h create mode 100644 thirdparty/nanosvg/src/nanosvgrast.h diff --git a/core/io/image_loader.cpp b/core/io/image_loader.cpp index 23719940be..7b5b4a13ea 100644 --- a/core/io/image_loader.cpp +++ b/core/io/image_loader.cpp @@ -43,7 +43,7 @@ bool ImageFormatLoader::recognize(const String &p_extension) const { return false; } -Error ImageLoader::load_image(String p_file, Ref p_image, FileAccess *p_custom, bool p_force_linear) { +Error ImageLoader::load_image(String p_file, Ref p_image, FileAccess *p_custom, bool p_force_linear, float p_scale) { ERR_FAIL_COND_V(p_image.is_null(), ERR_INVALID_PARAMETER); FileAccess *f = p_custom; @@ -62,7 +62,7 @@ Error ImageLoader::load_image(String p_file, Ref p_image, FileAccess *p_c if (!loader[i]->recognize(extension)) continue; - Error err = loader[i]->load_image(p_image, f, p_force_linear); + Error err = loader[i]->load_image(p_image, f, p_force_linear, p_scale); if (err != ERR_FILE_UNRECOGNIZED) { diff --git a/core/io/image_loader.h b/core/io/image_loader.h index e528d1423b..f79d9789bf 100644 --- a/core/io/image_loader.h +++ b/core/io/image_loader.h @@ -56,7 +56,7 @@ class ImageFormatLoader { friend class ImageLoader; protected: - virtual Error load_image(Ref p_image, FileAccess *p_fileaccess, bool p_force_linear) = 0; + virtual Error load_image(Ref p_image, FileAccess *p_fileaccess, bool p_force_linear, float p_scale) = 0; virtual void get_recognized_extensions(List *p_extensions) const = 0; bool recognize(const String &p_extension) const; @@ -75,7 +75,7 @@ class ImageLoader { protected: public: - static Error load_image(String p_file, Ref p_image, FileAccess *p_custom = NULL, bool p_force_linear = false); + static Error load_image(String p_file, Ref p_image, FileAccess *p_custom = NULL, bool p_force_linear = false, float p_scale = 1.0); static void get_recognized_extensions(List *p_extensions); static bool recognize(const String &p_extension); diff --git a/drivers/png/image_loader_png.cpp b/drivers/png/image_loader_png.cpp index 33d271248c..30ec8cd036 100644 --- a/drivers/png/image_loader_png.cpp +++ b/drivers/png/image_loader_png.cpp @@ -201,7 +201,7 @@ Error ImageLoaderPNG::_load_image(void *rf_up, png_rw_ptr p_func, Ref p_i return OK; } -Error ImageLoaderPNG::load_image(Ref p_image, FileAccess *f, bool p_force_linear) { +Error ImageLoaderPNG::load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale) { Error err = _load_image(f, _read_png_data, p_image); f->close(); diff --git a/drivers/png/image_loader_png.h b/drivers/png/image_loader_png.h index f0a525a9eb..c11e25e1a4 100644 --- a/drivers/png/image_loader_png.h +++ b/drivers/png/image_loader_png.h @@ -43,7 +43,7 @@ class ImageLoaderPNG : public ImageFormatLoader { public: static Error _load_image(void *rf_up, png_rw_ptr p_func, Ref p_image); - virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear); + virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale); virtual void get_recognized_extensions(List *p_extensions) const; ImageLoaderPNG(); }; diff --git a/editor/import/resource_importer_texture.cpp b/editor/import/resource_importer_texture.cpp index c0c507c2d6..060e683077 100644 --- a/editor/import/resource_importer_texture.cpp +++ b/editor/import/resource_importer_texture.cpp @@ -45,8 +45,6 @@ void ResourceImporterTexture::_texture_reimport_srgb(const Ref &p singleton->make_flags[path] |= MAKE_SRGB_FLAG; - print_line("requesting srgb for " + String(path)); - singleton->mutex->unlock(); } @@ -61,8 +59,6 @@ void ResourceImporterTexture::_texture_reimport_3d(const Ref &p_t singleton->make_flags[path] |= MAKE_3D_FLAG; - print_line("requesting 3d for " + String(path)); - singleton->mutex->unlock(); } @@ -77,8 +73,6 @@ void ResourceImporterTexture::_texture_reimport_normal(const Ref singleton->make_flags[path] |= MAKE_NORMAL_FLAG; - print_line("requesting normalfor " + String(path)); - singleton->mutex->unlock(); } @@ -97,8 +91,6 @@ void ResourceImporterTexture::update_imports() { Vector to_reimport; for (Map::Element *E = make_flags.front(); E; E = E->next()) { - print_line("checking for reimport " + String(E->key())); - Ref cf; cf.instance(); String src_path = String(E->key()) + ".import"; @@ -207,11 +199,11 @@ void ResourceImporterTexture::get_import_options(List *r_options, r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "stream"), false)); r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "size_limit", PROPERTY_HINT_RANGE, "0,4096,1"), 0)); r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "detect_3d"), p_preset == PRESET_DETECT)); + r_options->push_back(ImportOption(PropertyInfo(Variant::REAL, "scale", PROPERTY_HINT_RANGE, "0.001,100,0.1"), 1.0)); } void ResourceImporterTexture::_save_stex(const Ref &p_image, const String &p_to_path, int p_compress_mode, float p_lossy_quality, Image::CompressMode p_vram_compression, bool p_mipmaps, int p_texture_flags, bool p_streamable, bool p_detect_3d, bool p_detect_srgb, bool p_force_rgbe, bool p_detect_normal, bool p_force_normal) { - print_line("saving: " + p_to_path); FileAccess *f = FileAccess::open(p_to_path, FileAccess::WRITE); f->store_8('G'); f->store_8('D'); @@ -365,10 +357,11 @@ Error ResourceImporterTexture::import(const String &p_source_file, const String bool force_rgbe = int(p_options["compress/hdr_mode"]) == 1; bool hdr_as_srgb = p_options["process/HDR_as_SRGB"]; int normal = p_options["compress/normal_map"]; + float scale = p_options["scale"]; Ref image; image.instance(); - Error err = ImageLoader::load_image(p_source_file, image, NULL, hdr_as_srgb); + Error err = ImageLoader::load_image(p_source_file, image, NULL, hdr_as_srgb, scale); if (err != OK) return err; diff --git a/modules/hdr/image_loader_hdr.cpp b/modules/hdr/image_loader_hdr.cpp index 19df27b962..a3f0601043 100644 --- a/modules/hdr/image_loader_hdr.cpp +++ b/modules/hdr/image_loader_hdr.cpp @@ -34,7 +34,7 @@ #include "thirdparty/tinyexr/tinyexr.h" -Error ImageLoaderHDR::load_image(Ref p_image, FileAccess *f, bool p_force_linear) { +Error ImageLoaderHDR::load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale) { String header = f->get_token(); diff --git a/modules/hdr/image_loader_hdr.h b/modules/hdr/image_loader_hdr.h index 127833ebd0..1e08e954e1 100644 --- a/modules/hdr/image_loader_hdr.h +++ b/modules/hdr/image_loader_hdr.h @@ -38,7 +38,7 @@ class ImageLoaderHDR : public ImageFormatLoader { public: - virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear); + virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale); virtual void get_recognized_extensions(List *p_extensions) const; ImageLoaderHDR(); }; diff --git a/modules/jpg/image_loader_jpegd.cpp b/modules/jpg/image_loader_jpegd.cpp index 8c73b69f1b..4f38e83274 100644 --- a/modules/jpg/image_loader_jpegd.cpp +++ b/modules/jpg/image_loader_jpegd.cpp @@ -89,7 +89,7 @@ Error jpeg_load_image_from_buffer(Image *p_image, const uint8_t *p_buffer, int p return OK; } -Error ImageLoaderJPG::load_image(Ref p_image, FileAccess *f, bool p_force_linear) { +Error ImageLoaderJPG::load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale) { PoolVector src_image; int src_image_len = f->get_len(); diff --git a/modules/jpg/image_loader_jpegd.h b/modules/jpg/image_loader_jpegd.h index aa073b493d..917c0e1d95 100644 --- a/modules/jpg/image_loader_jpegd.h +++ b/modules/jpg/image_loader_jpegd.h @@ -38,7 +38,7 @@ class ImageLoaderJPG : public ImageFormatLoader { public: - virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear); + virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale); virtual void get_recognized_extensions(List *p_extensions) const; ImageLoaderJPG(); }; diff --git a/modules/svg/SCsub b/modules/svg/SCsub new file mode 100644 index 0000000000..0d3a347b7e --- /dev/null +++ b/modules/svg/SCsub @@ -0,0 +1,34 @@ +#!/usr/bin/env python + +Import('env') + +# Thirdparty source files +thirdparty_dir = "#thirdparty/nanosvg/src/" +thirdparty_sources = [ + "nanosvg.cc" +] +thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] + +# env.add_source_files(env.modules_sources, thirdparty_sources) + +lib = env.Library("svg_builtin", thirdparty_sources) +# Needs to be appended to arrive after libscene in the linker call, +# but we don't want it to arrive *after* system libs, so manual hack +# LIBS contains first SCons Library objects ("SCons.Node.FS.File object") +# and then plain strings for system library. We insert between the two. +inserted = False +for idx, linklib in enumerate(env["LIBS"]): + if isinstance(linklib, basestring): # first system lib such as "X11", otherwise SCons lib object + env["LIBS"].insert(idx, lib) + inserted = True + break +if not inserted: + env.Append(LIBS=[lib]) + +env.Append(CPPPATH=[thirdparty_dir]) +env.Append(CCFLAGS=["-DSVG_ENABLED"]) + +# Godot's own source files +env.add_source_files(env.modules_sources, "*.cpp") + +Export('env') \ No newline at end of file diff --git a/modules/svg/config.py b/modules/svg/config.py new file mode 100644 index 0000000000..fb920482f5 --- /dev/null +++ b/modules/svg/config.py @@ -0,0 +1,7 @@ + +def can_build(platform): + return True + + +def configure(env): + pass diff --git a/modules/svg/image_loader_svg.cpp b/modules/svg/image_loader_svg.cpp new file mode 100644 index 0000000000..cc801775b8 --- /dev/null +++ b/modules/svg/image_loader_svg.cpp @@ -0,0 +1,107 @@ +/*************************************************************************/ +/* image_loader_svg.cpp */ +/*************************************************************************/ +/* 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. */ +/*************************************************************************/ +#include "image_loader_svg.h" + +#include "os/os.h" +#include "print_string.h" + +#include + +void SVGRasterizer::rasterize(NSVGimage *p_image, float p_tx, float p_ty, float p_scale, unsigned char *p_dst, int p_w, int p_h, int p_stride) { + nsvgRasterize(rasterizer, p_image, p_tx, p_ty, p_scale, p_dst, p_w, p_h, p_stride); +} + +SVGRasterizer::SVGRasterizer() { + rasterizer = nsvgCreateRasterizer(); +} +SVGRasterizer::~SVGRasterizer() { + nsvgDeleteRasterizer(rasterizer); +} + +SVGRasterizer ImageLoaderSVG::rasterizer; + +Error ImageLoaderSVG::_create_image(Ref p_image, const PoolVector *p_data, float p_scale) { + NSVGimage *svg_image; + PoolVector::Read src_r = p_data->read(); + svg_image = nsvgParse((char *)src_r.ptr(), "px", 96); + if (svg_image == NULL) { + ERR_PRINT("SVG Corrupted"); + return ERR_FILE_CORRUPT; + } + int w = (int)(svg_image->width * p_scale); + int h = (int)(svg_image->height * p_scale); + + PoolVector dst_image; + dst_image.resize(w * h * 4); + + PoolVector::Write dw = dst_image.write(); + + rasterizer.rasterize(svg_image, 0, 0, p_scale, (unsigned char *)dw.ptr(), w, h, w * 4); + + dw = PoolVector::Write(); + p_image->create(w, h, false, Image::FORMAT_RGBA8, dst_image); + if (upsample) + p_image->shrink_x2(); + + nsvgDelete(svg_image); + + return OK; +} + +Error ImageLoaderSVG::create_image_from_string(Ref p_image, const char *svg_str, float p_scale) { + + size_t str_len = strlen(svg_str); + PoolVector src_data; + src_data.resize(str_len); + PoolVector::Write src_w = src_data.write(); + memcpy(src_w.ptr(), svg_str, str_len); + + return _create_image(p_image, &src_data, p_scale); +} + +Error ImageLoaderSVG::load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale) { + + uint32_t size = f->get_len(); + PoolVector src_image; + src_image.resize(size); + PoolVector::Write src_w = src_image.write(); + f->get_buffer(src_w.ptr(), size); + + return _create_image(p_image, &src_image, p_scale); +} + +void ImageLoaderSVG::get_recognized_extensions(List *p_extensions) const { + + p_extensions->push_back("svg"); + p_extensions->push_back("svgz"); +} + +ImageLoaderSVG::ImageLoaderSVG() { +} diff --git a/modules/svg/image_loader_svg.h b/modules/svg/image_loader_svg.h new file mode 100644 index 0000000000..2b6a59edc8 --- /dev/null +++ b/modules/svg/image_loader_svg.h @@ -0,0 +1,67 @@ +/*************************************************************************/ +/* image_loader_svg.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 IMAGE_LOADER_SVG_H +#define IMAGE_LOADER_SVG_H + +#include "io/image_loader.h" +#include "ustring.h" + +#include +#include + +/** + @author Daniel Ramirez +*/ + +class SVGRasterizer { + + NSVGrasterizer *rasterizer; + +public: + void rasterize(NSVGimage *p_image, float p_tx, float p_ty, float p_scale, unsigned char *p_dst, int p_w, int p_h, int p_stride); + + SVGRasterizer(); + ~SVGRasterizer(); +}; + +class ImageLoaderSVG : public ImageFormatLoader { + + static SVGRasterizer rasterizer; + static Error _create_image(Ref p_image, const PoolVector *p_data, float p_scale); + +public: + static Error create_image_from_string(Ref p_image, const char *p_svg_str, float p_scale); + + virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale); + virtual void get_recognized_extensions(List *p_extensions) const; + ImageLoaderSVG(); +}; + +#endif \ No newline at end of file diff --git a/modules/svg/register_types.cpp b/modules/svg/register_types.cpp new file mode 100644 index 0000000000..e0f967ca06 --- /dev/null +++ b/modules/svg/register_types.cpp @@ -0,0 +1,45 @@ +/*************************************************************************/ +/* register_types.cpp */ +/*************************************************************************/ +/* 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. */ +/*************************************************************************/ +#include "register_types.h" + +#include "image_loader_svg.h" + +static ImageLoaderSVG *image_loader_svg = NULL; + +void register_svg_types() { + + image_loader_svg = memnew(ImageLoaderSVG); + ImageLoader::add_image_format_loader(image_loader_svg); +} + +void unregister_svg_types() { + + memdelete(image_loader_svg); +} diff --git a/modules/svg/register_types.h b/modules/svg/register_types.h new file mode 100644 index 0000000000..920b724623 --- /dev/null +++ b/modules/svg/register_types.h @@ -0,0 +1,31 @@ +/*************************************************************************/ +/* register_types.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. */ +/*************************************************************************/ +void register_svg_types(); +void unregister_svg_types(); diff --git a/modules/tga/image_loader_tga.cpp b/modules/tga/image_loader_tga.cpp index 5b8610b975..2329d0bcc2 100644 --- a/modules/tga/image_loader_tga.cpp +++ b/modules/tga/image_loader_tga.cpp @@ -203,7 +203,7 @@ Error ImageLoaderTGA::convert_to_image(Ref p_image, const uint8_t *p_buff return OK; } -Error ImageLoaderTGA::load_image(Ref p_image, FileAccess *f, bool p_force_linear) { +Error ImageLoaderTGA::load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale) { PoolVector src_image; int src_image_len = f->get_len(); diff --git a/modules/tga/image_loader_tga.h b/modules/tga/image_loader_tga.h index 11329ec68a..f42a3f7e75 100644 --- a/modules/tga/image_loader_tga.h +++ b/modules/tga/image_loader_tga.h @@ -75,7 +75,7 @@ class ImageLoaderTGA : public ImageFormatLoader { static Error convert_to_image(Ref p_image, const uint8_t *p_buffer, const tga_header_s &p_header, const uint8_t *p_palette, const bool p_is_monochrome); public: - virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear); + virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale); virtual void get_recognized_extensions(List *p_extensions) const; ImageLoaderTGA(); }; diff --git a/modules/tinyexr/image_loader_tinyexr.cpp b/modules/tinyexr/image_loader_tinyexr.cpp index 4eb91da10b..18d453a717 100644 --- a/modules/tinyexr/image_loader_tinyexr.cpp +++ b/modules/tinyexr/image_loader_tinyexr.cpp @@ -34,7 +34,7 @@ #include "thirdparty/tinyexr/tinyexr.h" -Error ImageLoaderTinyEXR::load_image(Ref p_image, FileAccess *f, bool p_force_linear) { +Error ImageLoaderTinyEXR::load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale) { PoolVector src_image; int src_image_len = f->get_len(); diff --git a/modules/tinyexr/image_loader_tinyexr.h b/modules/tinyexr/image_loader_tinyexr.h index a52894b12b..f9636a303e 100644 --- a/modules/tinyexr/image_loader_tinyexr.h +++ b/modules/tinyexr/image_loader_tinyexr.h @@ -38,7 +38,7 @@ class ImageLoaderTinyEXR : public ImageFormatLoader { public: - virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear); + virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale); virtual void get_recognized_extensions(List *p_extensions) const; ImageLoaderTinyEXR(); }; diff --git a/modules/webp/image_loader_webp.cpp b/modules/webp/image_loader_webp.cpp index 87c2e811b3..4ffcdefbe9 100644 --- a/modules/webp/image_loader_webp.cpp +++ b/modules/webp/image_loader_webp.cpp @@ -115,7 +115,7 @@ static Ref _webp_lossy_unpack(const PoolVector &p_buffer) { return img; } -Error ImageLoaderWEBP::load_image(Ref p_image, FileAccess *f, bool p_force_linear) { +Error ImageLoaderWEBP::load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale) { uint32_t size = f->get_len(); PoolVector src_image; diff --git a/modules/webp/image_loader_webp.h b/modules/webp/image_loader_webp.h index 1ac2196a71..b8c5933512 100644 --- a/modules/webp/image_loader_webp.h +++ b/modules/webp/image_loader_webp.h @@ -38,7 +38,7 @@ class ImageLoaderWEBP : public ImageFormatLoader { public: - virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear); + virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale); virtual void get_recognized_extensions(List *p_extensions) const; ImageLoaderWEBP(); }; diff --git a/thirdparty/nanosvg/LICENSE.txt b/thirdparty/nanosvg/LICENSE.txt new file mode 100644 index 0000000000..6fde401cb2 --- /dev/null +++ b/thirdparty/nanosvg/LICENSE.txt @@ -0,0 +1,18 @@ +Copyright (c) 2013-14 Mikko Mononen memon@inside.org + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software +in a product, an acknowledgment in the product documentation would be +appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + diff --git a/thirdparty/nanosvg/README.md b/thirdparty/nanosvg/README.md new file mode 100644 index 0000000000..919a1ec5e8 --- /dev/null +++ b/thirdparty/nanosvg/README.md @@ -0,0 +1,2 @@ +See: +https://github.com/memononen/nanosvg diff --git a/thirdparty/nanosvg/src/nanosvg.cc b/thirdparty/nanosvg/src/nanosvg.cc new file mode 100644 index 0000000000..3e8e86c792 --- /dev/null +++ b/thirdparty/nanosvg/src/nanosvg.cc @@ -0,0 +1,8 @@ +#include "stdio.h" +#include "string.h" +#include "math.h" +#define NANOSVG_ALL_COLOR_KEYWORDS +#define NANOSVG_IMPLEMENTATION +#include "nanosvg.h" +#define NANOSVGRAST_IMPLEMENTATION +#include "nanosvgrast.h" diff --git a/thirdparty/nanosvg/src/nanosvg.h b/thirdparty/nanosvg/src/nanosvg.h new file mode 100644 index 0000000000..2321c56fd2 --- /dev/null +++ b/thirdparty/nanosvg/src/nanosvg.h @@ -0,0 +1,2925 @@ +/* + * Copyright (c) 2013-14 Mikko Mononen memon@inside.org + * + * This software is provided 'as-is', without any express or implied + * warranty. In no event will the authors be held liable for any damages + * arising from the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software + * in a product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * The SVG parser is based on Anti-Grain Geometry 2.4 SVG example + * Copyright (C) 2002-2004 Maxim Shemanarev (McSeem) (http://www.antigrain.com/) + * + * Arc calculation code based on canvg (https://code.google.com/p/canvg/) + * + * Bounding box calculation based on http://blog.hackers-cafe.net/2009/06/how-to-calculate-bezier-curves-bounding.html + * + */ + +#ifndef NANOSVG_H +#define NANOSVG_H + +#ifdef __cplusplus +extern "C" { +#endif + +// NanoSVG is a simple stupid single-header-file SVG parse. The output of the parser is a list of cubic bezier shapes. +// +// The library suits well for anything from rendering scalable icons in your editor application to prototyping a game. +// +// NanoSVG supports a wide range of SVG features, but something may be missing, feel free to create a pull request! +// +// The shapes in the SVG images are transformed by the viewBox and converted to specified units. +// That is, you should get the same looking data as your designed in your favorite app. +// +// NanoSVG can return the paths in few different units. For example if you want to render an image, you may choose +// to get the paths in pixels, or if you are feeding the data into a CNC-cutter, you may want to use millimeters. +// +// The units passed to NanoVG should be one of: 'px', 'pt', 'pc' 'mm', 'cm', or 'in'. +// DPI (dots-per-inch) controls how the unit conversion is done. +// +// If you don't know or care about the units stuff, "px" and 96 should get you going. + + +/* Example Usage: + // Load + NSVGImage* image; + image = nsvgParseFromFile("test.svg", "px", 96); + printf("size: %f x %f\n", image->width, image->height); + // Use... + for (NSVGshape *shape = image->shapes; shape != NULL; shape = shape->next) { + for (NSVGpath *path = shape->paths; path != NULL; path = path->next) { + for (int i = 0; i < path->npts-1; i += 3) { + float* p = &path->pts[i*2]; + drawCubicBez(p[0],p[1], p[2],p[3], p[4],p[5], p[6],p[7]); + } + } + } + // Delete + nsvgDelete(image); +*/ + +enum NSVGpaintType { + NSVG_PAINT_NONE = 0, + NSVG_PAINT_COLOR = 1, + NSVG_PAINT_LINEAR_GRADIENT = 2, + NSVG_PAINT_RADIAL_GRADIENT = 3 +}; + +enum NSVGspreadType { + NSVG_SPREAD_PAD = 0, + NSVG_SPREAD_REFLECT = 1, + NSVG_SPREAD_REPEAT = 2 +}; + +enum NSVGlineJoin { + NSVG_JOIN_MITER = 0, + NSVG_JOIN_ROUND = 1, + NSVG_JOIN_BEVEL = 2 +}; + +enum NSVGlineCap { + NSVG_CAP_BUTT = 0, + NSVG_CAP_ROUND = 1, + NSVG_CAP_SQUARE = 2 +}; + +enum NSVGfillRule { + NSVG_FILLRULE_NONZERO = 0, + NSVG_FILLRULE_EVENODD = 1 +}; + +enum NSVGflags { + NSVG_FLAGS_VISIBLE = 0x01 +}; + +typedef struct NSVGgradientStop { + unsigned int color; + float offset; +} NSVGgradientStop; + +typedef struct NSVGgradient { + float xform[6]; + char spread; + float fx, fy; + int nstops; + NSVGgradientStop stops[1]; +} NSVGgradient; + +typedef struct NSVGpaint { + char type; + union { + unsigned int color; + NSVGgradient* gradient; + }; +} NSVGpaint; + +typedef struct NSVGpath +{ + float* pts; // Cubic bezier points: x0,y0, [cpx1,cpx1,cpx2,cpy2,x1,y1], ... + int npts; // Total number of bezier points. + char closed; // Flag indicating if shapes should be treated as closed. + float bounds[4]; // Tight bounding box of the shape [minx,miny,maxx,maxy]. + struct NSVGpath* next; // Pointer to next path, or NULL if last element. +} NSVGpath; + +typedef struct NSVGshape +{ + char id[64]; // Optional 'id' attr of the shape or its group + NSVGpaint fill; // Fill paint + NSVGpaint stroke; // Stroke paint + float opacity; // Opacity of the shape. + float strokeWidth; // Stroke width (scaled). + float strokeDashOffset; // Stroke dash offset (scaled). + float strokeDashArray[8]; // Stroke dash array (scaled). + char strokeDashCount; // Number of dash values in dash array. + char strokeLineJoin; // Stroke join type. + char strokeLineCap; // Stroke cap type. + float miterLimit; // Miter limit + char fillRule; // Fill rule, see NSVGfillRule. + unsigned char flags; // Logical or of NSVG_FLAGS_* flags + float bounds[4]; // Tight bounding box of the shape [minx,miny,maxx,maxy]. + NSVGpath* paths; // Linked list of paths in the image. + struct NSVGshape* next; // Pointer to next shape, or NULL if last element. +} NSVGshape; + +typedef struct NSVGimage +{ + float width; // Width of the image. + float height; // Height of the image. + NSVGshape* shapes; // Linked list of shapes in the image. +} NSVGimage; + +// Parses SVG file from a file, returns SVG image as paths. +NSVGimage* nsvgParseFromFile(const char* filename, const char* units, float dpi); + +// Parses SVG file from a null terminated string, returns SVG image as paths. +// Important note: changes the string. +NSVGimage* nsvgParse(char* input, const char* units, float dpi); + +// Deletes list of paths. +void nsvgDelete(NSVGimage* image); + +#ifdef __cplusplus +} +#endif + +#endif // NANOSVG_H + +#ifdef NANOSVG_IMPLEMENTATION + +#include +#include +#include + +#define NSVG_PI (3.14159265358979323846264338327f) +#define NSVG_KAPPA90 (0.5522847493f) // Length proportional to radius of a cubic bezier handle for 90deg arcs. + +#define NSVG_ALIGN_MIN 0 +#define NSVG_ALIGN_MID 1 +#define NSVG_ALIGN_MAX 2 +#define NSVG_ALIGN_NONE 0 +#define NSVG_ALIGN_MEET 1 +#define NSVG_ALIGN_SLICE 2 + +#define NSVG_NOTUSED(v) do { (void)(1 ? (void)0 : ( (void)(v) ) ); } while(0) +#define NSVG_RGB(r, g, b) (((unsigned int)r) | ((unsigned int)g << 8) | ((unsigned int)b << 16)) + +#ifdef _MSC_VER + #pragma warning (disable: 4996) // Switch off security warnings + #pragma warning (disable: 4100) // Switch off unreferenced formal parameter warnings + #ifdef __cplusplus + #define NSVG_INLINE inline + #else + #define NSVG_INLINE + #endif +#else + #define NSVG_INLINE inline +#endif + + +static int nsvg__isspace(char c) +{ + return strchr(" \t\n\v\f\r", c) != 0; +} + +static int nsvg__isdigit(char c) +{ + return c >= '0' && c <= '9'; +} + +static int nsvg__isnum(char c) +{ + return strchr("0123456789+-.eE", c) != 0; +} + +static NSVG_INLINE float nsvg__minf(float a, float b) { return a < b ? a : b; } +static NSVG_INLINE float nsvg__maxf(float a, float b) { return a > b ? a : b; } + + +// Simple XML parser + +#define NSVG_XML_TAG 1 +#define NSVG_XML_CONTENT 2 +#define NSVG_XML_MAX_ATTRIBS 256 + +static void nsvg__parseContent(char* s, + void (*contentCb)(void* ud, const char* s), + void* ud) +{ + // Trim start white spaces + while (*s && nsvg__isspace(*s)) s++; + if (!*s) return; + + if (contentCb) + (*contentCb)(ud, s); +} + +static void nsvg__parseElement(char* s, + void (*startelCb)(void* ud, const char* el, const char** attr), + void (*endelCb)(void* ud, const char* el), + void* ud) +{ + const char* attr[NSVG_XML_MAX_ATTRIBS]; + int nattr = 0; + char* name; + int start = 0; + int end = 0; + char quote; + + // Skip white space after the '<' + while (*s && nsvg__isspace(*s)) s++; + + // Check if the tag is end tag + if (*s == '/') { + s++; + end = 1; + } else { + start = 1; + } + + // Skip comments, data and preprocessor stuff. + if (!*s || *s == '?' || *s == '!') + return; + + // Get tag name + name = s; + while (*s && !nsvg__isspace(*s)) s++; + if (*s) { *s++ = '\0'; } + + // Get attribs + while (!end && *s && nattr < NSVG_XML_MAX_ATTRIBS-3) { + char* name = NULL; + char* value = NULL; + + // Skip white space before the attrib name + while (*s && nsvg__isspace(*s)) s++; + if (!*s) break; + if (*s == '/') { + end = 1; + break; + } + name = s; + // Find end of the attrib name. + while (*s && !nsvg__isspace(*s) && *s != '=') s++; + if (*s) { *s++ = '\0'; } + // Skip until the beginning of the value. + while (*s && *s != '\"' && *s != '\'') s++; + if (!*s) break; + quote = *s; + s++; + // Store value and find the end of it. + value = s; + while (*s && *s != quote) s++; + if (*s) { *s++ = '\0'; } + + // Store only well formed attributes + if (name && value) { + attr[nattr++] = name; + attr[nattr++] = value; + } + } + + // List terminator + attr[nattr++] = 0; + attr[nattr++] = 0; + + // Call callbacks. + if (start && startelCb) + (*startelCb)(ud, name, attr); + if (end && endelCb) + (*endelCb)(ud, name); +} + +int nsvg__parseXML(char* input, + void (*startelCb)(void* ud, const char* el, const char** attr), + void (*endelCb)(void* ud, const char* el), + void (*contentCb)(void* ud, const char* s), + void* ud) +{ + char* s = input; + char* mark = s; + int state = NSVG_XML_CONTENT; + while (*s) { + if (*s == '<' && state == NSVG_XML_CONTENT) { + // Start of a tag + *s++ = '\0'; + nsvg__parseContent(mark, contentCb, ud); + mark = s; + state = NSVG_XML_TAG; + } else if (*s == '>' && state == NSVG_XML_TAG) { + // Start of a content or new tag. + *s++ = '\0'; + nsvg__parseElement(mark, startelCb, endelCb, ud); + mark = s; + state = NSVG_XML_CONTENT; + } else { + s++; + } + } + + return 1; +} + + +/* Simple SVG parser. */ + +#define NSVG_MAX_ATTR 128 + +enum NSVGgradientUnits { + NSVG_USER_SPACE = 0, + NSVG_OBJECT_SPACE = 1 +}; + +#define NSVG_MAX_DASHES 8 + +enum NSVGunits { + NSVG_UNITS_USER, + NSVG_UNITS_PX, + NSVG_UNITS_PT, + NSVG_UNITS_PC, + NSVG_UNITS_MM, + NSVG_UNITS_CM, + NSVG_UNITS_IN, + NSVG_UNITS_PERCENT, + NSVG_UNITS_EM, + NSVG_UNITS_EX +}; + +typedef struct NSVGcoordinate { + float value; + int units; +} NSVGcoordinate; + +typedef struct NSVGlinearData { + NSVGcoordinate x1, y1, x2, y2; +} NSVGlinearData; + +typedef struct NSVGradialData { + NSVGcoordinate cx, cy, r, fx, fy; +} NSVGradialData; + +typedef struct NSVGgradientData +{ + char id[64]; + char ref[64]; + char type; + union { + NSVGlinearData linear; + NSVGradialData radial; + }; + char spread; + char units; + float xform[6]; + int nstops; + NSVGgradientStop* stops; + struct NSVGgradientData* next; +} NSVGgradientData; + +typedef struct NSVGattrib +{ + char id[64]; + float xform[6]; + unsigned int fillColor; + unsigned int strokeColor; + float opacity; + float fillOpacity; + float strokeOpacity; + char fillGradient[64]; + char strokeGradient[64]; + float strokeWidth; + float strokeDashOffset; + float strokeDashArray[NSVG_MAX_DASHES]; + int strokeDashCount; + char strokeLineJoin; + char strokeLineCap; + float miterLimit; + char fillRule; + float fontSize; + unsigned int stopColor; + float stopOpacity; + float stopOffset; + char hasFill; + char hasStroke; + char visible; +} NSVGattrib; + +typedef struct NSVGparser +{ + NSVGattrib attr[NSVG_MAX_ATTR]; + int attrHead; + float* pts; + int npts; + int cpts; + NSVGpath* plist; + NSVGimage* image; + NSVGgradientData* gradients; + NSVGshape* shapesTail; + float viewMinx, viewMiny, viewWidth, viewHeight; + int alignX, alignY, alignType; + float dpi; + char pathFlag; + char defsFlag; +} NSVGparser; + +static void nsvg__xformIdentity(float* t) +{ + t[0] = 1.0f; t[1] = 0.0f; + t[2] = 0.0f; t[3] = 1.0f; + t[4] = 0.0f; t[5] = 0.0f; +} + +static void nsvg__xformSetTranslation(float* t, float tx, float ty) +{ + t[0] = 1.0f; t[1] = 0.0f; + t[2] = 0.0f; t[3] = 1.0f; + t[4] = tx; t[5] = ty; +} + +static void nsvg__xformSetScale(float* t, float sx, float sy) +{ + t[0] = sx; t[1] = 0.0f; + t[2] = 0.0f; t[3] = sy; + t[4] = 0.0f; t[5] = 0.0f; +} + +static void nsvg__xformSetSkewX(float* t, float a) +{ + t[0] = 1.0f; t[1] = 0.0f; + t[2] = tanf(a); t[3] = 1.0f; + t[4] = 0.0f; t[5] = 0.0f; +} + +static void nsvg__xformSetSkewY(float* t, float a) +{ + t[0] = 1.0f; t[1] = tanf(a); + t[2] = 0.0f; t[3] = 1.0f; + t[4] = 0.0f; t[5] = 0.0f; +} + +static void nsvg__xformSetRotation(float* t, float a) +{ + float cs = cosf(a), sn = sinf(a); + t[0] = cs; t[1] = sn; + t[2] = -sn; t[3] = cs; + t[4] = 0.0f; t[5] = 0.0f; +} + +static void nsvg__xformMultiply(float* t, float* s) +{ + float t0 = t[0] * s[0] + t[1] * s[2]; + float t2 = t[2] * s[0] + t[3] * s[2]; + float t4 = t[4] * s[0] + t[5] * s[2] + s[4]; + t[1] = t[0] * s[1] + t[1] * s[3]; + t[3] = t[2] * s[1] + t[3] * s[3]; + t[5] = t[4] * s[1] + t[5] * s[3] + s[5]; + t[0] = t0; + t[2] = t2; + t[4] = t4; +} + +static void nsvg__xformInverse(float* inv, float* t) +{ + double invdet, det = (double)t[0] * t[3] - (double)t[2] * t[1]; + if (det > -1e-6 && det < 1e-6) { + nsvg__xformIdentity(t); + return; + } + invdet = 1.0 / det; + inv[0] = (float)(t[3] * invdet); + inv[2] = (float)(-t[2] * invdet); + inv[4] = (float)(((double)t[2] * t[5] - (double)t[3] * t[4]) * invdet); + inv[1] = (float)(-t[1] * invdet); + inv[3] = (float)(t[0] * invdet); + inv[5] = (float)(((double)t[1] * t[4] - (double)t[0] * t[5]) * invdet); +} + +static void nsvg__xformPremultiply(float* t, float* s) +{ + float s2[6]; + memcpy(s2, s, sizeof(float)*6); + nsvg__xformMultiply(s2, t); + memcpy(t, s2, sizeof(float)*6); +} + +static void nsvg__xformPoint(float* dx, float* dy, float x, float y, float* t) +{ + *dx = x*t[0] + y*t[2] + t[4]; + *dy = x*t[1] + y*t[3] + t[5]; +} + +static void nsvg__xformVec(float* dx, float* dy, float x, float y, float* t) +{ + *dx = x*t[0] + y*t[2]; + *dy = x*t[1] + y*t[3]; +} + +#define NSVG_EPSILON (1e-12) + +static int nsvg__ptInBounds(float* pt, float* bounds) +{ + return pt[0] >= bounds[0] && pt[0] <= bounds[2] && pt[1] >= bounds[1] && pt[1] <= bounds[3]; +} + + +static double nsvg__evalBezier(double t, double p0, double p1, double p2, double p3) +{ + double it = 1.0-t; + return it*it*it*p0 + 3.0*it*it*t*p1 + 3.0*it*t*t*p2 + t*t*t*p3; +} + +static void nsvg__curveBounds(float* bounds, float* curve) +{ + int i, j, count; + double roots[2], a, b, c, b2ac, t, v; + float* v0 = &curve[0]; + float* v1 = &curve[2]; + float* v2 = &curve[4]; + float* v3 = &curve[6]; + + // Start the bounding box by end points + bounds[0] = nsvg__minf(v0[0], v3[0]); + bounds[1] = nsvg__minf(v0[1], v3[1]); + bounds[2] = nsvg__maxf(v0[0], v3[0]); + bounds[3] = nsvg__maxf(v0[1], v3[1]); + + // Bezier curve fits inside the convex hull of it's control points. + // If control points are inside the bounds, we're done. + if (nsvg__ptInBounds(v1, bounds) && nsvg__ptInBounds(v2, bounds)) + return; + + // Add bezier curve inflection points in X and Y. + for (i = 0; i < 2; i++) { + a = -3.0 * v0[i] + 9.0 * v1[i] - 9.0 * v2[i] + 3.0 * v3[i]; + b = 6.0 * v0[i] - 12.0 * v1[i] + 6.0 * v2[i]; + c = 3.0 * v1[i] - 3.0 * v0[i]; + count = 0; + if (fabs(a) < NSVG_EPSILON) { + if (fabs(b) > NSVG_EPSILON) { + t = -c / b; + if (t > NSVG_EPSILON && t < 1.0-NSVG_EPSILON) + roots[count++] = t; + } + } else { + b2ac = b*b - 4.0*c*a; + if (b2ac > NSVG_EPSILON) { + t = (-b + sqrt(b2ac)) / (2.0 * a); + if (t > NSVG_EPSILON && t < 1.0-NSVG_EPSILON) + roots[count++] = t; + t = (-b - sqrt(b2ac)) / (2.0 * a); + if (t > NSVG_EPSILON && t < 1.0-NSVG_EPSILON) + roots[count++] = t; + } + } + for (j = 0; j < count; j++) { + v = nsvg__evalBezier(roots[j], v0[i], v1[i], v2[i], v3[i]); + bounds[0+i] = nsvg__minf(bounds[0+i], (float)v); + bounds[2+i] = nsvg__maxf(bounds[2+i], (float)v); + } + } +} + +static NSVGparser* nsvg__createParser() +{ + NSVGparser* p; + p = (NSVGparser*)malloc(sizeof(NSVGparser)); + if (p == NULL) goto error; + memset(p, 0, sizeof(NSVGparser)); + + p->image = (NSVGimage*)malloc(sizeof(NSVGimage)); + if (p->image == NULL) goto error; + memset(p->image, 0, sizeof(NSVGimage)); + + // Init style + nsvg__xformIdentity(p->attr[0].xform); + memset(p->attr[0].id, 0, sizeof p->attr[0].id); + p->attr[0].fillColor = NSVG_RGB(0,0,0); + p->attr[0].strokeColor = NSVG_RGB(0,0,0); + p->attr[0].opacity = 1; + p->attr[0].fillOpacity = 1; + p->attr[0].strokeOpacity = 1; + p->attr[0].stopOpacity = 1; + p->attr[0].strokeWidth = 1; + p->attr[0].strokeLineJoin = NSVG_JOIN_MITER; + p->attr[0].strokeLineCap = NSVG_CAP_BUTT; + p->attr[0].miterLimit = 4; + p->attr[0].fillRule = NSVG_FILLRULE_NONZERO; + p->attr[0].hasFill = 1; + p->attr[0].visible = 1; + + return p; + +error: + if (p) { + if (p->image) free(p->image); + free(p); + } + return NULL; +} + +static void nsvg__deletePaths(NSVGpath* path) +{ + while (path) { + NSVGpath *next = path->next; + if (path->pts != NULL) + free(path->pts); + free(path); + path = next; + } +} + +static void nsvg__deletePaint(NSVGpaint* paint) +{ + if (paint->type == NSVG_PAINT_LINEAR_GRADIENT || paint->type == NSVG_PAINT_RADIAL_GRADIENT) + free(paint->gradient); +} + +static void nsvg__deleteGradientData(NSVGgradientData* grad) +{ + NSVGgradientData* next; + while (grad != NULL) { + next = grad->next; + free(grad->stops); + free(grad); + grad = next; + } +} + +static void nsvg__deleteParser(NSVGparser* p) +{ + if (p != NULL) { + nsvg__deletePaths(p->plist); + nsvg__deleteGradientData(p->gradients); + nsvgDelete(p->image); + free(p->pts); + free(p); + } +} + +static void nsvg__resetPath(NSVGparser* p) +{ + p->npts = 0; +} + +static void nsvg__addPoint(NSVGparser* p, float x, float y) +{ + if (p->npts+1 > p->cpts) { + p->cpts = p->cpts ? p->cpts*2 : 8; + p->pts = (float*)realloc(p->pts, p->cpts*2*sizeof(float)); + if (!p->pts) return; + } + p->pts[p->npts*2+0] = x; + p->pts[p->npts*2+1] = y; + p->npts++; +} + +static void nsvg__moveTo(NSVGparser* p, float x, float y) +{ + if (p->npts > 0) { + p->pts[(p->npts-1)*2+0] = x; + p->pts[(p->npts-1)*2+1] = y; + } else { + nsvg__addPoint(p, x, y); + } +} + +static void nsvg__lineTo(NSVGparser* p, float x, float y) +{ + float px,py, dx,dy; + if (p->npts > 0) { + px = p->pts[(p->npts-1)*2+0]; + py = p->pts[(p->npts-1)*2+1]; + dx = x - px; + dy = y - py; + nsvg__addPoint(p, px + dx/3.0f, py + dy/3.0f); + nsvg__addPoint(p, x - dx/3.0f, y - dy/3.0f); + nsvg__addPoint(p, x, y); + } +} + +static void nsvg__cubicBezTo(NSVGparser* p, float cpx1, float cpy1, float cpx2, float cpy2, float x, float y) +{ + nsvg__addPoint(p, cpx1, cpy1); + nsvg__addPoint(p, cpx2, cpy2); + nsvg__addPoint(p, x, y); +} + +static NSVGattrib* nsvg__getAttr(NSVGparser* p) +{ + return &p->attr[p->attrHead]; +} + +static void nsvg__pushAttr(NSVGparser* p) +{ + if (p->attrHead < NSVG_MAX_ATTR-1) { + p->attrHead++; + memcpy(&p->attr[p->attrHead], &p->attr[p->attrHead-1], sizeof(NSVGattrib)); + } +} + +static void nsvg__popAttr(NSVGparser* p) +{ + if (p->attrHead > 0) + p->attrHead--; +} + +static float nsvg__actualOrigX(NSVGparser* p) +{ + return p->viewMinx; +} + +static float nsvg__actualOrigY(NSVGparser* p) +{ + return p->viewMiny; +} + +static float nsvg__actualWidth(NSVGparser* p) +{ + return p->viewWidth; +} + +static float nsvg__actualHeight(NSVGparser* p) +{ + return p->viewHeight; +} + +static float nsvg__actualLength(NSVGparser* p) +{ + float w = nsvg__actualWidth(p), h = nsvg__actualHeight(p); + return sqrtf(w*w + h*h) / sqrtf(2.0f); +} + +static float nsvg__convertToPixels(NSVGparser* p, NSVGcoordinate c, float orig, float length) +{ + NSVGattrib* attr = nsvg__getAttr(p); + switch (c.units) { + case NSVG_UNITS_USER: return c.value; + case NSVG_UNITS_PX: return c.value; + case NSVG_UNITS_PT: return c.value / 72.0f * p->dpi; + case NSVG_UNITS_PC: return c.value / 6.0f * p->dpi; + case NSVG_UNITS_MM: return c.value / 25.4f * p->dpi; + case NSVG_UNITS_CM: return c.value / 2.54f * p->dpi; + case NSVG_UNITS_IN: return c.value * p->dpi; + case NSVG_UNITS_EM: return c.value * attr->fontSize; + case NSVG_UNITS_EX: return c.value * attr->fontSize * 0.52f; // x-height of Helvetica. + case NSVG_UNITS_PERCENT: return orig + c.value / 100.0f * length; + default: return c.value; + } + return c.value; +} + +static NSVGgradientData* nsvg__findGradientData(NSVGparser* p, const char* id) +{ + NSVGgradientData* grad = p->gradients; + while (grad) { + if (strcmp(grad->id, id) == 0) + return grad; + grad = grad->next; + } + return NULL; +} + +static NSVGgradient* nsvg__createGradient(NSVGparser* p, const char* id, const float* localBounds, char* paintType) +{ + NSVGattrib* attr = nsvg__getAttr(p); + NSVGgradientData* data = NULL; + NSVGgradientData* ref = NULL; + NSVGgradientStop* stops = NULL; + NSVGgradient* grad; + float ox, oy, sw, sh, sl; + int nstops = 0; + + data = nsvg__findGradientData(p, id); + if (data == NULL) return NULL; + + // TODO: use ref to fill in all unset values too. + ref = data; + while (ref != NULL) { + if (stops == NULL && ref->stops != NULL) { + stops = ref->stops; + nstops = ref->nstops; + break; + } + ref = nsvg__findGradientData(p, ref->ref); + } + if (stops == NULL) return NULL; + + grad = (NSVGgradient*)malloc(sizeof(NSVGgradient) + sizeof(NSVGgradientStop)*(nstops-1)); + if (grad == NULL) return NULL; + + // The shape width and height. + if (data->units == NSVG_OBJECT_SPACE) { + ox = localBounds[0]; + oy = localBounds[1]; + sw = localBounds[2] - localBounds[0]; + sh = localBounds[3] - localBounds[1]; + } else { + ox = nsvg__actualOrigX(p); + oy = nsvg__actualOrigY(p); + sw = nsvg__actualWidth(p); + sh = nsvg__actualHeight(p); + } + sl = sqrtf(sw*sw + sh*sh) / sqrtf(2.0f); + + if (data->type == NSVG_PAINT_LINEAR_GRADIENT) { + float x1, y1, x2, y2, dx, dy; + x1 = nsvg__convertToPixels(p, data->linear.x1, ox, sw); + y1 = nsvg__convertToPixels(p, data->linear.y1, oy, sh); + x2 = nsvg__convertToPixels(p, data->linear.x2, ox, sw); + y2 = nsvg__convertToPixels(p, data->linear.y2, oy, sh); + // Calculate transform aligned to the line + dx = x2 - x1; + dy = y2 - y1; + grad->xform[0] = dy; grad->xform[1] = -dx; + grad->xform[2] = dx; grad->xform[3] = dy; + grad->xform[4] = x1; grad->xform[5] = y1; + } else { + float cx, cy, fx, fy, r; + cx = nsvg__convertToPixels(p, data->radial.cx, ox, sw); + cy = nsvg__convertToPixels(p, data->radial.cy, oy, sh); + fx = nsvg__convertToPixels(p, data->radial.fx, ox, sw); + fy = nsvg__convertToPixels(p, data->radial.fy, oy, sh); + r = nsvg__convertToPixels(p, data->radial.r, 0, sl); + // Calculate transform aligned to the circle + grad->xform[0] = r; grad->xform[1] = 0; + grad->xform[2] = 0; grad->xform[3] = r; + grad->xform[4] = cx; grad->xform[5] = cy; + grad->fx = fx / r; + grad->fy = fy / r; + } + + nsvg__xformMultiply(grad->xform, data->xform); + nsvg__xformMultiply(grad->xform, attr->xform); + + grad->spread = data->spread; + memcpy(grad->stops, stops, nstops*sizeof(NSVGgradientStop)); + grad->nstops = nstops; + + *paintType = data->type; + + return grad; +} + +static float nsvg__getAverageScale(float* t) +{ + float sx = sqrtf(t[0]*t[0] + t[2]*t[2]); + float sy = sqrtf(t[1]*t[1] + t[3]*t[3]); + return (sx + sy) * 0.5f; +} + +static void nsvg__getLocalBounds(float* bounds, NSVGshape *shape, float* xform) +{ + NSVGpath* path; + float curve[4*2], curveBounds[4]; + int i, first = 1; + for (path = shape->paths; path != NULL; path = path->next) { + nsvg__xformPoint(&curve[0], &curve[1], path->pts[0], path->pts[1], xform); + for (i = 0; i < path->npts-1; i += 3) { + nsvg__xformPoint(&curve[2], &curve[3], path->pts[(i+1)*2], path->pts[(i+1)*2+1], xform); + nsvg__xformPoint(&curve[4], &curve[5], path->pts[(i+2)*2], path->pts[(i+2)*2+1], xform); + nsvg__xformPoint(&curve[6], &curve[7], path->pts[(i+3)*2], path->pts[(i+3)*2+1], xform); + nsvg__curveBounds(curveBounds, curve); + if (first) { + bounds[0] = curveBounds[0]; + bounds[1] = curveBounds[1]; + bounds[2] = curveBounds[2]; + bounds[3] = curveBounds[3]; + first = 0; + } else { + bounds[0] = nsvg__minf(bounds[0], curveBounds[0]); + bounds[1] = nsvg__minf(bounds[1], curveBounds[1]); + bounds[2] = nsvg__maxf(bounds[2], curveBounds[2]); + bounds[3] = nsvg__maxf(bounds[3], curveBounds[3]); + } + curve[0] = curve[6]; + curve[1] = curve[7]; + } + } +} + +static void nsvg__addShape(NSVGparser* p) +{ + NSVGattrib* attr = nsvg__getAttr(p); + float scale = 1.0f; + NSVGshape* shape; + NSVGpath* path; + int i; + + if (p->plist == NULL) + return; + + shape = (NSVGshape*)malloc(sizeof(NSVGshape)); + if (shape == NULL) goto error; + memset(shape, 0, sizeof(NSVGshape)); + + memcpy(shape->id, attr->id, sizeof shape->id); + scale = nsvg__getAverageScale(attr->xform); + shape->strokeWidth = attr->strokeWidth * scale; + shape->strokeDashOffset = attr->strokeDashOffset * scale; + shape->strokeDashCount = (char)attr->strokeDashCount; + for (i = 0; i < attr->strokeDashCount; i++) + shape->strokeDashArray[i] = attr->strokeDashArray[i] * scale; + shape->strokeLineJoin = attr->strokeLineJoin; + shape->strokeLineCap = attr->strokeLineCap; + shape->miterLimit = attr->miterLimit; + shape->fillRule = attr->fillRule; + shape->opacity = attr->opacity; + + shape->paths = p->plist; + p->plist = NULL; + + // Calculate shape bounds + shape->bounds[0] = shape->paths->bounds[0]; + shape->bounds[1] = shape->paths->bounds[1]; + shape->bounds[2] = shape->paths->bounds[2]; + shape->bounds[3] = shape->paths->bounds[3]; + for (path = shape->paths->next; path != NULL; path = path->next) { + shape->bounds[0] = nsvg__minf(shape->bounds[0], path->bounds[0]); + shape->bounds[1] = nsvg__minf(shape->bounds[1], path->bounds[1]); + shape->bounds[2] = nsvg__maxf(shape->bounds[2], path->bounds[2]); + shape->bounds[3] = nsvg__maxf(shape->bounds[3], path->bounds[3]); + } + + // Set fill + if (attr->hasFill == 0) { + shape->fill.type = NSVG_PAINT_NONE; + } else if (attr->hasFill == 1) { + shape->fill.type = NSVG_PAINT_COLOR; + shape->fill.color = attr->fillColor; + shape->fill.color |= (unsigned int)(attr->fillOpacity*255) << 24; + } else if (attr->hasFill == 2) { + float inv[6], localBounds[4]; + nsvg__xformInverse(inv, attr->xform); + nsvg__getLocalBounds(localBounds, shape, inv); + shape->fill.gradient = nsvg__createGradient(p, attr->fillGradient, localBounds, &shape->fill.type); + if (shape->fill.gradient == NULL) { + shape->fill.type = NSVG_PAINT_NONE; + } + } + + // Set stroke + if (attr->hasStroke == 0) { + shape->stroke.type = NSVG_PAINT_NONE; + } else if (attr->hasStroke == 1) { + shape->stroke.type = NSVG_PAINT_COLOR; + shape->stroke.color = attr->strokeColor; + shape->stroke.color |= (unsigned int)(attr->strokeOpacity*255) << 24; + } else if (attr->hasStroke == 2) { + float inv[6], localBounds[4]; + nsvg__xformInverse(inv, attr->xform); + nsvg__getLocalBounds(localBounds, shape, inv); + shape->stroke.gradient = nsvg__createGradient(p, attr->strokeGradient, localBounds, &shape->stroke.type); + if (shape->stroke.gradient == NULL) + shape->stroke.type = NSVG_PAINT_NONE; + } + + // Set flags + shape->flags = (attr->visible ? NSVG_FLAGS_VISIBLE : 0x00); + + // Add to tail + if (p->image->shapes == NULL) + p->image->shapes = shape; + else + p->shapesTail->next = shape; + p->shapesTail = shape; + + return; + +error: + if (shape) free(shape); +} + +static void nsvg__addPath(NSVGparser* p, char closed) +{ + NSVGattrib* attr = nsvg__getAttr(p); + NSVGpath* path = NULL; + float bounds[4]; + float* curve; + int i; + + if (p->npts < 4) + return; + + if (closed) + nsvg__lineTo(p, p->pts[0], p->pts[1]); + + path = (NSVGpath*)malloc(sizeof(NSVGpath)); + if (path == NULL) goto error; + memset(path, 0, sizeof(NSVGpath)); + + path->pts = (float*)malloc(p->npts*2*sizeof(float)); + if (path->pts == NULL) goto error; + path->closed = closed; + path->npts = p->npts; + + // Transform path. + for (i = 0; i < p->npts; ++i) + nsvg__xformPoint(&path->pts[i*2], &path->pts[i*2+1], p->pts[i*2], p->pts[i*2+1], attr->xform); + + // Find bounds + for (i = 0; i < path->npts-1; i += 3) { + curve = &path->pts[i*2]; + nsvg__curveBounds(bounds, curve); + if (i == 0) { + path->bounds[0] = bounds[0]; + path->bounds[1] = bounds[1]; + path->bounds[2] = bounds[2]; + path->bounds[3] = bounds[3]; + } else { + path->bounds[0] = nsvg__minf(path->bounds[0], bounds[0]); + path->bounds[1] = nsvg__minf(path->bounds[1], bounds[1]); + path->bounds[2] = nsvg__maxf(path->bounds[2], bounds[2]); + path->bounds[3] = nsvg__maxf(path->bounds[3], bounds[3]); + } + } + + path->next = p->plist; + p->plist = path; + + return; + +error: + if (path != NULL) { + if (path->pts != NULL) free(path->pts); + free(path); + } +} + +// We roll our own string to float because the std library one uses locale and messes things up. +static double nsvg__atof(const char* s) +{ + char* cur = (char*)s; + char* end = NULL; + double res = 0.0, sign = 1.0; + long long intPart = 0, fracPart = 0; + char hasIntPart = 0, hasFracPart = 0; + + // Parse optional sign + if (*cur == '+') { + cur++; + } else if (*cur == '-') { + sign = -1; + cur++; + } + + // Parse integer part + if (nsvg__isdigit(*cur)) { + // Parse digit sequence + intPart = (double)strtoll(cur, &end, 10); + if (cur != end) { + res = (double)intPart; + hasIntPart = 1; + cur = end; + } + } + + // Parse fractional part. + if (*cur == '.') { + cur++; // Skip '.' + if (nsvg__isdigit(*cur)) { + // Parse digit sequence + fracPart = strtoll(cur, &end, 10); + if (cur != end) { + res += (double)fracPart / pow(10.0, (double)(end - cur)); + hasFracPart = 1; + cur = end; + } + } + } + + // A valid number should have integer or fractional part. + if (!hasIntPart && !hasFracPart) + return 0.0; + + // Parse optional exponent + if (*cur == 'e' || *cur == 'E') { + int expPart = 0; + cur++; // skip 'E' + expPart = strtol(cur, &end, 10); // Parse digit sequence with sign + if (cur != end) { + res *= pow(10.0, (double)expPart); + } + } + + return res * sign; +} + + +static const char* nsvg__parseNumber(const char* s, char* it, const int size) +{ + const int last = size-1; + int i = 0; + + // sign + if (*s == '-' || *s == '+') { + if (i < last) it[i++] = *s; + s++; + } + // integer part + while (*s && nsvg__isdigit(*s)) { + if (i < last) it[i++] = *s; + s++; + } + if (*s == '.') { + // decimal point + if (i < last) it[i++] = *s; + s++; + // fraction part + while (*s && nsvg__isdigit(*s)) { + if (i < last) it[i++] = *s; + s++; + } + } + // exponent + if (*s == 'e' || *s == 'E') { + if (i < last) it[i++] = *s; + s++; + if (*s == '-' || *s == '+') { + if (i < last) it[i++] = *s; + s++; + } + while (*s && nsvg__isdigit(*s)) { + if (i < last) it[i++] = *s; + s++; + } + } + it[i] = '\0'; + + return s; +} + +static const char* nsvg__getNextPathItem(const char* s, char* it) +{ + it[0] = '\0'; + // Skip white spaces and commas + while (*s && (nsvg__isspace(*s) || *s == ',')) s++; + if (!*s) return s; + if (*s == '-' || *s == '+' || *s == '.' || nsvg__isdigit(*s)) { + s = nsvg__parseNumber(s, it, 64); + } else { + // Parse command + it[0] = *s++; + it[1] = '\0'; + return s; + } + + return s; +} + +static unsigned int nsvg__parseColorHex(const char* str) +{ + unsigned int c = 0, r = 0, g = 0, b = 0; + int n = 0; + str++; // skip # + // Calculate number of characters. + while(str[n] && !nsvg__isspace(str[n])) + n++; + if (n == 6) { + sscanf(str, "%x", &c); + } else if (n == 3) { + sscanf(str, "%x", &c); + c = (c&0xf) | ((c&0xf0) << 4) | ((c&0xf00) << 8); + c |= c<<4; + } + r = (c >> 16) & 0xff; + g = (c >> 8) & 0xff; + b = c & 0xff; + return NSVG_RGB(r,g,b); +} + +static unsigned int nsvg__parseColorRGB(const char* str) +{ + int r = -1, g = -1, b = -1; + char s1[32]="", s2[32]=""; + sscanf(str + 4, "%d%[%%, \t]%d%[%%, \t]%d", &r, s1, &g, s2, &b); + if (strchr(s1, '%')) { + return NSVG_RGB((r*255)/100,(g*255)/100,(b*255)/100); + } else { + return NSVG_RGB(r,g,b); + } +} + +typedef struct NSVGNamedColor { + const char* name; + unsigned int color; +} NSVGNamedColor; + +NSVGNamedColor nsvg__colors[] = { + + { "red", NSVG_RGB(255, 0, 0) }, + { "green", NSVG_RGB( 0, 128, 0) }, + { "blue", NSVG_RGB( 0, 0, 255) }, + { "yellow", NSVG_RGB(255, 255, 0) }, + { "cyan", NSVG_RGB( 0, 255, 255) }, + { "magenta", NSVG_RGB(255, 0, 255) }, + { "black", NSVG_RGB( 0, 0, 0) }, + { "grey", NSVG_RGB(128, 128, 128) }, + { "gray", NSVG_RGB(128, 128, 128) }, + { "white", NSVG_RGB(255, 255, 255) }, + +#ifdef NANOSVG_ALL_COLOR_KEYWORDS + { "aliceblue", NSVG_RGB(240, 248, 255) }, + { "antiquewhite", NSVG_RGB(250, 235, 215) }, + { "aqua", NSVG_RGB( 0, 255, 255) }, + { "aquamarine", NSVG_RGB(127, 255, 212) }, + { "azure", NSVG_RGB(240, 255, 255) }, + { "beige", NSVG_RGB(245, 245, 220) }, + { "bisque", NSVG_RGB(255, 228, 196) }, + { "blanchedalmond", NSVG_RGB(255, 235, 205) }, + { "blueviolet", NSVG_RGB(138, 43, 226) }, + { "brown", NSVG_RGB(165, 42, 42) }, + { "burlywood", NSVG_RGB(222, 184, 135) }, + { "cadetblue", NSVG_RGB( 95, 158, 160) }, + { "chartreuse", NSVG_RGB(127, 255, 0) }, + { "chocolate", NSVG_RGB(210, 105, 30) }, + { "coral", NSVG_RGB(255, 127, 80) }, + { "cornflowerblue", NSVG_RGB(100, 149, 237) }, + { "cornsilk", NSVG_RGB(255, 248, 220) }, + { "crimson", NSVG_RGB(220, 20, 60) }, + { "darkblue", NSVG_RGB( 0, 0, 139) }, + { "darkcyan", NSVG_RGB( 0, 139, 139) }, + { "darkgoldenrod", NSVG_RGB(184, 134, 11) }, + { "darkgray", NSVG_RGB(169, 169, 169) }, + { "darkgreen", NSVG_RGB( 0, 100, 0) }, + { "darkgrey", NSVG_RGB(169, 169, 169) }, + { "darkkhaki", NSVG_RGB(189, 183, 107) }, + { "darkmagenta", NSVG_RGB(139, 0, 139) }, + { "darkolivegreen", NSVG_RGB( 85, 107, 47) }, + { "darkorange", NSVG_RGB(255, 140, 0) }, + { "darkorchid", NSVG_RGB(153, 50, 204) }, + { "darkred", NSVG_RGB(139, 0, 0) }, + { "darksalmon", NSVG_RGB(233, 150, 122) }, + { "darkseagreen", NSVG_RGB(143, 188, 143) }, + { "darkslateblue", NSVG_RGB( 72, 61, 139) }, + { "darkslategray", NSVG_RGB( 47, 79, 79) }, + { "darkslategrey", NSVG_RGB( 47, 79, 79) }, + { "darkturquoise", NSVG_RGB( 0, 206, 209) }, + { "darkviolet", NSVG_RGB(148, 0, 211) }, + { "deeppink", NSVG_RGB(255, 20, 147) }, + { "deepskyblue", NSVG_RGB( 0, 191, 255) }, + { "dimgray", NSVG_RGB(105, 105, 105) }, + { "dimgrey", NSVG_RGB(105, 105, 105) }, + { "dodgerblue", NSVG_RGB( 30, 144, 255) }, + { "firebrick", NSVG_RGB(178, 34, 34) }, + { "floralwhite", NSVG_RGB(255, 250, 240) }, + { "forestgreen", NSVG_RGB( 34, 139, 34) }, + { "fuchsia", NSVG_RGB(255, 0, 255) }, + { "gainsboro", NSVG_RGB(220, 220, 220) }, + { "ghostwhite", NSVG_RGB(248, 248, 255) }, + { "gold", NSVG_RGB(255, 215, 0) }, + { "goldenrod", NSVG_RGB(218, 165, 32) }, + { "greenyellow", NSVG_RGB(173, 255, 47) }, + { "honeydew", NSVG_RGB(240, 255, 240) }, + { "hotpink", NSVG_RGB(255, 105, 180) }, + { "indianred", NSVG_RGB(205, 92, 92) }, + { "indigo", NSVG_RGB( 75, 0, 130) }, + { "ivory", NSVG_RGB(255, 255, 240) }, + { "khaki", NSVG_RGB(240, 230, 140) }, + { "lavender", NSVG_RGB(230, 230, 250) }, + { "lavenderblush", NSVG_RGB(255, 240, 245) }, + { "lawngreen", NSVG_RGB(124, 252, 0) }, + { "lemonchiffon", NSVG_RGB(255, 250, 205) }, + { "lightblue", NSVG_RGB(173, 216, 230) }, + { "lightcoral", NSVG_RGB(240, 128, 128) }, + { "lightcyan", NSVG_RGB(224, 255, 255) }, + { "lightgoldenrodyellow", NSVG_RGB(250, 250, 210) }, + { "lightgray", NSVG_RGB(211, 211, 211) }, + { "lightgreen", NSVG_RGB(144, 238, 144) }, + { "lightgrey", NSVG_RGB(211, 211, 211) }, + { "lightpink", NSVG_RGB(255, 182, 193) }, + { "lightsalmon", NSVG_RGB(255, 160, 122) }, + { "lightseagreen", NSVG_RGB( 32, 178, 170) }, + { "lightskyblue", NSVG_RGB(135, 206, 250) }, + { "lightslategray", NSVG_RGB(119, 136, 153) }, + { "lightslategrey", NSVG_RGB(119, 136, 153) }, + { "lightsteelblue", NSVG_RGB(176, 196, 222) }, + { "lightyellow", NSVG_RGB(255, 255, 224) }, + { "lime", NSVG_RGB( 0, 255, 0) }, + { "limegreen", NSVG_RGB( 50, 205, 50) }, + { "linen", NSVG_RGB(250, 240, 230) }, + { "maroon", NSVG_RGB(128, 0, 0) }, + { "mediumaquamarine", NSVG_RGB(102, 205, 170) }, + { "mediumblue", NSVG_RGB( 0, 0, 205) }, + { "mediumorchid", NSVG_RGB(186, 85, 211) }, + { "mediumpurple", NSVG_RGB(147, 112, 219) }, + { "mediumseagreen", NSVG_RGB( 60, 179, 113) }, + { "mediumslateblue", NSVG_RGB(123, 104, 238) }, + { "mediumspringgreen", NSVG_RGB( 0, 250, 154) }, + { "mediumturquoise", NSVG_RGB( 72, 209, 204) }, + { "mediumvioletred", NSVG_RGB(199, 21, 133) }, + { "midnightblue", NSVG_RGB( 25, 25, 112) }, + { "mintcream", NSVG_RGB(245, 255, 250) }, + { "mistyrose", NSVG_RGB(255, 228, 225) }, + { "moccasin", NSVG_RGB(255, 228, 181) }, + { "navajowhite", NSVG_RGB(255, 222, 173) }, + { "navy", NSVG_RGB( 0, 0, 128) }, + { "oldlace", NSVG_RGB(253, 245, 230) }, + { "olive", NSVG_RGB(128, 128, 0) }, + { "olivedrab", NSVG_RGB(107, 142, 35) }, + { "orange", NSVG_RGB(255, 165, 0) }, + { "orangered", NSVG_RGB(255, 69, 0) }, + { "orchid", NSVG_RGB(218, 112, 214) }, + { "palegoldenrod", NSVG_RGB(238, 232, 170) }, + { "palegreen", NSVG_RGB(152, 251, 152) }, + { "paleturquoise", NSVG_RGB(175, 238, 238) }, + { "palevioletred", NSVG_RGB(219, 112, 147) }, + { "papayawhip", NSVG_RGB(255, 239, 213) }, + { "peachpuff", NSVG_RGB(255, 218, 185) }, + { "peru", NSVG_RGB(205, 133, 63) }, + { "pink", NSVG_RGB(255, 192, 203) }, + { "plum", NSVG_RGB(221, 160, 221) }, + { "powderblue", NSVG_RGB(176, 224, 230) }, + { "purple", NSVG_RGB(128, 0, 128) }, + { "rosybrown", NSVG_RGB(188, 143, 143) }, + { "royalblue", NSVG_RGB( 65, 105, 225) }, + { "saddlebrown", NSVG_RGB(139, 69, 19) }, + { "salmon", NSVG_RGB(250, 128, 114) }, + { "sandybrown", NSVG_RGB(244, 164, 96) }, + { "seagreen", NSVG_RGB( 46, 139, 87) }, + { "seashell", NSVG_RGB(255, 245, 238) }, + { "sienna", NSVG_RGB(160, 82, 45) }, + { "silver", NSVG_RGB(192, 192, 192) }, + { "skyblue", NSVG_RGB(135, 206, 235) }, + { "slateblue", NSVG_RGB(106, 90, 205) }, + { "slategray", NSVG_RGB(112, 128, 144) }, + { "slategrey", NSVG_RGB(112, 128, 144) }, + { "snow", NSVG_RGB(255, 250, 250) }, + { "springgreen", NSVG_RGB( 0, 255, 127) }, + { "steelblue", NSVG_RGB( 70, 130, 180) }, + { "tan", NSVG_RGB(210, 180, 140) }, + { "teal", NSVG_RGB( 0, 128, 128) }, + { "thistle", NSVG_RGB(216, 191, 216) }, + { "tomato", NSVG_RGB(255, 99, 71) }, + { "turquoise", NSVG_RGB( 64, 224, 208) }, + { "violet", NSVG_RGB(238, 130, 238) }, + { "wheat", NSVG_RGB(245, 222, 179) }, + { "whitesmoke", NSVG_RGB(245, 245, 245) }, + { "yellowgreen", NSVG_RGB(154, 205, 50) }, +#endif +}; + +static unsigned int nsvg__parseColorName(const char* str) +{ + int i, ncolors = sizeof(nsvg__colors) / sizeof(NSVGNamedColor); + + for (i = 0; i < ncolors; i++) { + if (strcmp(nsvg__colors[i].name, str) == 0) { + return nsvg__colors[i].color; + } + } + + return NSVG_RGB(128, 128, 128); +} + +static unsigned int nsvg__parseColor(const char* str) +{ + size_t len = 0; + while(*str == ' ') ++str; + len = strlen(str); + if (len >= 1 && *str == '#') + return nsvg__parseColorHex(str); + else if (len >= 4 && str[0] == 'r' && str[1] == 'g' && str[2] == 'b' && str[3] == '(') + return nsvg__parseColorRGB(str); + return nsvg__parseColorName(str); +} + +static float nsvg__parseOpacity(const char* str) +{ + float val = 0; + sscanf(str, "%f", &val); + if (val < 0.0f) val = 0.0f; + if (val > 1.0f) val = 1.0f; + return val; +} + +static float nsvg__parseMiterLimit(const char* str) +{ + float val = 0; + sscanf(str, "%f", &val); + if (val < 0.0f) val = 0.0f; + return val; +} + +static int nsvg__parseUnits(const char* units) +{ + if (units[0] == 'p' && units[1] == 'x') + return NSVG_UNITS_PX; + else if (units[0] == 'p' && units[1] == 't') + return NSVG_UNITS_PT; + else if (units[0] == 'p' && units[1] == 'c') + return NSVG_UNITS_PC; + else if (units[0] == 'm' && units[1] == 'm') + return NSVG_UNITS_MM; + else if (units[0] == 'c' && units[1] == 'm') + return NSVG_UNITS_CM; + else if (units[0] == 'i' && units[1] == 'n') + return NSVG_UNITS_IN; + else if (units[0] == '%') + return NSVG_UNITS_PERCENT; + else if (units[0] == 'e' && units[1] == 'm') + return NSVG_UNITS_EM; + else if (units[0] == 'e' && units[1] == 'x') + return NSVG_UNITS_EX; + return NSVG_UNITS_USER; +} + +static NSVGcoordinate nsvg__parseCoordinateRaw(const char* str) +{ + NSVGcoordinate coord = {0, NSVG_UNITS_USER}; + char units[32]=""; + sscanf(str, "%f%31s", &coord.value, units); + coord.units = nsvg__parseUnits(units); + return coord; +} + +static NSVGcoordinate nsvg__coord(float v, int units) +{ + NSVGcoordinate coord = {v, units}; + return coord; +} + +static float nsvg__parseCoordinate(NSVGparser* p, const char* str, float orig, float length) +{ + NSVGcoordinate coord = nsvg__parseCoordinateRaw(str); + return nsvg__convertToPixels(p, coord, orig, length); +} + +static int nsvg__parseTransformArgs(const char* str, float* args, int maxNa, int* na) +{ + const char* end; + const char* ptr; + char it[64]; + + *na = 0; + ptr = str; + while (*ptr && *ptr != '(') ++ptr; + if (*ptr == 0) + return 1; + end = ptr; + while (*end && *end != ')') ++end; + if (*end == 0) + return 1; + + while (ptr < end) { + if (*ptr == '-' || *ptr == '+' || *ptr == '.' || nsvg__isdigit(*ptr)) { + if (*na >= maxNa) return 0; + ptr = nsvg__parseNumber(ptr, it, 64); + args[(*na)++] = (float)nsvg__atof(it); + } else { + ++ptr; + } + } + return (int)(end - str); +} + + +static int nsvg__parseMatrix(float* xform, const char* str) +{ + float t[6]; + int na = 0; + int len = nsvg__parseTransformArgs(str, t, 6, &na); + if (na != 6) return len; + memcpy(xform, t, sizeof(float)*6); + return len; +} + +static int nsvg__parseTranslate(float* xform, const char* str) +{ + float args[2]; + float t[6]; + int na = 0; + int len = nsvg__parseTransformArgs(str, args, 2, &na); + if (na == 1) args[1] = 0.0; + + nsvg__xformSetTranslation(t, args[0], args[1]); + memcpy(xform, t, sizeof(float)*6); + return len; +} + +static int nsvg__parseScale(float* xform, const char* str) +{ + float args[2]; + int na = 0; + float t[6]; + int len = nsvg__parseTransformArgs(str, args, 2, &na); + if (na == 1) args[1] = args[0]; + nsvg__xformSetScale(t, args[0], args[1]); + memcpy(xform, t, sizeof(float)*6); + return len; +} + +static int nsvg__parseSkewX(float* xform, const char* str) +{ + float args[1]; + int na = 0; + float t[6]; + int len = nsvg__parseTransformArgs(str, args, 1, &na); + nsvg__xformSetSkewX(t, args[0]/180.0f*NSVG_PI); + memcpy(xform, t, sizeof(float)*6); + return len; +} + +static int nsvg__parseSkewY(float* xform, const char* str) +{ + float args[1]; + int na = 0; + float t[6]; + int len = nsvg__parseTransformArgs(str, args, 1, &na); + nsvg__xformSetSkewY(t, args[0]/180.0f*NSVG_PI); + memcpy(xform, t, sizeof(float)*6); + return len; +} + +static int nsvg__parseRotate(float* xform, const char* str) +{ + float args[3]; + int na = 0; + float m[6]; + float t[6]; + int len = nsvg__parseTransformArgs(str, args, 3, &na); + if (na == 1) + args[1] = args[2] = 0.0f; + nsvg__xformIdentity(m); + + if (na > 1) { + nsvg__xformSetTranslation(t, -args[1], -args[2]); + nsvg__xformMultiply(m, t); + } + + nsvg__xformSetRotation(t, args[0]/180.0f*NSVG_PI); + nsvg__xformMultiply(m, t); + + if (na > 1) { + nsvg__xformSetTranslation(t, args[1], args[2]); + nsvg__xformMultiply(m, t); + } + + memcpy(xform, m, sizeof(float)*6); + + return len; +} + +static void nsvg__parseTransform(float* xform, const char* str) +{ + float t[6]; + nsvg__xformIdentity(xform); + while (*str) + { + if (strncmp(str, "matrix", 6) == 0) + str += nsvg__parseMatrix(t, str); + else if (strncmp(str, "translate", 9) == 0) + str += nsvg__parseTranslate(t, str); + else if (strncmp(str, "scale", 5) == 0) + str += nsvg__parseScale(t, str); + else if (strncmp(str, "rotate", 6) == 0) + str += nsvg__parseRotate(t, str); + else if (strncmp(str, "skewX", 5) == 0) + str += nsvg__parseSkewX(t, str); + else if (strncmp(str, "skewY", 5) == 0) + str += nsvg__parseSkewY(t, str); + else{ + ++str; + continue; + } + + nsvg__xformPremultiply(xform, t); + } +} + +static void nsvg__parseUrl(char* id, const char* str) +{ + int i = 0; + str += 4; // "url("; + if (*str == '#') + str++; + while (i < 63 && *str != ')') { + id[i] = *str++; + i++; + } + id[i] = '\0'; +} + +static char nsvg__parseLineCap(const char* str) +{ + if (strcmp(str, "butt") == 0) + return NSVG_CAP_BUTT; + else if (strcmp(str, "round") == 0) + return NSVG_CAP_ROUND; + else if (strcmp(str, "square") == 0) + return NSVG_CAP_SQUARE; + // TODO: handle inherit. + return NSVG_CAP_BUTT; +} + +static char nsvg__parseLineJoin(const char* str) +{ + if (strcmp(str, "miter") == 0) + return NSVG_JOIN_MITER; + else if (strcmp(str, "round") == 0) + return NSVG_JOIN_ROUND; + else if (strcmp(str, "bevel") == 0) + return NSVG_JOIN_BEVEL; + // TODO: handle inherit. + return NSVG_CAP_BUTT; +} + +static char nsvg__parseFillRule(const char* str) +{ + if (strcmp(str, "nonzero") == 0) + return NSVG_FILLRULE_NONZERO; + else if (strcmp(str, "evenodd") == 0) + return NSVG_FILLRULE_EVENODD; + // TODO: handle inherit. + return NSVG_FILLRULE_NONZERO; +} + +static const char* nsvg__getNextDashItem(const char* s, char* it) +{ + int n = 0; + it[0] = '\0'; + // Skip white spaces and commas + while (*s && (nsvg__isspace(*s) || *s == ',')) s++; + // Advance until whitespace, comma or end. + while (*s && (!nsvg__isspace(*s) && *s != ',')) { + if (n < 63) + it[n++] = *s; + s++; + } + it[n++] = '\0'; + return s; +} + +static int nsvg__parseStrokeDashArray(NSVGparser* p, const char* str, float* strokeDashArray) +{ + char item[64]; + int count = 0, i; + float sum = 0.0f; + + // Handle "none" + if (str[0] == 'n') + return 0; + + // Parse dashes + while (*str) { + str = nsvg__getNextDashItem(str, item); + if (!*item) break; + if (count < NSVG_MAX_DASHES) + strokeDashArray[count++] = fabsf(nsvg__parseCoordinate(p, item, 0.0f, nsvg__actualLength(p))); + } + + for (i = 0; i < count; i++) + sum += strokeDashArray[i]; + if (sum <= 1e-6f) + count = 0; + + return count; +} + +static void nsvg__parseStyle(NSVGparser* p, const char* str); + +static int nsvg__parseAttr(NSVGparser* p, const char* name, const char* value) +{ + float xform[6]; + NSVGattrib* attr = nsvg__getAttr(p); + if (!attr) return 0; + + if (strcmp(name, "style") == 0) { + nsvg__parseStyle(p, value); + } else if (strcmp(name, "display") == 0) { + if (strcmp(value, "none") == 0) + attr->visible = 0; + // Don't reset ->visible on display:inline, one display:none hides the whole subtree + + } else if (strcmp(name, "fill") == 0) { + if (strcmp(value, "none") == 0) { + attr->hasFill = 0; + } else if (strncmp(value, "url(", 4) == 0) { + attr->hasFill = 2; + nsvg__parseUrl(attr->fillGradient, value); + } else { + attr->hasFill = 1; + attr->fillColor = nsvg__parseColor(value); + } + } else if (strcmp(name, "opacity") == 0) { + attr->opacity = nsvg__parseOpacity(value); + } else if (strcmp(name, "fill-opacity") == 0) { + attr->fillOpacity = nsvg__parseOpacity(value); + } else if (strcmp(name, "stroke") == 0) { + if (strcmp(value, "none") == 0) { + attr->hasStroke = 0; + } else if (strncmp(value, "url(", 4) == 0) { + attr->hasStroke = 2; + nsvg__parseUrl(attr->strokeGradient, value); + } else { + attr->hasStroke = 1; + attr->strokeColor = nsvg__parseColor(value); + } + } else if (strcmp(name, "stroke-width") == 0) { + attr->strokeWidth = nsvg__parseCoordinate(p, value, 0.0f, nsvg__actualLength(p)); + } else if (strcmp(name, "stroke-dasharray") == 0) { + attr->strokeDashCount = nsvg__parseStrokeDashArray(p, value, attr->strokeDashArray); + } else if (strcmp(name, "stroke-dashoffset") == 0) { + attr->strokeDashOffset = nsvg__parseCoordinate(p, value, 0.0f, nsvg__actualLength(p)); + } else if (strcmp(name, "stroke-opacity") == 0) { + attr->strokeOpacity = nsvg__parseOpacity(value); + } else if (strcmp(name, "stroke-linecap") == 0) { + attr->strokeLineCap = nsvg__parseLineCap(value); + } else if (strcmp(name, "stroke-linejoin") == 0) { + attr->strokeLineJoin = nsvg__parseLineJoin(value); + } else if (strcmp(name, "stroke-miterlimit") == 0) { + attr->miterLimit = nsvg__parseMiterLimit(value); + } else if (strcmp(name, "fill-rule") == 0) { + attr->fillRule = nsvg__parseFillRule(value); + } else if (strcmp(name, "font-size") == 0) { + attr->fontSize = nsvg__parseCoordinate(p, value, 0.0f, nsvg__actualLength(p)); + } else if (strcmp(name, "transform") == 0) { + nsvg__parseTransform(xform, value); + nsvg__xformPremultiply(attr->xform, xform); + } else if (strcmp(name, "stop-color") == 0) { + attr->stopColor = nsvg__parseColor(value); + } else if (strcmp(name, "stop-opacity") == 0) { + attr->stopOpacity = nsvg__parseOpacity(value); + } else if (strcmp(name, "offset") == 0) { + attr->stopOffset = nsvg__parseCoordinate(p, value, 0.0f, 1.0f); + } else if (strcmp(name, "id") == 0) { + strncpy(attr->id, value, 63); + attr->id[63] = '\0'; + } else { + return 0; + } + return 1; +} + +static int nsvg__parseNameValue(NSVGparser* p, const char* start, const char* end) +{ + const char* str; + const char* val; + char name[512]; + char value[512]; + int n; + + str = start; + while (str < end && *str != ':') ++str; + + val = str; + + // Right Trim + while (str > start && (*str == ':' || nsvg__isspace(*str))) --str; + ++str; + + n = (int)(str - start); + if (n > 511) n = 511; + if (n) memcpy(name, start, n); + name[n] = 0; + + while (val < end && (*val == ':' || nsvg__isspace(*val))) ++val; + + n = (int)(end - val); + if (n > 511) n = 511; + if (n) memcpy(value, val, n); + value[n] = 0; + + return nsvg__parseAttr(p, name, value); +} + +static void nsvg__parseStyle(NSVGparser* p, const char* str) +{ + const char* start; + const char* end; + + while (*str) { + // Left Trim + while(*str && nsvg__isspace(*str)) ++str; + start = str; + while(*str && *str != ';') ++str; + end = str; + + // Right Trim + while (end > start && (*end == ';' || nsvg__isspace(*end))) --end; + ++end; + + nsvg__parseNameValue(p, start, end); + if (*str) ++str; + } +} + +static void nsvg__parseAttribs(NSVGparser* p, const char** attr) +{ + int i; + for (i = 0; attr[i]; i += 2) + { + if (strcmp(attr[i], "style") == 0) + nsvg__parseStyle(p, attr[i + 1]); + else + nsvg__parseAttr(p, attr[i], attr[i + 1]); + } +} + +static int nsvg__getArgsPerElement(char cmd) +{ + switch (cmd) { + case 'v': + case 'V': + case 'h': + case 'H': + return 1; + case 'm': + case 'M': + case 'l': + case 'L': + case 't': + case 'T': + return 2; + case 'q': + case 'Q': + case 's': + case 'S': + return 4; + case 'c': + case 'C': + return 6; + case 'a': + case 'A': + return 7; + } + return 0; +} + +static void nsvg__pathMoveTo(NSVGparser* p, float* cpx, float* cpy, float* args, int rel) +{ + if (rel) { + *cpx += args[0]; + *cpy += args[1]; + } else { + *cpx = args[0]; + *cpy = args[1]; + } + nsvg__moveTo(p, *cpx, *cpy); +} + +static void nsvg__pathLineTo(NSVGparser* p, float* cpx, float* cpy, float* args, int rel) +{ + if (rel) { + *cpx += args[0]; + *cpy += args[1]; + } else { + *cpx = args[0]; + *cpy = args[1]; + } + nsvg__lineTo(p, *cpx, *cpy); +} + +static void nsvg__pathHLineTo(NSVGparser* p, float* cpx, float* cpy, float* args, int rel) +{ + if (rel) + *cpx += args[0]; + else + *cpx = args[0]; + nsvg__lineTo(p, *cpx, *cpy); +} + +static void nsvg__pathVLineTo(NSVGparser* p, float* cpx, float* cpy, float* args, int rel) +{ + if (rel) + *cpy += args[0]; + else + *cpy = args[0]; + nsvg__lineTo(p, *cpx, *cpy); +} + +static void nsvg__pathCubicBezTo(NSVGparser* p, float* cpx, float* cpy, + float* cpx2, float* cpy2, float* args, int rel) +{ + float x2, y2, cx1, cy1, cx2, cy2; + + if (rel) { + cx1 = *cpx + args[0]; + cy1 = *cpy + args[1]; + cx2 = *cpx + args[2]; + cy2 = *cpy + args[3]; + x2 = *cpx + args[4]; + y2 = *cpy + args[5]; + } else { + cx1 = args[0]; + cy1 = args[1]; + cx2 = args[2]; + cy2 = args[3]; + x2 = args[4]; + y2 = args[5]; + } + + nsvg__cubicBezTo(p, cx1,cy1, cx2,cy2, x2,y2); + + *cpx2 = cx2; + *cpy2 = cy2; + *cpx = x2; + *cpy = y2; +} + +static void nsvg__pathCubicBezShortTo(NSVGparser* p, float* cpx, float* cpy, + float* cpx2, float* cpy2, float* args, int rel) +{ + float x1, y1, x2, y2, cx1, cy1, cx2, cy2; + + x1 = *cpx; + y1 = *cpy; + if (rel) { + cx2 = *cpx + args[0]; + cy2 = *cpy + args[1]; + x2 = *cpx + args[2]; + y2 = *cpy + args[3]; + } else { + cx2 = args[0]; + cy2 = args[1]; + x2 = args[2]; + y2 = args[3]; + } + + cx1 = 2*x1 - *cpx2; + cy1 = 2*y1 - *cpy2; + + nsvg__cubicBezTo(p, cx1,cy1, cx2,cy2, x2,y2); + + *cpx2 = cx2; + *cpy2 = cy2; + *cpx = x2; + *cpy = y2; +} + +static void nsvg__pathQuadBezTo(NSVGparser* p, float* cpx, float* cpy, + float* cpx2, float* cpy2, float* args, int rel) +{ + float x1, y1, x2, y2, cx, cy; + float cx1, cy1, cx2, cy2; + + x1 = *cpx; + y1 = *cpy; + if (rel) { + cx = *cpx + args[0]; + cy = *cpy + args[1]; + x2 = *cpx + args[2]; + y2 = *cpy + args[3]; + } else { + cx = args[0]; + cy = args[1]; + x2 = args[2]; + y2 = args[3]; + } + + // Convert to cubic bezier + cx1 = x1 + 2.0f/3.0f*(cx - x1); + cy1 = y1 + 2.0f/3.0f*(cy - y1); + cx2 = x2 + 2.0f/3.0f*(cx - x2); + cy2 = y2 + 2.0f/3.0f*(cy - y2); + + nsvg__cubicBezTo(p, cx1,cy1, cx2,cy2, x2,y2); + + *cpx2 = cx; + *cpy2 = cy; + *cpx = x2; + *cpy = y2; +} + +static void nsvg__pathQuadBezShortTo(NSVGparser* p, float* cpx, float* cpy, + float* cpx2, float* cpy2, float* args, int rel) +{ + float x1, y1, x2, y2, cx, cy; + float cx1, cy1, cx2, cy2; + + x1 = *cpx; + y1 = *cpy; + if (rel) { + x2 = *cpx + args[0]; + y2 = *cpy + args[1]; + } else { + x2 = args[0]; + y2 = args[1]; + } + + cx = 2*x1 - *cpx2; + cy = 2*y1 - *cpy2; + + // Convert to cubix bezier + cx1 = x1 + 2.0f/3.0f*(cx - x1); + cy1 = y1 + 2.0f/3.0f*(cy - y1); + cx2 = x2 + 2.0f/3.0f*(cx - x2); + cy2 = y2 + 2.0f/3.0f*(cy - y2); + + nsvg__cubicBezTo(p, cx1,cy1, cx2,cy2, x2,y2); + + *cpx2 = cx; + *cpy2 = cy; + *cpx = x2; + *cpy = y2; +} + +static float nsvg__sqr(float x) { return x*x; } +static float nsvg__vmag(float x, float y) { return sqrtf(x*x + y*y); } + +static float nsvg__vecrat(float ux, float uy, float vx, float vy) +{ + return (ux*vx + uy*vy) / (nsvg__vmag(ux,uy) * nsvg__vmag(vx,vy)); +} + +static float nsvg__vecang(float ux, float uy, float vx, float vy) +{ + float r = nsvg__vecrat(ux,uy, vx,vy); + if (r < -1.0f) r = -1.0f; + if (r > 1.0f) r = 1.0f; + return ((ux*vy < uy*vx) ? -1.0f : 1.0f) * acosf(r); +} + +static void nsvg__pathArcTo(NSVGparser* p, float* cpx, float* cpy, float* args, int rel) +{ + // Ported from canvg (https://code.google.com/p/canvg/) + float rx, ry, rotx; + float x1, y1, x2, y2, cx, cy, dx, dy, d; + float x1p, y1p, cxp, cyp, s, sa, sb; + float ux, uy, vx, vy, a1, da; + float x, y, tanx, tany, a, px = 0, py = 0, ptanx = 0, ptany = 0, t[6]; + float sinrx, cosrx; + int fa, fs; + int i, ndivs; + float hda, kappa; + + rx = fabsf(args[0]); // y radius + ry = fabsf(args[1]); // x radius + rotx = args[2] / 180.0f * NSVG_PI; // x rotation angle + fa = fabsf(args[3]) > 1e-6 ? 1 : 0; // Large arc + fs = fabsf(args[4]) > 1e-6 ? 1 : 0; // Sweep direction + x1 = *cpx; // start point + y1 = *cpy; + if (rel) { // end point + x2 = *cpx + args[5]; + y2 = *cpy + args[6]; + } else { + x2 = args[5]; + y2 = args[6]; + } + + dx = x1 - x2; + dy = y1 - y2; + d = sqrtf(dx*dx + dy*dy); + if (d < 1e-6f || rx < 1e-6f || ry < 1e-6f) { + // The arc degenerates to a line + nsvg__lineTo(p, x2, y2); + *cpx = x2; + *cpy = y2; + return; + } + + sinrx = sinf(rotx); + cosrx = cosf(rotx); + + // Convert to center point parameterization. + // http://www.w3.org/TR/SVG11/implnote.html#ArcImplementationNotes + // 1) Compute x1', y1' + x1p = cosrx * dx / 2.0f + sinrx * dy / 2.0f; + y1p = -sinrx * dx / 2.0f + cosrx * dy / 2.0f; + d = nsvg__sqr(x1p)/nsvg__sqr(rx) + nsvg__sqr(y1p)/nsvg__sqr(ry); + if (d > 1) { + d = sqrtf(d); + rx *= d; + ry *= d; + } + // 2) Compute cx', cy' + s = 0.0f; + sa = nsvg__sqr(rx)*nsvg__sqr(ry) - nsvg__sqr(rx)*nsvg__sqr(y1p) - nsvg__sqr(ry)*nsvg__sqr(x1p); + sb = nsvg__sqr(rx)*nsvg__sqr(y1p) + nsvg__sqr(ry)*nsvg__sqr(x1p); + if (sa < 0.0f) sa = 0.0f; + if (sb > 0.0f) + s = sqrtf(sa / sb); + if (fa == fs) + s = -s; + cxp = s * rx * y1p / ry; + cyp = s * -ry * x1p / rx; + + // 3) Compute cx,cy from cx',cy' + cx = (x1 + x2)/2.0f + cosrx*cxp - sinrx*cyp; + cy = (y1 + y2)/2.0f + sinrx*cxp + cosrx*cyp; + + // 4) Calculate theta1, and delta theta. + ux = (x1p - cxp) / rx; + uy = (y1p - cyp) / ry; + vx = (-x1p - cxp) / rx; + vy = (-y1p - cyp) / ry; + a1 = nsvg__vecang(1.0f,0.0f, ux,uy); // Initial angle + da = nsvg__vecang(ux,uy, vx,vy); // Delta angle + +// if (vecrat(ux,uy,vx,vy) <= -1.0f) da = NSVG_PI; +// if (vecrat(ux,uy,vx,vy) >= 1.0f) da = 0; + + if (fs == 0 && da > 0) + da -= 2 * NSVG_PI; + else if (fs == 1 && da < 0) + da += 2 * NSVG_PI; + + // Approximate the arc using cubic spline segments. + t[0] = cosrx; t[1] = sinrx; + t[2] = -sinrx; t[3] = cosrx; + t[4] = cx; t[5] = cy; + + // Split arc into max 90 degree segments. + // The loop assumes an iteration per end point (including start and end), this +1. + ndivs = (int)(fabsf(da) / (NSVG_PI*0.5f) + 1.0f); + hda = (da / (float)ndivs) / 2.0f; + kappa = fabsf(4.0f / 3.0f * (1.0f - cosf(hda)) / sinf(hda)); + if (da < 0.0f) + kappa = -kappa; + + for (i = 0; i <= ndivs; i++) { + a = a1 + da * ((float)i/(float)ndivs); + dx = cosf(a); + dy = sinf(a); + nsvg__xformPoint(&x, &y, dx*rx, dy*ry, t); // position + nsvg__xformVec(&tanx, &tany, -dy*rx * kappa, dx*ry * kappa, t); // tangent + if (i > 0) + nsvg__cubicBezTo(p, px+ptanx,py+ptany, x-tanx, y-tany, x, y); + px = x; + py = y; + ptanx = tanx; + ptany = tany; + } + + *cpx = x2; + *cpy = y2; +} + +static void nsvg__parsePath(NSVGparser* p, const char** attr) +{ + const char* s = NULL; + char cmd = '\0'; + float args[10]; + int nargs; + int rargs = 0; + float cpx, cpy, cpx2, cpy2; + const char* tmp[4]; + char closedFlag; + int i; + char item[64]; + + for (i = 0; attr[i]; i += 2) { + if (strcmp(attr[i], "d") == 0) { + s = attr[i + 1]; + } else { + tmp[0] = attr[i]; + tmp[1] = attr[i + 1]; + tmp[2] = 0; + tmp[3] = 0; + nsvg__parseAttribs(p, tmp); + } + } + + if (s) { + nsvg__resetPath(p); + cpx = 0; cpy = 0; + cpx2 = 0; cpy2 = 0; + closedFlag = 0; + nargs = 0; + + while (*s) { + s = nsvg__getNextPathItem(s, item); + if (!*item) break; + if (nsvg__isnum(item[0])) { + if (nargs < 10) + args[nargs++] = (float)nsvg__atof(item); + if (nargs >= rargs) { + switch (cmd) { + case 'm': + case 'M': + nsvg__pathMoveTo(p, &cpx, &cpy, args, cmd == 'm' ? 1 : 0); + // Moveto can be followed by multiple coordinate pairs, + // which should be treated as linetos. + cmd = (cmd == 'm') ? 'l' : 'L'; + rargs = nsvg__getArgsPerElement(cmd); + cpx2 = cpx; cpy2 = cpy; + break; + case 'l': + case 'L': + nsvg__pathLineTo(p, &cpx, &cpy, args, cmd == 'l' ? 1 : 0); + cpx2 = cpx; cpy2 = cpy; + break; + case 'H': + case 'h': + nsvg__pathHLineTo(p, &cpx, &cpy, args, cmd == 'h' ? 1 : 0); + cpx2 = cpx; cpy2 = cpy; + break; + case 'V': + case 'v': + nsvg__pathVLineTo(p, &cpx, &cpy, args, cmd == 'v' ? 1 : 0); + cpx2 = cpx; cpy2 = cpy; + break; + case 'C': + case 'c': + nsvg__pathCubicBezTo(p, &cpx, &cpy, &cpx2, &cpy2, args, cmd == 'c' ? 1 : 0); + break; + case 'S': + case 's': + nsvg__pathCubicBezShortTo(p, &cpx, &cpy, &cpx2, &cpy2, args, cmd == 's' ? 1 : 0); + break; + case 'Q': + case 'q': + nsvg__pathQuadBezTo(p, &cpx, &cpy, &cpx2, &cpy2, args, cmd == 'q' ? 1 : 0); + break; + case 'T': + case 't': + nsvg__pathQuadBezShortTo(p, &cpx, &cpy, &cpx2, &cpy2, args, cmd == 't' ? 1 : 0); + break; + case 'A': + case 'a': + nsvg__pathArcTo(p, &cpx, &cpy, args, cmd == 'a' ? 1 : 0); + cpx2 = cpx; cpy2 = cpy; + break; + default: + if (nargs >= 2) { + cpx = args[nargs-2]; + cpy = args[nargs-1]; + cpx2 = cpx; cpy2 = cpy; + } + break; + } + nargs = 0; + } + } else { + cmd = item[0]; + rargs = nsvg__getArgsPerElement(cmd); + if (cmd == 'M' || cmd == 'm') { + // Commit path. + if (p->npts > 0) + nsvg__addPath(p, closedFlag); + // Start new subpath. + nsvg__resetPath(p); + closedFlag = 0; + nargs = 0; + } else if (cmd == 'Z' || cmd == 'z') { + closedFlag = 1; + // Commit path. + if (p->npts > 0) { + // Move current point to first point + cpx = p->pts[0]; + cpy = p->pts[1]; + cpx2 = cpx; cpy2 = cpy; + nsvg__addPath(p, closedFlag); + } + // Start new subpath. + nsvg__resetPath(p); + nsvg__moveTo(p, cpx, cpy); + closedFlag = 0; + nargs = 0; + } + } + } + // Commit path. + if (p->npts) + nsvg__addPath(p, closedFlag); + } + + nsvg__addShape(p); +} + +static void nsvg__parseRect(NSVGparser* p, const char** attr) +{ + float x = 0.0f; + float y = 0.0f; + float w = 0.0f; + float h = 0.0f; + float rx = -1.0f; // marks not set + float ry = -1.0f; + int i; + + for (i = 0; attr[i]; i += 2) { + if (!nsvg__parseAttr(p, attr[i], attr[i + 1])) { + if (strcmp(attr[i], "x") == 0) x = nsvg__parseCoordinate(p, attr[i+1], nsvg__actualOrigX(p), nsvg__actualWidth(p)); + if (strcmp(attr[i], "y") == 0) y = nsvg__parseCoordinate(p, attr[i+1], nsvg__actualOrigY(p), nsvg__actualHeight(p)); + if (strcmp(attr[i], "width") == 0) w = nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualWidth(p)); + if (strcmp(attr[i], "height") == 0) h = nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualHeight(p)); + if (strcmp(attr[i], "rx") == 0) rx = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualWidth(p))); + if (strcmp(attr[i], "ry") == 0) ry = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualHeight(p))); + } + } + + if (rx < 0.0f && ry > 0.0f) rx = ry; + if (ry < 0.0f && rx > 0.0f) ry = rx; + if (rx < 0.0f) rx = 0.0f; + if (ry < 0.0f) ry = 0.0f; + if (rx > w/2.0f) rx = w/2.0f; + if (ry > h/2.0f) ry = h/2.0f; + + if (w != 0.0f && h != 0.0f) { + nsvg__resetPath(p); + + if (rx < 0.00001f || ry < 0.0001f) { + nsvg__moveTo(p, x, y); + nsvg__lineTo(p, x+w, y); + nsvg__lineTo(p, x+w, y+h); + nsvg__lineTo(p, x, y+h); + } else { + // Rounded rectangle + nsvg__moveTo(p, x+rx, y); + nsvg__lineTo(p, x+w-rx, y); + nsvg__cubicBezTo(p, x+w-rx*(1-NSVG_KAPPA90), y, x+w, y+ry*(1-NSVG_KAPPA90), x+w, y+ry); + nsvg__lineTo(p, x+w, y+h-ry); + nsvg__cubicBezTo(p, x+w, y+h-ry*(1-NSVG_KAPPA90), x+w-rx*(1-NSVG_KAPPA90), y+h, x+w-rx, y+h); + nsvg__lineTo(p, x+rx, y+h); + nsvg__cubicBezTo(p, x+rx*(1-NSVG_KAPPA90), y+h, x, y+h-ry*(1-NSVG_KAPPA90), x, y+h-ry); + nsvg__lineTo(p, x, y+ry); + nsvg__cubicBezTo(p, x, y+ry*(1-NSVG_KAPPA90), x+rx*(1-NSVG_KAPPA90), y, x+rx, y); + } + + nsvg__addPath(p, 1); + + nsvg__addShape(p); + } +} + +static void nsvg__parseCircle(NSVGparser* p, const char** attr) +{ + float cx = 0.0f; + float cy = 0.0f; + float r = 0.0f; + int i; + + for (i = 0; attr[i]; i += 2) { + if (!nsvg__parseAttr(p, attr[i], attr[i + 1])) { + if (strcmp(attr[i], "cx") == 0) cx = nsvg__parseCoordinate(p, attr[i+1], nsvg__actualOrigX(p), nsvg__actualWidth(p)); + if (strcmp(attr[i], "cy") == 0) cy = nsvg__parseCoordinate(p, attr[i+1], nsvg__actualOrigY(p), nsvg__actualHeight(p)); + if (strcmp(attr[i], "r") == 0) r = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualLength(p))); + } + } + + if (r > 0.0f) { + nsvg__resetPath(p); + + nsvg__moveTo(p, cx+r, cy); + nsvg__cubicBezTo(p, cx+r, cy+r*NSVG_KAPPA90, cx+r*NSVG_KAPPA90, cy+r, cx, cy+r); + nsvg__cubicBezTo(p, cx-r*NSVG_KAPPA90, cy+r, cx-r, cy+r*NSVG_KAPPA90, cx-r, cy); + nsvg__cubicBezTo(p, cx-r, cy-r*NSVG_KAPPA90, cx-r*NSVG_KAPPA90, cy-r, cx, cy-r); + nsvg__cubicBezTo(p, cx+r*NSVG_KAPPA90, cy-r, cx+r, cy-r*NSVG_KAPPA90, cx+r, cy); + + nsvg__addPath(p, 1); + + nsvg__addShape(p); + } +} + +static void nsvg__parseEllipse(NSVGparser* p, const char** attr) +{ + float cx = 0.0f; + float cy = 0.0f; + float rx = 0.0f; + float ry = 0.0f; + int i; + + for (i = 0; attr[i]; i += 2) { + if (!nsvg__parseAttr(p, attr[i], attr[i + 1])) { + if (strcmp(attr[i], "cx") == 0) cx = nsvg__parseCoordinate(p, attr[i+1], nsvg__actualOrigX(p), nsvg__actualWidth(p)); + if (strcmp(attr[i], "cy") == 0) cy = nsvg__parseCoordinate(p, attr[i+1], nsvg__actualOrigY(p), nsvg__actualHeight(p)); + if (strcmp(attr[i], "rx") == 0) rx = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualWidth(p))); + if (strcmp(attr[i], "ry") == 0) ry = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualHeight(p))); + } + } + + if (rx > 0.0f && ry > 0.0f) { + + nsvg__resetPath(p); + + nsvg__moveTo(p, cx+rx, cy); + nsvg__cubicBezTo(p, cx+rx, cy+ry*NSVG_KAPPA90, cx+rx*NSVG_KAPPA90, cy+ry, cx, cy+ry); + nsvg__cubicBezTo(p, cx-rx*NSVG_KAPPA90, cy+ry, cx-rx, cy+ry*NSVG_KAPPA90, cx-rx, cy); + nsvg__cubicBezTo(p, cx-rx, cy-ry*NSVG_KAPPA90, cx-rx*NSVG_KAPPA90, cy-ry, cx, cy-ry); + nsvg__cubicBezTo(p, cx+rx*NSVG_KAPPA90, cy-ry, cx+rx, cy-ry*NSVG_KAPPA90, cx+rx, cy); + + nsvg__addPath(p, 1); + + nsvg__addShape(p); + } +} + +static void nsvg__parseLine(NSVGparser* p, const char** attr) +{ + float x1 = 0.0; + float y1 = 0.0; + float x2 = 0.0; + float y2 = 0.0; + int i; + + for (i = 0; attr[i]; i += 2) { + if (!nsvg__parseAttr(p, attr[i], attr[i + 1])) { + if (strcmp(attr[i], "x1") == 0) x1 = nsvg__parseCoordinate(p, attr[i + 1], nsvg__actualOrigX(p), nsvg__actualWidth(p)); + if (strcmp(attr[i], "y1") == 0) y1 = nsvg__parseCoordinate(p, attr[i + 1], nsvg__actualOrigY(p), nsvg__actualHeight(p)); + if (strcmp(attr[i], "x2") == 0) x2 = nsvg__parseCoordinate(p, attr[i + 1], nsvg__actualOrigX(p), nsvg__actualWidth(p)); + if (strcmp(attr[i], "y2") == 0) y2 = nsvg__parseCoordinate(p, attr[i + 1], nsvg__actualOrigY(p), nsvg__actualHeight(p)); + } + } + + nsvg__resetPath(p); + + nsvg__moveTo(p, x1, y1); + nsvg__lineTo(p, x2, y2); + + nsvg__addPath(p, 0); + + nsvg__addShape(p); +} + +static void nsvg__parsePoly(NSVGparser* p, const char** attr, int closeFlag) +{ + int i; + const char* s; + float args[2]; + int nargs, npts = 0; + char item[64]; + + nsvg__resetPath(p); + + for (i = 0; attr[i]; i += 2) { + if (!nsvg__parseAttr(p, attr[i], attr[i + 1])) { + if (strcmp(attr[i], "points") == 0) { + s = attr[i + 1]; + nargs = 0; + while (*s) { + s = nsvg__getNextPathItem(s, item); + args[nargs++] = (float)nsvg__atof(item); + if (nargs >= 2) { + if (npts == 0) + nsvg__moveTo(p, args[0], args[1]); + else + nsvg__lineTo(p, args[0], args[1]); + nargs = 0; + npts++; + } + } + } + } + } + + nsvg__addPath(p, (char)closeFlag); + + nsvg__addShape(p); +} + +static void nsvg__parseSVG(NSVGparser* p, const char** attr) +{ + int i; + for (i = 0; attr[i]; i += 2) { + if (!nsvg__parseAttr(p, attr[i], attr[i + 1])) { + if (strcmp(attr[i], "width") == 0) { + p->image->width = nsvg__parseCoordinate(p, attr[i + 1], 0.0f, 1.0f); + } else if (strcmp(attr[i], "height") == 0) { + p->image->height = nsvg__parseCoordinate(p, attr[i + 1], 0.0f, 1.0f); + } else if (strcmp(attr[i], "viewBox") == 0) { + sscanf(attr[i + 1], "%f%*[%%, \t]%f%*[%%, \t]%f%*[%%, \t]%f", &p->viewMinx, &p->viewMiny, &p->viewWidth, &p->viewHeight); + } else if (strcmp(attr[i], "preserveAspectRatio") == 0) { + if (strstr(attr[i + 1], "none") != 0) { + // No uniform scaling + p->alignType = NSVG_ALIGN_NONE; + } else { + // Parse X align + if (strstr(attr[i + 1], "xMin") != 0) + p->alignX = NSVG_ALIGN_MIN; + else if (strstr(attr[i + 1], "xMid") != 0) + p->alignX = NSVG_ALIGN_MID; + else if (strstr(attr[i + 1], "xMax") != 0) + p->alignX = NSVG_ALIGN_MAX; + // Parse X align + if (strstr(attr[i + 1], "yMin") != 0) + p->alignY = NSVG_ALIGN_MIN; + else if (strstr(attr[i + 1], "yMid") != 0) + p->alignY = NSVG_ALIGN_MID; + else if (strstr(attr[i + 1], "yMax") != 0) + p->alignY = NSVG_ALIGN_MAX; + // Parse meet/slice + p->alignType = NSVG_ALIGN_MEET; + if (strstr(attr[i + 1], "slice") != 0) + p->alignType = NSVG_ALIGN_SLICE; + } + } + } + } +} + +static void nsvg__parseGradient(NSVGparser* p, const char** attr, char type) +{ + int i; + NSVGgradientData* grad = (NSVGgradientData*)malloc(sizeof(NSVGgradientData)); + if (grad == NULL) return; + memset(grad, 0, sizeof(NSVGgradientData)); + grad->units = NSVG_OBJECT_SPACE; + grad->type = type; + if (grad->type == NSVG_PAINT_LINEAR_GRADIENT) { + grad->linear.x1 = nsvg__coord(0.0f, NSVG_UNITS_PERCENT); + grad->linear.y1 = nsvg__coord(0.0f, NSVG_UNITS_PERCENT); + grad->linear.x2 = nsvg__coord(100.0f, NSVG_UNITS_PERCENT); + grad->linear.y2 = nsvg__coord(0.0f, NSVG_UNITS_PERCENT); + } else if (grad->type == NSVG_PAINT_RADIAL_GRADIENT) { + grad->radial.cx = nsvg__coord(50.0f, NSVG_UNITS_PERCENT); + grad->radial.cy = nsvg__coord(50.0f, NSVG_UNITS_PERCENT); + grad->radial.r = nsvg__coord(50.0f, NSVG_UNITS_PERCENT); + } + + nsvg__xformIdentity(grad->xform); + + for (i = 0; attr[i]; i += 2) { + if (strcmp(attr[i], "id") == 0) { + strncpy(grad->id, attr[i+1], 63); + grad->id[63] = '\0'; + } else if (!nsvg__parseAttr(p, attr[i], attr[i + 1])) { + if (strcmp(attr[i], "gradientUnits") == 0) { + if (strcmp(attr[i+1], "objectBoundingBox") == 0) + grad->units = NSVG_OBJECT_SPACE; + else + grad->units = NSVG_USER_SPACE; + } else if (strcmp(attr[i], "gradientTransform") == 0) { + nsvg__parseTransform(grad->xform, attr[i + 1]); + } else if (strcmp(attr[i], "cx") == 0) { + grad->radial.cx = nsvg__parseCoordinateRaw(attr[i + 1]); + } else if (strcmp(attr[i], "cy") == 0) { + grad->radial.cy = nsvg__parseCoordinateRaw(attr[i + 1]); + } else if (strcmp(attr[i], "r") == 0) { + grad->radial.r = nsvg__parseCoordinateRaw(attr[i + 1]); + } else if (strcmp(attr[i], "fx") == 0) { + grad->radial.fx = nsvg__parseCoordinateRaw(attr[i + 1]); + } else if (strcmp(attr[i], "fy") == 0) { + grad->radial.fy = nsvg__parseCoordinateRaw(attr[i + 1]); + } else if (strcmp(attr[i], "x1") == 0) { + grad->linear.x1 = nsvg__parseCoordinateRaw(attr[i + 1]); + } else if (strcmp(attr[i], "y1") == 0) { + grad->linear.y1 = nsvg__parseCoordinateRaw(attr[i + 1]); + } else if (strcmp(attr[i], "x2") == 0) { + grad->linear.x2 = nsvg__parseCoordinateRaw(attr[i + 1]); + } else if (strcmp(attr[i], "y2") == 0) { + grad->linear.y2 = nsvg__parseCoordinateRaw(attr[i + 1]); + } else if (strcmp(attr[i], "spreadMethod") == 0) { + if (strcmp(attr[i+1], "pad") == 0) + grad->spread = NSVG_SPREAD_PAD; + else if (strcmp(attr[i+1], "reflect") == 0) + grad->spread = NSVG_SPREAD_REFLECT; + else if (strcmp(attr[i+1], "repeat") == 0) + grad->spread = NSVG_SPREAD_REPEAT; + } else if (strcmp(attr[i], "xlink:href") == 0) { + const char *href = attr[i+1]; + strncpy(grad->ref, href+1, 62); + grad->ref[62] = '\0'; + } + } + } + + grad->next = p->gradients; + p->gradients = grad; +} + +static void nsvg__parseGradientStop(NSVGparser* p, const char** attr) +{ + NSVGattrib* curAttr = nsvg__getAttr(p); + NSVGgradientData* grad; + NSVGgradientStop* stop; + int i, idx; + + curAttr->stopOffset = 0; + curAttr->stopColor = 0; + curAttr->stopOpacity = 1.0f; + + for (i = 0; attr[i]; i += 2) { + nsvg__parseAttr(p, attr[i], attr[i + 1]); + } + + // Add stop to the last gradient. + grad = p->gradients; + if (grad == NULL) return; + + grad->nstops++; + grad->stops = (NSVGgradientStop*)realloc(grad->stops, sizeof(NSVGgradientStop)*grad->nstops); + if (grad->stops == NULL) return; + + // Insert + idx = grad->nstops-1; + for (i = 0; i < grad->nstops-1; i++) { + if (curAttr->stopOffset < grad->stops[i].offset) { + idx = i; + break; + } + } + if (idx != grad->nstops-1) { + for (i = grad->nstops-1; i > idx; i--) + grad->stops[i] = grad->stops[i-1]; + } + + stop = &grad->stops[idx]; + stop->color = curAttr->stopColor; + stop->color |= (unsigned int)(curAttr->stopOpacity*255) << 24; + stop->offset = curAttr->stopOffset; +} + +static void nsvg__startElement(void* ud, const char* el, const char** attr) +{ + NSVGparser* p = (NSVGparser*)ud; + + if (p->defsFlag) { + // Skip everything but gradients in defs + if (strcmp(el, "linearGradient") == 0) { + nsvg__parseGradient(p, attr, NSVG_PAINT_LINEAR_GRADIENT); + } else if (strcmp(el, "radialGradient") == 0) { + nsvg__parseGradient(p, attr, NSVG_PAINT_RADIAL_GRADIENT); + } else if (strcmp(el, "stop") == 0) { + nsvg__parseGradientStop(p, attr); + } + return; + } + + if (strcmp(el, "g") == 0) { + nsvg__pushAttr(p); + nsvg__parseAttribs(p, attr); + } else if (strcmp(el, "path") == 0) { + if (p->pathFlag) // Do not allow nested paths. + return; + nsvg__pushAttr(p); + nsvg__parsePath(p, attr); + nsvg__popAttr(p); + } else if (strcmp(el, "rect") == 0) { + nsvg__pushAttr(p); + nsvg__parseRect(p, attr); + nsvg__popAttr(p); + } else if (strcmp(el, "circle") == 0) { + nsvg__pushAttr(p); + nsvg__parseCircle(p, attr); + nsvg__popAttr(p); + } else if (strcmp(el, "ellipse") == 0) { + nsvg__pushAttr(p); + nsvg__parseEllipse(p, attr); + nsvg__popAttr(p); + } else if (strcmp(el, "line") == 0) { + nsvg__pushAttr(p); + nsvg__parseLine(p, attr); + nsvg__popAttr(p); + } else if (strcmp(el, "polyline") == 0) { + nsvg__pushAttr(p); + nsvg__parsePoly(p, attr, 0); + nsvg__popAttr(p); + } else if (strcmp(el, "polygon") == 0) { + nsvg__pushAttr(p); + nsvg__parsePoly(p, attr, 1); + nsvg__popAttr(p); + } else if (strcmp(el, "linearGradient") == 0) { + nsvg__parseGradient(p, attr, NSVG_PAINT_LINEAR_GRADIENT); + } else if (strcmp(el, "radialGradient") == 0) { + nsvg__parseGradient(p, attr, NSVG_PAINT_RADIAL_GRADIENT); + } else if (strcmp(el, "stop") == 0) { + nsvg__parseGradientStop(p, attr); + } else if (strcmp(el, "defs") == 0) { + p->defsFlag = 1; + } else if (strcmp(el, "svg") == 0) { + nsvg__parseSVG(p, attr); + } +} + +static void nsvg__endElement(void* ud, const char* el) +{ + NSVGparser* p = (NSVGparser*)ud; + + if (strcmp(el, "g") == 0) { + nsvg__popAttr(p); + } else if (strcmp(el, "path") == 0) { + p->pathFlag = 0; + } else if (strcmp(el, "defs") == 0) { + p->defsFlag = 0; + } +} + +static void nsvg__content(void* ud, const char* s) +{ + NSVG_NOTUSED(ud); + NSVG_NOTUSED(s); + // empty +} + +static void nsvg__imageBounds(NSVGparser* p, float* bounds) +{ + NSVGshape* shape; + shape = p->image->shapes; + if (shape == NULL) { + bounds[0] = bounds[1] = bounds[2] = bounds[3] = 0.0; + return; + } + bounds[0] = shape->bounds[0]; + bounds[1] = shape->bounds[1]; + bounds[2] = shape->bounds[2]; + bounds[3] = shape->bounds[3]; + for (shape = shape->next; shape != NULL; shape = shape->next) { + bounds[0] = nsvg__minf(bounds[0], shape->bounds[0]); + bounds[1] = nsvg__minf(bounds[1], shape->bounds[1]); + bounds[2] = nsvg__maxf(bounds[2], shape->bounds[2]); + bounds[3] = nsvg__maxf(bounds[3], shape->bounds[3]); + } +} + +static float nsvg__viewAlign(float content, float container, int type) +{ + if (type == NSVG_ALIGN_MIN) + return 0; + else if (type == NSVG_ALIGN_MAX) + return container - content; + // mid + return (container - content) * 0.5f; +} + +static void nsvg__scaleGradient(NSVGgradient* grad, float tx, float ty, float sx, float sy) +{ + float t[6]; + nsvg__xformSetTranslation(t, tx, ty); + nsvg__xformMultiply (grad->xform, t); + + nsvg__xformSetScale(t, sx, sy); + nsvg__xformMultiply (grad->xform, t); +} + +static void nsvg__scaleToViewbox(NSVGparser* p, const char* units) +{ + NSVGshape* shape; + NSVGpath* path; + float tx, ty, sx, sy, us, bounds[4], t[6], avgs; + int i; + float* pt; + + // Guess image size if not set completely. + nsvg__imageBounds(p, bounds); + + if (p->viewWidth == 0) { + if (p->image->width > 0) { + p->viewWidth = p->image->width; + } else { + p->viewMinx = bounds[0]; + p->viewWidth = bounds[2] - bounds[0]; + } + } + if (p->viewHeight == 0) { + if (p->image->height > 0) { + p->viewHeight = p->image->height; + } else { + p->viewMiny = bounds[1]; + p->viewHeight = bounds[3] - bounds[1]; + } + } + if (p->image->width == 0) + p->image->width = p->viewWidth; + if (p->image->height == 0) + p->image->height = p->viewHeight; + + tx = -p->viewMinx; + ty = -p->viewMiny; + sx = p->viewWidth > 0 ? p->image->width / p->viewWidth : 0; + sy = p->viewHeight > 0 ? p->image->height / p->viewHeight : 0; + // Unit scaling + us = 1.0f / nsvg__convertToPixels(p, nsvg__coord(1.0f, nsvg__parseUnits(units)), 0.0f, 1.0f); + + // Fix aspect ratio + if (p->alignType == NSVG_ALIGN_MEET) { + // fit whole image into viewbox + sx = sy = nsvg__minf(sx, sy); + tx += nsvg__viewAlign(p->viewWidth*sx, p->image->width, p->alignX) / sx; + ty += nsvg__viewAlign(p->viewHeight*sy, p->image->height, p->alignY) / sy; + } else if (p->alignType == NSVG_ALIGN_SLICE) { + // fill whole viewbox with image + sx = sy = nsvg__maxf(sx, sy); + tx += nsvg__viewAlign(p->viewWidth*sx, p->image->width, p->alignX) / sx; + ty += nsvg__viewAlign(p->viewHeight*sy, p->image->height, p->alignY) / sy; + } + + // Transform + sx *= us; + sy *= us; + avgs = (sx+sy) / 2.0f; + for (shape = p->image->shapes; shape != NULL; shape = shape->next) { + shape->bounds[0] = (shape->bounds[0] + tx) * sx; + shape->bounds[1] = (shape->bounds[1] + ty) * sy; + shape->bounds[2] = (shape->bounds[2] + tx) * sx; + shape->bounds[3] = (shape->bounds[3] + ty) * sy; + for (path = shape->paths; path != NULL; path = path->next) { + path->bounds[0] = (path->bounds[0] + tx) * sx; + path->bounds[1] = (path->bounds[1] + ty) * sy; + path->bounds[2] = (path->bounds[2] + tx) * sx; + path->bounds[3] = (path->bounds[3] + ty) * sy; + for (i =0; i < path->npts; i++) { + pt = &path->pts[i*2]; + pt[0] = (pt[0] + tx) * sx; + pt[1] = (pt[1] + ty) * sy; + } + } + + if (shape->fill.type == NSVG_PAINT_LINEAR_GRADIENT || shape->fill.type == NSVG_PAINT_RADIAL_GRADIENT) { + nsvg__scaleGradient(shape->fill.gradient, tx,ty, sx,sy); + memcpy(t, shape->fill.gradient->xform, sizeof(float)*6); + nsvg__xformInverse(shape->fill.gradient->xform, t); + } + if (shape->stroke.type == NSVG_PAINT_LINEAR_GRADIENT || shape->stroke.type == NSVG_PAINT_RADIAL_GRADIENT) { + nsvg__scaleGradient(shape->stroke.gradient, tx,ty, sx,sy); + memcpy(t, shape->stroke.gradient->xform, sizeof(float)*6); + nsvg__xformInverse(shape->stroke.gradient->xform, t); + } + + shape->strokeWidth *= avgs; + shape->strokeDashOffset *= avgs; + for (i = 0; i < shape->strokeDashCount; i++) + shape->strokeDashArray[i] *= avgs; + } +} + +NSVGimage* nsvgParse(char* input, const char* units, float dpi) +{ + NSVGparser* p; + NSVGimage* ret = 0; + + p = nsvg__createParser(); + if (p == NULL) { + return NULL; + } + p->dpi = dpi; + + nsvg__parseXML(input, nsvg__startElement, nsvg__endElement, nsvg__content, p); + + // Scale to viewBox + nsvg__scaleToViewbox(p, units); + + ret = p->image; + p->image = NULL; + + nsvg__deleteParser(p); + + return ret; +} + +NSVGimage* nsvgParseFromFile(const char* filename, const char* units, float dpi) +{ + FILE* fp = NULL; + size_t size; + char* data = NULL; + NSVGimage* image = NULL; + + fp = fopen(filename, "rb"); + if (!fp) goto error; + fseek(fp, 0, SEEK_END); + size = ftell(fp); + fseek(fp, 0, SEEK_SET); + data = (char*)malloc(size+1); + if (data == NULL) goto error; + if (fread(data, 1, size, fp) != size) goto error; + data[size] = '\0'; // Must be null terminated. + fclose(fp); + image = nsvgParse(data, units, dpi); + free(data); + + return image; + +error: + if (fp) fclose(fp); + if (data) free(data); + if (image) nsvgDelete(image); + return NULL; +} + +void nsvgDelete(NSVGimage* image) +{ + NSVGshape *snext, *shape; + if (image == NULL) return; + shape = image->shapes; + while (shape != NULL) { + snext = shape->next; + nsvg__deletePaths(shape->paths); + nsvg__deletePaint(&shape->fill); + nsvg__deletePaint(&shape->stroke); + free(shape); + shape = snext; + } + free(image); +} + +#endif diff --git a/thirdparty/nanosvg/src/nanosvgrast.h b/thirdparty/nanosvg/src/nanosvgrast.h new file mode 100644 index 0000000000..2940c1f916 --- /dev/null +++ b/thirdparty/nanosvg/src/nanosvgrast.h @@ -0,0 +1,1447 @@ +/* + * Copyright (c) 2013-14 Mikko Mononen memon@inside.org + * + * This software is provided 'as-is', without any express or implied + * warranty. In no event will the authors be held liable for any damages + * arising from the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software + * in a product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * The polygon rasterization is heavily based on stb_truetype rasterizer + * by Sean Barrett - http://nothings.org/ + * + */ + +#ifndef NANOSVGRAST_H +#define NANOSVGRAST_H + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct NSVGrasterizer NSVGrasterizer; + +/* Example Usage: + // Load SVG + struct SNVGImage* image = nsvgParseFromFile("test.svg."); + + // Create rasterizer (can be used to render multiple images). + struct NSVGrasterizer* rast = nsvgCreateRasterizer(); + // Allocate memory for image + unsigned char* img = malloc(w*h*4); + // Rasterize + nsvgRasterize(rast, image, 0,0,1, img, w, h, w*4); +*/ + +// Allocated rasterizer context. +NSVGrasterizer* nsvgCreateRasterizer(); + +// Rasterizes SVG image, returns RGBA image (non-premultiplied alpha) +// r - pointer to rasterizer context +// image - pointer to image to rasterize +// tx,ty - image offset (applied after scaling) +// scale - image scale +// dst - pointer to destination image data, 4 bytes per pixel (RGBA) +// w - width of the image to render +// h - height of the image to render +// stride - number of bytes per scaleline in the destination buffer +void nsvgRasterize(NSVGrasterizer* r, + NSVGimage* image, float tx, float ty, float scale, + unsigned char* dst, int w, int h, int stride); + +// Deletes rasterizer context. +void nsvgDeleteRasterizer(NSVGrasterizer*); + + +#ifdef __cplusplus +} +#endif + +#endif // NANOSVGRAST_H + +#ifdef NANOSVGRAST_IMPLEMENTATION + +#include + +#define NSVG__SUBSAMPLES 5 +#define NSVG__FIXSHIFT 10 +#define NSVG__FIX (1 << NSVG__FIXSHIFT) +#define NSVG__FIXMASK (NSVG__FIX-1) +#define NSVG__MEMPAGE_SIZE 1024 + +typedef struct NSVGedge { + float x0,y0, x1,y1; + int dir; + struct NSVGedge* next; +} NSVGedge; + +typedef struct NSVGpoint { + float x, y; + float dx, dy; + float len; + float dmx, dmy; + unsigned char flags; +} NSVGpoint; + +typedef struct NSVGactiveEdge { + int x,dx; + float ey; + int dir; + struct NSVGactiveEdge *next; +} NSVGactiveEdge; + +typedef struct NSVGmemPage { + unsigned char mem[NSVG__MEMPAGE_SIZE]; + int size; + struct NSVGmemPage* next; +} NSVGmemPage; + +typedef struct NSVGcachedPaint { + char type; + char spread; + float xform[6]; + unsigned int colors[256]; +} NSVGcachedPaint; + +struct NSVGrasterizer +{ + float px, py; + + float tessTol; + float distTol; + + NSVGedge* edges; + int nedges; + int cedges; + + NSVGpoint* points; + int npoints; + int cpoints; + + NSVGpoint* points2; + int npoints2; + int cpoints2; + + NSVGactiveEdge* freelist; + NSVGmemPage* pages; + NSVGmemPage* curpage; + + unsigned char* scanline; + int cscanline; + + unsigned char* bitmap; + int width, height, stride; +}; + +NSVGrasterizer* nsvgCreateRasterizer() +{ + NSVGrasterizer* r = (NSVGrasterizer*)malloc(sizeof(NSVGrasterizer)); + if (r == NULL) goto error; + memset(r, 0, sizeof(NSVGrasterizer)); + + r->tessTol = 0.25f; + r->distTol = 0.01f; + + return r; + +error: + nsvgDeleteRasterizer(r); + return NULL; +} + +void nsvgDeleteRasterizer(NSVGrasterizer* r) +{ + NSVGmemPage* p; + + if (r == NULL) return; + + p = r->pages; + while (p != NULL) { + NSVGmemPage* next = p->next; + free(p); + p = next; + } + + if (r->edges) free(r->edges); + if (r->points) free(r->points); + if (r->points2) free(r->points2); + if (r->scanline) free(r->scanline); + + free(r); +} + +static NSVGmemPage* nsvg__nextPage(NSVGrasterizer* r, NSVGmemPage* cur) +{ + NSVGmemPage *newp; + + // If using existing chain, return the next page in chain + if (cur != NULL && cur->next != NULL) { + return cur->next; + } + + // Alloc new page + newp = (NSVGmemPage*)malloc(sizeof(NSVGmemPage)); + if (newp == NULL) return NULL; + memset(newp, 0, sizeof(NSVGmemPage)); + + // Add to linked list + if (cur != NULL) + cur->next = newp; + else + r->pages = newp; + + return newp; +} + +static void nsvg__resetPool(NSVGrasterizer* r) +{ + NSVGmemPage* p = r->pages; + while (p != NULL) { + p->size = 0; + p = p->next; + } + r->curpage = r->pages; +} + +static unsigned char* nsvg__alloc(NSVGrasterizer* r, int size) +{ + unsigned char* buf; + if (size > NSVG__MEMPAGE_SIZE) return NULL; + if (r->curpage == NULL || r->curpage->size+size > NSVG__MEMPAGE_SIZE) { + r->curpage = nsvg__nextPage(r, r->curpage); + } + buf = &r->curpage->mem[r->curpage->size]; + r->curpage->size += size; + return buf; +} + +static int nsvg__ptEquals(float x1, float y1, float x2, float y2, float tol) +{ + float dx = x2 - x1; + float dy = y2 - y1; + return dx*dx + dy*dy < tol*tol; +} + +static void nsvg__addPathPoint(NSVGrasterizer* r, float x, float y, int flags) +{ + NSVGpoint* pt; + + if (r->npoints > 0) { + pt = &r->points[r->npoints-1]; + if (nsvg__ptEquals(pt->x,pt->y, x,y, r->distTol)) { + pt->flags = (unsigned char)(pt->flags | flags); + return; + } + } + + if (r->npoints+1 > r->cpoints) { + r->cpoints = r->cpoints > 0 ? r->cpoints * 2 : 64; + r->points = (NSVGpoint*)realloc(r->points, sizeof(NSVGpoint) * r->cpoints); + if (r->points == NULL) return; + } + + pt = &r->points[r->npoints]; + pt->x = x; + pt->y = y; + pt->flags = (unsigned char)flags; + r->npoints++; +} + +static void nsvg__appendPathPoint(NSVGrasterizer* r, NSVGpoint pt) +{ + if (r->npoints+1 > r->cpoints) { + r->cpoints = r->cpoints > 0 ? r->cpoints * 2 : 64; + r->points = (NSVGpoint*)realloc(r->points, sizeof(NSVGpoint) * r->cpoints); + if (r->points == NULL) return; + } + r->points[r->npoints] = pt; + r->npoints++; +} + +static void nsvg__duplicatePoints(NSVGrasterizer* r) +{ + if (r->npoints > r->cpoints2) { + r->cpoints2 = r->npoints; + r->points2 = (NSVGpoint*)realloc(r->points2, sizeof(NSVGpoint) * r->cpoints2); + if (r->points2 == NULL) return; + } + + memcpy(r->points2, r->points, sizeof(NSVGpoint) * r->npoints); + r->npoints2 = r->npoints; +} + +static void nsvg__addEdge(NSVGrasterizer* r, float x0, float y0, float x1, float y1) +{ + NSVGedge* e; + + // Skip horizontal edges + if (y0 == y1) + return; + + if (r->nedges+1 > r->cedges) { + r->cedges = r->cedges > 0 ? r->cedges * 2 : 64; + r->edges = (NSVGedge*)realloc(r->edges, sizeof(NSVGedge) * r->cedges); + if (r->edges == NULL) return; + } + + e = &r->edges[r->nedges]; + r->nedges++; + + if (y0 < y1) { + e->x0 = x0; + e->y0 = y0; + e->x1 = x1; + e->y1 = y1; + e->dir = 1; + } else { + e->x0 = x1; + e->y0 = y1; + e->x1 = x0; + e->y1 = y0; + e->dir = -1; + } +} + +static float nsvg__normalize(float *x, float* y) +{ + float d = sqrtf((*x)*(*x) + (*y)*(*y)); + if (d > 1e-6f) { + float id = 1.0f / d; + *x *= id; + *y *= id; + } + return d; +} + +static float nsvg__absf(float x) { return x < 0 ? -x : x; } + +static void nsvg__flattenCubicBez(NSVGrasterizer* r, + float x1, float y1, float x2, float y2, + float x3, float y3, float x4, float y4, + int level, int type) +{ + float x12,y12,x23,y23,x34,y34,x123,y123,x234,y234,x1234,y1234; + float dx,dy,d2,d3; + + if (level > 10) return; + + x12 = (x1+x2)*0.5f; + y12 = (y1+y2)*0.5f; + x23 = (x2+x3)*0.5f; + y23 = (y2+y3)*0.5f; + x34 = (x3+x4)*0.5f; + y34 = (y3+y4)*0.5f; + x123 = (x12+x23)*0.5f; + y123 = (y12+y23)*0.5f; + + dx = x4 - x1; + dy = y4 - y1; + d2 = nsvg__absf(((x2 - x4) * dy - (y2 - y4) * dx)); + d3 = nsvg__absf(((x3 - x4) * dy - (y3 - y4) * dx)); + + if ((d2 + d3)*(d2 + d3) < r->tessTol * (dx*dx + dy*dy)) { + nsvg__addPathPoint(r, x4, y4, type); + return; + } + + x234 = (x23+x34)*0.5f; + y234 = (y23+y34)*0.5f; + x1234 = (x123+x234)*0.5f; + y1234 = (y123+y234)*0.5f; + + nsvg__flattenCubicBez(r, x1,y1, x12,y12, x123,y123, x1234,y1234, level+1, 0); + nsvg__flattenCubicBez(r, x1234,y1234, x234,y234, x34,y34, x4,y4, level+1, type); +} + +static void nsvg__flattenShape(NSVGrasterizer* r, NSVGshape* shape, float scale) +{ + int i, j; + NSVGpath* path; + + for (path = shape->paths; path != NULL; path = path->next) { + r->npoints = 0; + // Flatten path + nsvg__addPathPoint(r, path->pts[0]*scale, path->pts[1]*scale, 0); + for (i = 0; i < path->npts-1; i += 3) { + float* p = &path->pts[i*2]; + nsvg__flattenCubicBez(r, p[0]*scale,p[1]*scale, p[2]*scale,p[3]*scale, p[4]*scale,p[5]*scale, p[6]*scale,p[7]*scale, 0, 0); + } + // Close path + nsvg__addPathPoint(r, path->pts[0]*scale, path->pts[1]*scale, 0); + // Build edges + for (i = 0, j = r->npoints-1; i < r->npoints; j = i++) + nsvg__addEdge(r, r->points[j].x, r->points[j].y, r->points[i].x, r->points[i].y); + } +} + +enum NSVGpointFlags +{ + NSVG_PT_CORNER = 0x01, + NSVG_PT_BEVEL = 0x02, + NSVG_PT_LEFT = 0x04 +}; + +static void nsvg__initClosed(NSVGpoint* left, NSVGpoint* right, NSVGpoint* p0, NSVGpoint* p1, float lineWidth) +{ + float w = lineWidth * 0.5f; + float dx = p1->x - p0->x; + float dy = p1->y - p0->y; + float len = nsvg__normalize(&dx, &dy); + float px = p0->x + dx*len*0.5f, py = p0->y + dy*len*0.5f; + float dlx = dy, dly = -dx; + float lx = px - dlx*w, ly = py - dly*w; + float rx = px + dlx*w, ry = py + dly*w; + left->x = lx; left->y = ly; + right->x = rx; right->y = ry; +} + +static void nsvg__buttCap(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p, float dx, float dy, float lineWidth, int connect) +{ + float w = lineWidth * 0.5f; + float px = p->x, py = p->y; + float dlx = dy, dly = -dx; + float lx = px - dlx*w, ly = py - dly*w; + float rx = px + dlx*w, ry = py + dly*w; + + nsvg__addEdge(r, lx, ly, rx, ry); + + if (connect) { + nsvg__addEdge(r, left->x, left->y, lx, ly); + nsvg__addEdge(r, rx, ry, right->x, right->y); + } + left->x = lx; left->y = ly; + right->x = rx; right->y = ry; +} + +static void nsvg__squareCap(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p, float dx, float dy, float lineWidth, int connect) +{ + float w = lineWidth * 0.5f; + float px = p->x - dx*w, py = p->y - dy*w; + float dlx = dy, dly = -dx; + float lx = px - dlx*w, ly = py - dly*w; + float rx = px + dlx*w, ry = py + dly*w; + + nsvg__addEdge(r, lx, ly, rx, ry); + + if (connect) { + nsvg__addEdge(r, left->x, left->y, lx, ly); + nsvg__addEdge(r, rx, ry, right->x, right->y); + } + left->x = lx; left->y = ly; + right->x = rx; right->y = ry; +} + +#ifndef NSVG_PI +#define NSVG_PI (3.14159265358979323846264338327f) +#endif + +static void nsvg__roundCap(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p, float dx, float dy, float lineWidth, int ncap, int connect) +{ + int i; + float w = lineWidth * 0.5f; + float px = p->x, py = p->y; + float dlx = dy, dly = -dx; + float lx = 0, ly = 0, rx = 0, ry = 0, prevx = 0, prevy = 0; + + for (i = 0; i < ncap; i++) { + float a = (float)i/(float)(ncap-1)*NSVG_PI; + float ax = cosf(a) * w, ay = sinf(a) * w; + float x = px - dlx*ax - dx*ay; + float y = py - dly*ax - dy*ay; + + if (i > 0) + nsvg__addEdge(r, prevx, prevy, x, y); + + prevx = x; + prevy = y; + + if (i == 0) { + lx = x; ly = y; + } else if (i == ncap-1) { + rx = x; ry = y; + } + } + + if (connect) { + nsvg__addEdge(r, left->x, left->y, lx, ly); + nsvg__addEdge(r, rx, ry, right->x, right->y); + } + + left->x = lx; left->y = ly; + right->x = rx; right->y = ry; +} + +static void nsvg__bevelJoin(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p0, NSVGpoint* p1, float lineWidth) +{ + float w = lineWidth * 0.5f; + float dlx0 = p0->dy, dly0 = -p0->dx; + float dlx1 = p1->dy, dly1 = -p1->dx; + float lx0 = p1->x - (dlx0 * w), ly0 = p1->y - (dly0 * w); + float rx0 = p1->x + (dlx0 * w), ry0 = p1->y + (dly0 * w); + float lx1 = p1->x - (dlx1 * w), ly1 = p1->y - (dly1 * w); + float rx1 = p1->x + (dlx1 * w), ry1 = p1->y + (dly1 * w); + + nsvg__addEdge(r, lx0, ly0, left->x, left->y); + nsvg__addEdge(r, lx1, ly1, lx0, ly0); + + nsvg__addEdge(r, right->x, right->y, rx0, ry0); + nsvg__addEdge(r, rx0, ry0, rx1, ry1); + + left->x = lx1; left->y = ly1; + right->x = rx1; right->y = ry1; +} + +static void nsvg__miterJoin(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p0, NSVGpoint* p1, float lineWidth) +{ + float w = lineWidth * 0.5f; + float dlx0 = p0->dy, dly0 = -p0->dx; + float dlx1 = p1->dy, dly1 = -p1->dx; + float lx0, rx0, lx1, rx1; + float ly0, ry0, ly1, ry1; + + if (p1->flags & NSVG_PT_LEFT) { + lx0 = lx1 = p1->x - p1->dmx * w; + ly0 = ly1 = p1->y - p1->dmy * w; + nsvg__addEdge(r, lx1, ly1, left->x, left->y); + + rx0 = p1->x + (dlx0 * w); + ry0 = p1->y + (dly0 * w); + rx1 = p1->x + (dlx1 * w); + ry1 = p1->y + (dly1 * w); + nsvg__addEdge(r, right->x, right->y, rx0, ry0); + nsvg__addEdge(r, rx0, ry0, rx1, ry1); + } else { + lx0 = p1->x - (dlx0 * w); + ly0 = p1->y - (dly0 * w); + lx1 = p1->x - (dlx1 * w); + ly1 = p1->y - (dly1 * w); + nsvg__addEdge(r, lx0, ly0, left->x, left->y); + nsvg__addEdge(r, lx1, ly1, lx0, ly0); + + rx0 = rx1 = p1->x + p1->dmx * w; + ry0 = ry1 = p1->y + p1->dmy * w; + nsvg__addEdge(r, right->x, right->y, rx1, ry1); + } + + left->x = lx1; left->y = ly1; + right->x = rx1; right->y = ry1; +} + +static void nsvg__roundJoin(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p0, NSVGpoint* p1, float lineWidth, int ncap) +{ + int i, n; + float w = lineWidth * 0.5f; + float dlx0 = p0->dy, dly0 = -p0->dx; + float dlx1 = p1->dy, dly1 = -p1->dx; + float a0 = atan2f(dly0, dlx0); + float a1 = atan2f(dly1, dlx1); + float da = a1 - a0; + float lx, ly, rx, ry; + + if (da < NSVG_PI) da += NSVG_PI*2; + if (da > NSVG_PI) da -= NSVG_PI*2; + + n = (int)ceilf((nsvg__absf(da) / NSVG_PI) * (float)ncap); + if (n < 2) n = 2; + if (n > ncap) n = ncap; + + lx = left->x; + ly = left->y; + rx = right->x; + ry = right->y; + + for (i = 0; i < n; i++) { + float u = (float)i/(float)(n-1); + float a = a0 + u*da; + float ax = cosf(a) * w, ay = sinf(a) * w; + float lx1 = p1->x - ax, ly1 = p1->y - ay; + float rx1 = p1->x + ax, ry1 = p1->y + ay; + + nsvg__addEdge(r, lx1, ly1, lx, ly); + nsvg__addEdge(r, rx, ry, rx1, ry1); + + lx = lx1; ly = ly1; + rx = rx1; ry = ry1; + } + + left->x = lx; left->y = ly; + right->x = rx; right->y = ry; +} + +static void nsvg__straightJoin(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p1, float lineWidth) +{ + float w = lineWidth * 0.5f; + float lx = p1->x - (p1->dmx * w), ly = p1->y - (p1->dmy * w); + float rx = p1->x + (p1->dmx * w), ry = p1->y + (p1->dmy * w); + + nsvg__addEdge(r, lx, ly, left->x, left->y); + nsvg__addEdge(r, right->x, right->y, rx, ry); + + left->x = lx; left->y = ly; + right->x = rx; right->y = ry; +} + +static int nsvg__curveDivs(float r, float arc, float tol) +{ + float da = acosf(r / (r + tol)) * 2.0f; + int divs = (int)ceilf(arc / da); + if (divs < 2) divs = 2; + return divs; +} + +static void nsvg__expandStroke(NSVGrasterizer* r, NSVGpoint* points, int npoints, int closed, int lineJoin, int lineCap, float lineWidth) +{ + int ncap = nsvg__curveDivs(lineWidth*0.5f, NSVG_PI, r->tessTol); // Calculate divisions per half circle. + NSVGpoint left = {0,0,0,0,0,0,0,0}, right = {0,0,0,0,0,0,0,0}, firstLeft = {0,0,0,0,0,0,0,0}, firstRight = {0,0,0,0,0,0,0,0}; + NSVGpoint* p0, *p1; + int j, s, e; + + // Build stroke edges + if (closed) { + // Looping + p0 = &points[npoints-1]; + p1 = &points[0]; + s = 0; + e = npoints; + } else { + // Add cap + p0 = &points[0]; + p1 = &points[1]; + s = 1; + e = npoints-1; + } + + if (closed) { + nsvg__initClosed(&left, &right, p0, p1, lineWidth); + firstLeft = left; + firstRight = right; + } else { + // Add cap + float dx = p1->x - p0->x; + float dy = p1->y - p0->y; + nsvg__normalize(&dx, &dy); + if (lineCap == NSVG_CAP_BUTT) + nsvg__buttCap(r, &left, &right, p0, dx, dy, lineWidth, 0); + else if (lineCap == NSVG_CAP_SQUARE) + nsvg__squareCap(r, &left, &right, p0, dx, dy, lineWidth, 0); + else if (lineCap == NSVG_CAP_ROUND) + nsvg__roundCap(r, &left, &right, p0, dx, dy, lineWidth, ncap, 0); + } + + for (j = s; j < e; ++j) { + if (p1->flags & NSVG_PT_CORNER) { + if (lineJoin == NSVG_JOIN_ROUND) + nsvg__roundJoin(r, &left, &right, p0, p1, lineWidth, ncap); + else if (lineJoin == NSVG_JOIN_BEVEL || (p1->flags & NSVG_PT_BEVEL)) + nsvg__bevelJoin(r, &left, &right, p0, p1, lineWidth); + else + nsvg__miterJoin(r, &left, &right, p0, p1, lineWidth); + } else { + nsvg__straightJoin(r, &left, &right, p1, lineWidth); + } + p0 = p1++; + } + + if (closed) { + // Loop it + nsvg__addEdge(r, firstLeft.x, firstLeft.y, left.x, left.y); + nsvg__addEdge(r, right.x, right.y, firstRight.x, firstRight.y); + } else { + // Add cap + float dx = p1->x - p0->x; + float dy = p1->y - p0->y; + nsvg__normalize(&dx, &dy); + if (lineCap == NSVG_CAP_BUTT) + nsvg__buttCap(r, &right, &left, p1, -dx, -dy, lineWidth, 1); + else if (lineCap == NSVG_CAP_SQUARE) + nsvg__squareCap(r, &right, &left, p1, -dx, -dy, lineWidth, 1); + else if (lineCap == NSVG_CAP_ROUND) + nsvg__roundCap(r, &right, &left, p1, -dx, -dy, lineWidth, ncap, 1); + } +} + +static void nsvg__prepareStroke(NSVGrasterizer* r, float miterLimit, int lineJoin) +{ + int i, j; + NSVGpoint* p0, *p1; + + p0 = &r->points[r->npoints-1]; + p1 = &r->points[0]; + for (i = 0; i < r->npoints; i++) { + // Calculate segment direction and length + p0->dx = p1->x - p0->x; + p0->dy = p1->y - p0->y; + p0->len = nsvg__normalize(&p0->dx, &p0->dy); + // Advance + p0 = p1++; + } + + // calculate joins + p0 = &r->points[r->npoints-1]; + p1 = &r->points[0]; + for (j = 0; j < r->npoints; j++) { + float dlx0, dly0, dlx1, dly1, dmr2, cross; + dlx0 = p0->dy; + dly0 = -p0->dx; + dlx1 = p1->dy; + dly1 = -p1->dx; + // Calculate extrusions + p1->dmx = (dlx0 + dlx1) * 0.5f; + p1->dmy = (dly0 + dly1) * 0.5f; + dmr2 = p1->dmx*p1->dmx + p1->dmy*p1->dmy; + if (dmr2 > 0.000001f) { + float s2 = 1.0f / dmr2; + if (s2 > 600.0f) { + s2 = 600.0f; + } + p1->dmx *= s2; + p1->dmy *= s2; + } + + // Clear flags, but keep the corner. + p1->flags = (p1->flags & NSVG_PT_CORNER) ? NSVG_PT_CORNER : 0; + + // Keep track of left turns. + cross = p1->dx * p0->dy - p0->dx * p1->dy; + if (cross > 0.0f) + p1->flags |= NSVG_PT_LEFT; + + // Check to see if the corner needs to be beveled. + if (p1->flags & NSVG_PT_CORNER) { + if ((dmr2 * miterLimit*miterLimit) < 1.0f || lineJoin == NSVG_JOIN_BEVEL || lineJoin == NSVG_JOIN_ROUND) { + p1->flags |= NSVG_PT_BEVEL; + } + } + + p0 = p1++; + } +} + +static void nsvg__flattenShapeStroke(NSVGrasterizer* r, NSVGshape* shape, float scale) +{ + int i, j, closed; + NSVGpath* path; + NSVGpoint* p0, *p1; + float miterLimit = shape->miterLimit; + int lineJoin = shape->strokeLineJoin; + int lineCap = shape->strokeLineCap; + float lineWidth = shape->strokeWidth * scale; + + for (path = shape->paths; path != NULL; path = path->next) { + // Flatten path + r->npoints = 0; + nsvg__addPathPoint(r, path->pts[0]*scale, path->pts[1]*scale, NSVG_PT_CORNER); + for (i = 0; i < path->npts-1; i += 3) { + float* p = &path->pts[i*2]; + nsvg__flattenCubicBez(r, p[0]*scale,p[1]*scale, p[2]*scale,p[3]*scale, p[4]*scale,p[5]*scale, p[6]*scale,p[7]*scale, 0, NSVG_PT_CORNER); + } + if (r->npoints < 2) + continue; + + closed = path->closed; + + // If the first and last points are the same, remove the last, mark as closed path. + p0 = &r->points[r->npoints-1]; + p1 = &r->points[0]; + if (nsvg__ptEquals(p0->x,p0->y, p1->x,p1->y, r->distTol)) { + r->npoints--; + p0 = &r->points[r->npoints-1]; + closed = 1; + } + + if (shape->strokeDashCount > 0) { + int idash = 0, dashState = 1; + float totalDist = 0, dashLen, allDashLen, dashOffset; + NSVGpoint cur; + + if (closed) + nsvg__appendPathPoint(r, r->points[0]); + + // Duplicate points -> points2. + nsvg__duplicatePoints(r); + + r->npoints = 0; + cur = r->points2[0]; + nsvg__appendPathPoint(r, cur); + + // Figure out dash offset. + allDashLen = 0; + for (j = 0; j < shape->strokeDashCount; j++) + allDashLen += shape->strokeDashArray[j]; + if (shape->strokeDashCount & 1) + allDashLen *= 2.0f; + // Find location inside pattern + dashOffset = fmodf(shape->strokeDashOffset, allDashLen); + if (dashOffset < 0.0f) + dashOffset += allDashLen; + + while (dashOffset > shape->strokeDashArray[idash]) { + dashOffset -= shape->strokeDashArray[idash]; + idash = (idash + 1) % shape->strokeDashCount; + } + dashLen = (shape->strokeDashArray[idash] - dashOffset) * scale; + + for (j = 1; j < r->npoints2; ) { + float dx = r->points2[j].x - cur.x; + float dy = r->points2[j].y - cur.y; + float dist = sqrtf(dx*dx + dy*dy); + + if ((totalDist + dist) > dashLen) { + // Calculate intermediate point + float d = (dashLen - totalDist) / dist; + float x = cur.x + dx * d; + float y = cur.y + dy * d; + nsvg__addPathPoint(r, x, y, NSVG_PT_CORNER); + + // Stroke + if (r->npoints > 1 && dashState) { + nsvg__prepareStroke(r, miterLimit, lineJoin); + nsvg__expandStroke(r, r->points, r->npoints, 0, lineJoin, lineCap, lineWidth); + } + // Advance dash pattern + dashState = !dashState; + idash = (idash+1) % shape->strokeDashCount; + dashLen = shape->strokeDashArray[idash] * scale; + // Restart + cur.x = x; + cur.y = y; + cur.flags = NSVG_PT_CORNER; + totalDist = 0.0f; + r->npoints = 0; + nsvg__appendPathPoint(r, cur); + } else { + totalDist += dist; + cur = r->points2[j]; + nsvg__appendPathPoint(r, cur); + j++; + } + } + // Stroke any leftover path + if (r->npoints > 1 && dashState) + nsvg__expandStroke(r, r->points, r->npoints, 0, lineJoin, lineCap, lineWidth); + } else { + nsvg__prepareStroke(r, miterLimit, lineJoin); + nsvg__expandStroke(r, r->points, r->npoints, closed, lineJoin, lineCap, lineWidth); + } + } +} + +static int nsvg__cmpEdge(const void *p, const void *q) +{ + const NSVGedge* a = (const NSVGedge*)p; + const NSVGedge* b = (const NSVGedge*)q; + + if (a->y0 < b->y0) return -1; + if (a->y0 > b->y0) return 1; + return 0; +} + + +static NSVGactiveEdge* nsvg__addActive(NSVGrasterizer* r, NSVGedge* e, float startPoint) +{ + NSVGactiveEdge* z; + + if (r->freelist != NULL) { + // Restore from freelist. + z = r->freelist; + r->freelist = z->next; + } else { + // Alloc new edge. + z = (NSVGactiveEdge*)nsvg__alloc(r, sizeof(NSVGactiveEdge)); + if (z == NULL) return NULL; + } + + float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0); +// STBTT_assert(e->y0 <= start_point); + // round dx down to avoid going too far + if (dxdy < 0) + z->dx = (int)(-floorf(NSVG__FIX * -dxdy)); + else + z->dx = (int)floorf(NSVG__FIX * dxdy); + z->x = (int)floorf(NSVG__FIX * (e->x0 + dxdy * (startPoint - e->y0))); +// z->x -= off_x * FIX; + z->ey = e->y1; + z->next = 0; + z->dir = e->dir; + + return z; +} + +static void nsvg__freeActive(NSVGrasterizer* r, NSVGactiveEdge* z) +{ + z->next = r->freelist; + r->freelist = z; +} + +static void nsvg__fillScanline(unsigned char* scanline, int len, int x0, int x1, int maxWeight, int* xmin, int* xmax) +{ + int i = x0 >> NSVG__FIXSHIFT; + int j = x1 >> NSVG__FIXSHIFT; + if (i < *xmin) *xmin = i; + if (j > *xmax) *xmax = j; + if (i < len && j >= 0) { + if (i == j) { + // x0,x1 are the same pixel, so compute combined coverage + scanline[i] = (unsigned char)(scanline[i] + ((x1 - x0) * maxWeight >> NSVG__FIXSHIFT)); + } else { + if (i >= 0) // add antialiasing for x0 + scanline[i] = (unsigned char)(scanline[i] + (((NSVG__FIX - (x0 & NSVG__FIXMASK)) * maxWeight) >> NSVG__FIXSHIFT)); + else + i = -1; // clip + + if (j < len) // add antialiasing for x1 + scanline[j] = (unsigned char)(scanline[j] + (((x1 & NSVG__FIXMASK) * maxWeight) >> NSVG__FIXSHIFT)); + else + j = len; // clip + + for (++i; i < j; ++i) // fill pixels between x0 and x1 + scanline[i] = (unsigned char)(scanline[i] + maxWeight); + } + } +} + +// note: this routine clips fills that extend off the edges... ideally this +// wouldn't happen, but it could happen if the truetype glyph bounding boxes +// are wrong, or if the user supplies a too-small bitmap +static void nsvg__fillActiveEdges(unsigned char* scanline, int len, NSVGactiveEdge* e, int maxWeight, int* xmin, int* xmax, char fillRule) +{ + // non-zero winding fill + int x0 = 0, w = 0; + + if (fillRule == NSVG_FILLRULE_NONZERO) { + // Non-zero + while (e != NULL) { + if (w == 0) { + // if we're currently at zero, we need to record the edge start point + x0 = e->x; w += e->dir; + } else { + int x1 = e->x; w += e->dir; + // if we went to zero, we need to draw + if (w == 0) + nsvg__fillScanline(scanline, len, x0, x1, maxWeight, xmin, xmax); + } + e = e->next; + } + } else if (fillRule == NSVG_FILLRULE_EVENODD) { + // Even-odd + while (e != NULL) { + if (w == 0) { + // if we're currently at zero, we need to record the edge start point + x0 = e->x; w = 1; + } else { + int x1 = e->x; w = 0; + nsvg__fillScanline(scanline, len, x0, x1, maxWeight, xmin, xmax); + } + e = e->next; + } + } +} + +static float nsvg__clampf(float a, float mn, float mx) { return a < mn ? mn : (a > mx ? mx : a); } + +static unsigned int nsvg__RGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a) +{ + return (r) | (g << 8) | (b << 16) | (a << 24); +} + +static unsigned int nsvg__lerpRGBA(unsigned int c0, unsigned int c1, float u) +{ + int iu = (int)(nsvg__clampf(u, 0.0f, 1.0f) * 256.0f); + int r = (((c0) & 0xff)*(256-iu) + (((c1) & 0xff)*iu)) >> 8; + int g = (((c0>>8) & 0xff)*(256-iu) + (((c1>>8) & 0xff)*iu)) >> 8; + int b = (((c0>>16) & 0xff)*(256-iu) + (((c1>>16) & 0xff)*iu)) >> 8; + int a = (((c0>>24) & 0xff)*(256-iu) + (((c1>>24) & 0xff)*iu)) >> 8; + return nsvg__RGBA((unsigned char)r, (unsigned char)g, (unsigned char)b, (unsigned char)a); +} + +static unsigned int nsvg__applyOpacity(unsigned int c, float u) +{ + int iu = (int)(nsvg__clampf(u, 0.0f, 1.0f) * 256.0f); + int r = (c) & 0xff; + int g = (c>>8) & 0xff; + int b = (c>>16) & 0xff; + int a = (((c>>24) & 0xff)*iu) >> 8; + return nsvg__RGBA((unsigned char)r, (unsigned char)g, (unsigned char)b, (unsigned char)a); +} + +static inline int nsvg__div255(int x) +{ + return ((x+1) * 257) >> 16; +} + +static void nsvg__scanlineSolid(unsigned char* dst, int count, unsigned char* cover, int x, int y, + float tx, float ty, float scale, NSVGcachedPaint* cache) +{ + + if (cache->type == NSVG_PAINT_COLOR) { + int i, cr, cg, cb, ca; + cr = cache->colors[0] & 0xff; + cg = (cache->colors[0] >> 8) & 0xff; + cb = (cache->colors[0] >> 16) & 0xff; + ca = (cache->colors[0] >> 24) & 0xff; + + for (i = 0; i < count; i++) { + int r,g,b; + int a = nsvg__div255((int)cover[0] * ca); + int ia = 255 - a; + // Premultiply + r = nsvg__div255(cr * a); + g = nsvg__div255(cg * a); + b = nsvg__div255(cb * a); + + // Blend over + r += nsvg__div255(ia * (int)dst[0]); + g += nsvg__div255(ia * (int)dst[1]); + b += nsvg__div255(ia * (int)dst[2]); + a += nsvg__div255(ia * (int)dst[3]); + + dst[0] = (unsigned char)r; + dst[1] = (unsigned char)g; + dst[2] = (unsigned char)b; + dst[3] = (unsigned char)a; + + cover++; + dst += 4; + } + } else if (cache->type == NSVG_PAINT_LINEAR_GRADIENT) { + // TODO: spread modes. + // TODO: plenty of opportunities to optimize. + float fx, fy, dx, gy; + float* t = cache->xform; + int i, cr, cg, cb, ca; + unsigned int c; + + fx = ((float)x - tx) / scale; + fy = ((float)y - ty) / scale; + dx = 1.0f / scale; + + for (i = 0; i < count; i++) { + int r,g,b,a,ia; + gy = fx*t[1] + fy*t[3] + t[5]; + c = cache->colors[(int)nsvg__clampf(gy*255.0f, 0, 255.0f)]; + cr = (c) & 0xff; + cg = (c >> 8) & 0xff; + cb = (c >> 16) & 0xff; + ca = (c >> 24) & 0xff; + + a = nsvg__div255((int)cover[0] * ca); + ia = 255 - a; + + // Premultiply + r = nsvg__div255(cr * a); + g = nsvg__div255(cg * a); + b = nsvg__div255(cb * a); + + // Blend over + r += nsvg__div255(ia * (int)dst[0]); + g += nsvg__div255(ia * (int)dst[1]); + b += nsvg__div255(ia * (int)dst[2]); + a += nsvg__div255(ia * (int)dst[3]); + + dst[0] = (unsigned char)r; + dst[1] = (unsigned char)g; + dst[2] = (unsigned char)b; + dst[3] = (unsigned char)a; + + cover++; + dst += 4; + fx += dx; + } + } else if (cache->type == NSVG_PAINT_RADIAL_GRADIENT) { + // TODO: spread modes. + // TODO: plenty of opportunities to optimize. + // TODO: focus (fx,fy) + float fx, fy, dx, gx, gy, gd; + float* t = cache->xform; + int i, cr, cg, cb, ca; + unsigned int c; + + fx = ((float)x - tx) / scale; + fy = ((float)y - ty) / scale; + dx = 1.0f / scale; + + for (i = 0; i < count; i++) { + int r,g,b,a,ia; + gx = fx*t[0] + fy*t[2] + t[4]; + gy = fx*t[1] + fy*t[3] + t[5]; + gd = sqrtf(gx*gx + gy*gy); + c = cache->colors[(int)nsvg__clampf(gd*255.0f, 0, 255.0f)]; + cr = (c) & 0xff; + cg = (c >> 8) & 0xff; + cb = (c >> 16) & 0xff; + ca = (c >> 24) & 0xff; + + a = nsvg__div255((int)cover[0] * ca); + ia = 255 - a; + + // Premultiply + r = nsvg__div255(cr * a); + g = nsvg__div255(cg * a); + b = nsvg__div255(cb * a); + + // Blend over + r += nsvg__div255(ia * (int)dst[0]); + g += nsvg__div255(ia * (int)dst[1]); + b += nsvg__div255(ia * (int)dst[2]); + a += nsvg__div255(ia * (int)dst[3]); + + dst[0] = (unsigned char)r; + dst[1] = (unsigned char)g; + dst[2] = (unsigned char)b; + dst[3] = (unsigned char)a; + + cover++; + dst += 4; + fx += dx; + } + } +} + +static void nsvg__rasterizeSortedEdges(NSVGrasterizer *r, float tx, float ty, float scale, NSVGcachedPaint* cache, char fillRule) +{ + NSVGactiveEdge *active = NULL; + int y, s; + int e = 0; + int maxWeight = (255 / NSVG__SUBSAMPLES); // weight per vertical scanline + int xmin, xmax; + + for (y = 0; y < r->height; y++) { + memset(r->scanline, 0, r->width); + xmin = r->width; + xmax = 0; + for (s = 0; s < NSVG__SUBSAMPLES; ++s) { + // find center of pixel for this scanline + float scany = (float)(y*NSVG__SUBSAMPLES + s) + 0.5f; + NSVGactiveEdge **step = &active; + + // update all active edges; + // remove all active edges that terminate before the center of this scanline + while (*step) { + NSVGactiveEdge *z = *step; + if (z->ey <= scany) { + *step = z->next; // delete from list +// NSVG__assert(z->valid); + nsvg__freeActive(r, z); + } else { + z->x += z->dx; // advance to position for current scanline + step = &((*step)->next); // advance through list + } + } + + // resort the list if needed + for (;;) { + int changed = 0; + step = &active; + while (*step && (*step)->next) { + if ((*step)->x > (*step)->next->x) { + NSVGactiveEdge* t = *step; + NSVGactiveEdge* q = t->next; + t->next = q->next; + q->next = t; + *step = q; + changed = 1; + } + step = &(*step)->next; + } + if (!changed) break; + } + + // insert all edges that start before the center of this scanline -- omit ones that also end on this scanline + while (e < r->nedges && r->edges[e].y0 <= scany) { + if (r->edges[e].y1 > scany) { + NSVGactiveEdge* z = nsvg__addActive(r, &r->edges[e], scany); + if (z == NULL) break; + // find insertion point + if (active == NULL) { + active = z; + } else if (z->x < active->x) { + // insert at front + z->next = active; + active = z; + } else { + // find thing to insert AFTER + NSVGactiveEdge* p = active; + while (p->next && p->next->x < z->x) + p = p->next; + // at this point, p->next->x is NOT < z->x + z->next = p->next; + p->next = z; + } + } + e++; + } + + // now process all active edges in non-zero fashion + if (active != NULL) + nsvg__fillActiveEdges(r->scanline, r->width, active, maxWeight, &xmin, &xmax, fillRule); + } + // Blit + if (xmin < 0) xmin = 0; + if (xmax > r->width-1) xmax = r->width-1; + if (xmin <= xmax) { + nsvg__scanlineSolid(&r->bitmap[y * r->stride] + xmin*4, xmax-xmin+1, &r->scanline[xmin], xmin, y, tx,ty, scale, cache); + } + } + +} + +static void nsvg__unpremultiplyAlpha(unsigned char* image, int w, int h, int stride) +{ + int x,y; + + // Unpremultiply + for (y = 0; y < h; y++) { + unsigned char *row = &image[y*stride]; + for (x = 0; x < w; x++) { + int r = row[0], g = row[1], b = row[2], a = row[3]; + if (a != 0) { + row[0] = (unsigned char)(r*255/a); + row[1] = (unsigned char)(g*255/a); + row[2] = (unsigned char)(b*255/a); + } + row += 4; + } + } + + // Defringe + for (y = 0; y < h; y++) { + unsigned char *row = &image[y*stride]; + for (x = 0; x < w; x++) { + int r = 0, g = 0, b = 0, a = row[3], n = 0; + if (a == 0) { + if (x-1 > 0 && row[-1] != 0) { + r += row[-4]; + g += row[-3]; + b += row[-2]; + n++; + } + if (x+1 < w && row[7] != 0) { + r += row[4]; + g += row[5]; + b += row[6]; + n++; + } + if (y-1 > 0 && row[-stride+3] != 0) { + r += row[-stride]; + g += row[-stride+1]; + b += row[-stride+2]; + n++; + } + if (y+1 < h && row[stride+3] != 0) { + r += row[stride]; + g += row[stride+1]; + b += row[stride+2]; + n++; + } + if (n > 0) { + row[0] = (unsigned char)(r/n); + row[1] = (unsigned char)(g/n); + row[2] = (unsigned char)(b/n); + } + } + row += 4; + } + } +} + + +static void nsvg__initPaint(NSVGcachedPaint* cache, NSVGpaint* paint, float opacity) +{ + int i, j; + NSVGgradient* grad; + + cache->type = paint->type; + + if (paint->type == NSVG_PAINT_COLOR) { + cache->colors[0] = nsvg__applyOpacity(paint->color, opacity); + return; + } + + grad = paint->gradient; + + cache->spread = grad->spread; + memcpy(cache->xform, grad->xform, sizeof(float)*6); + + if (grad->nstops == 0) { + for (i = 0; i < 256; i++) + cache->colors[i] = 0; + } if (grad->nstops == 1) { + for (i = 0; i < 256; i++) + cache->colors[i] = nsvg__applyOpacity(grad->stops[i].color, opacity); + } else { + unsigned int ca, cb = 0; + float ua, ub, du, u; + int ia, ib, count; + + ca = nsvg__applyOpacity(grad->stops[0].color, opacity); + ua = nsvg__clampf(grad->stops[0].offset, 0, 1); + ub = nsvg__clampf(grad->stops[grad->nstops-1].offset, ua, 1); + ia = (int)(ua * 255.0f); + ib = (int)(ub * 255.0f); + for (i = 0; i < ia; i++) { + cache->colors[i] = ca; + } + + for (i = 0; i < grad->nstops-1; i++) { + ca = nsvg__applyOpacity(grad->stops[i].color, opacity); + cb = nsvg__applyOpacity(grad->stops[i+1].color, opacity); + ua = nsvg__clampf(grad->stops[i].offset, 0, 1); + ub = nsvg__clampf(grad->stops[i+1].offset, 0, 1); + ia = (int)(ua * 255.0f); + ib = (int)(ub * 255.0f); + count = ib - ia; + if (count <= 0) continue; + u = 0; + du = 1.0f / (float)count; + for (j = 0; j < count; j++) { + cache->colors[ia+j] = nsvg__lerpRGBA(ca,cb,u); + u += du; + } + } + + for (i = ib; i < 256; i++) + cache->colors[i] = cb; + } + +} + +/* +static void dumpEdges(NSVGrasterizer* r, const char* name) +{ + float xmin = 0, xmax = 0, ymin = 0, ymax = 0; + NSVGedge *e = NULL; + int i; + if (r->nedges == 0) return; + FILE* fp = fopen(name, "w"); + if (fp == NULL) return; + + xmin = xmax = r->edges[0].x0; + ymin = ymax = r->edges[0].y0; + for (i = 0; i < r->nedges; i++) { + e = &r->edges[i]; + xmin = nsvg__minf(xmin, e->x0); + xmin = nsvg__minf(xmin, e->x1); + xmax = nsvg__maxf(xmax, e->x0); + xmax = nsvg__maxf(xmax, e->x1); + ymin = nsvg__minf(ymin, e->y0); + ymin = nsvg__minf(ymin, e->y1); + ymax = nsvg__maxf(ymax, e->y0); + ymax = nsvg__maxf(ymax, e->y1); + } + + fprintf(fp, "", xmin, ymin, (xmax - xmin), (ymax - ymin)); + + for (i = 0; i < r->nedges; i++) { + e = &r->edges[i]; + fprintf(fp ,"", e->x0,e->y0, e->x1,e->y1); + } + + for (i = 0; i < r->npoints; i++) { + if (i+1 < r->npoints) + fprintf(fp ,"", r->points[i].x, r->points[i].y, r->points[i+1].x, r->points[i+1].y); + fprintf(fp ,"", r->points[i].x, r->points[i].y, r->points[i].flags == 0 ? "#f00" : "#0f0"); + } + + fprintf(fp, ""); + fclose(fp); +} +*/ + +void nsvgRasterize(NSVGrasterizer* r, + NSVGimage* image, float tx, float ty, float scale, + unsigned char* dst, int w, int h, int stride) +{ + NSVGshape *shape = NULL; + NSVGedge *e = NULL; + NSVGcachedPaint cache; + int i; + + r->bitmap = dst; + r->width = w; + r->height = h; + r->stride = stride; + + if (w > r->cscanline) { + r->cscanline = w; + r->scanline = (unsigned char*)realloc(r->scanline, w); + if (r->scanline == NULL) return; + } + + for (i = 0; i < h; i++) + memset(&dst[i*stride], 0, w*4); + + for (shape = image->shapes; shape != NULL; shape = shape->next) { + if (!(shape->flags & NSVG_FLAGS_VISIBLE)) + continue; + + if (shape->fill.type != NSVG_PAINT_NONE) { + nsvg__resetPool(r); + r->freelist = NULL; + r->nedges = 0; + + nsvg__flattenShape(r, shape, scale); + + // Scale and translate edges + for (i = 0; i < r->nedges; i++) { + e = &r->edges[i]; + e->x0 = tx + e->x0; + e->y0 = (ty + e->y0) * NSVG__SUBSAMPLES; + e->x1 = tx + e->x1; + e->y1 = (ty + e->y1) * NSVG__SUBSAMPLES; + } + + // Rasterize edges + qsort(r->edges, r->nedges, sizeof(NSVGedge), nsvg__cmpEdge); + + // now, traverse the scanlines and find the intersections on each scanline, use non-zero rule + nsvg__initPaint(&cache, &shape->fill, shape->opacity); + + nsvg__rasterizeSortedEdges(r, tx,ty,scale, &cache, shape->fillRule); + } + if (shape->stroke.type != NSVG_PAINT_NONE && (shape->strokeWidth * scale) > 0.01f) { + nsvg__resetPool(r); + r->freelist = NULL; + r->nedges = 0; + + nsvg__flattenShapeStroke(r, shape, scale); + +// dumpEdges(r, "edge.svg"); + + // Scale and translate edges + for (i = 0; i < r->nedges; i++) { + e = &r->edges[i]; + e->x0 = tx + e->x0; + e->y0 = (ty + e->y0) * NSVG__SUBSAMPLES; + e->x1 = tx + e->x1; + e->y1 = (ty + e->y1) * NSVG__SUBSAMPLES; + } + + // Rasterize edges + qsort(r->edges, r->nedges, sizeof(NSVGedge), nsvg__cmpEdge); + + // now, traverse the scanlines and find the intersections on each scanline, use non-zero rule + nsvg__initPaint(&cache, &shape->stroke, shape->opacity); + + nsvg__rasterizeSortedEdges(r, tx,ty,scale, &cache, NSVG_FILLRULE_NONZERO); + } + } + + nsvg__unpremultiplyAlpha(dst, w, h, stride); + + r->bitmap = NULL; + r->width = 0; + r->height = 0; + r->stride = 0; +} + +#endif From c873661c307eb05dedf2ff07f3cf18e614ba72ec Mon Sep 17 00:00:00 2001 From: "Daniel J. Ramirez" Date: Fri, 18 Aug 2017 21:34:09 -0500 Subject: [PATCH 2/3] Added pure vector theme, with dark icons variation --- editor/animation_editor.cpp | 2 +- editor/editor_icons.h | 37 -- editor/editor_node.cpp | 4 +- editor/editor_themes.cpp | 66 +++- editor/editor_themes.h | 2 +- editor/icons/2x/icon_2_d.png | Bin 366 -> 0 bytes editor/icons/2x/icon_3_d.png | Bin 571 -> 0 bytes editor/icons/2x/icon_GUI_checked.png | Bin 516 -> 0 bytes editor/icons/2x/icon_GUI_dropdown.png | Bin 198 -> 0 bytes editor/icons/2x/icon_GUI_hslider_bg.png | Bin 124 -> 0 bytes editor/icons/2x/icon_GUI_hsplitter.png | Bin 190 -> 0 bytes editor/icons/2x/icon_GUI_mini_tab_menu.png | Bin 206 -> 0 bytes editor/icons/2x/icon_GUI_option_arrow.png | Bin 304 -> 0 bytes .../icons/2x/icon_GUI_play_button_group.png | Bin 886 -> 0 bytes editor/icons/2x/icon_GUI_progress_bar.png | Bin 289 -> 0 bytes editor/icons/2x/icon_GUI_progress_fill.png | Bin 196 -> 0 bytes editor/icons/2x/icon_GUI_radio_checked.png | Bin 946 -> 0 bytes editor/icons/2x/icon_GUI_radio_unchecked.png | Bin 799 -> 0 bytes editor/icons/2x/icon_GUI_scroll_bg.png | Bin 99 -> 0 bytes editor/icons/2x/icon_GUI_scroll_grabber.png | Bin 193 -> 0 bytes .../icons/2x/icon_GUI_scroll_grabber_hl.png | Bin 297 -> 0 bytes editor/icons/2x/icon_GUI_slider_grabber.png | Bin 260 -> 0 bytes .../icons/2x/icon_GUI_slider_grabber_hl.png | Bin 1040 -> 0 bytes editor/icons/2x/icon_GUI_spinbox_updown.png | Bin 516 -> 0 bytes editor/icons/2x/icon_GUI_tab_menu.png | Bin 221 -> 0 bytes editor/icons/2x/icon_GUI_toggle_off.png | Bin 2606 -> 0 bytes editor/icons/2x/icon_GUI_toggle_on.png | Bin 2178 -> 0 bytes editor/icons/2x/icon_GUI_tree_arrow_down.png | Bin 256 -> 0 bytes editor/icons/2x/icon_GUI_tree_arrow_right.png | Bin 263 -> 0 bytes editor/icons/2x/icon_GUI_unchecked.png | Bin 369 -> 0 bytes editor/icons/2x/icon_GUI_vslider_bg.png | Bin 131 -> 0 bytes editor/icons/2x/icon_GUI_vsplit_bg.png | Bin 104 -> 0 bytes editor/icons/2x/icon_GUI_vsplitter.png | Bin 168 -> 0 bytes editor/icons/2x/icon_accept_dialog.png | Bin 581 -> 0 bytes editor/icons/2x/icon_add.png | Bin 151 -> 0 bytes editor/icons/2x/icon_add_track.png | Bin 151 -> 0 bytes editor/icons/2x/icon_anchor.png | Bin 828 -> 0 bytes editor/icons/2x/icon_animated_sprite.png | Bin 1212 -> 0 bytes editor/icons/2x/icon_animated_sprite_3d.png | Bin 1125 -> 0 bytes editor/icons/2x/icon_animation.png | Bin 912 -> 0 bytes editor/icons/2x/icon_animation_player.png | Bin 173 -> 0 bytes editor/icons/2x/icon_animation_tree.png | Bin 264 -> 0 bytes .../icons/2x/icon_animation_tree_player.png | Bin 264 -> 0 bytes editor/icons/2x/icon_area.png | Bin 209 -> 0 bytes editor/icons/2x/icon_area_2d.png | Bin 211 -> 0 bytes editor/icons/2x/icon_arrow_left.png | Bin 354 -> 0 bytes editor/icons/2x/icon_arrow_right.png | Bin 349 -> 0 bytes editor/icons/2x/icon_arrow_up.png | Bin 382 -> 0 bytes editor/icons/2x/icon_asset_lib.png | Bin 367 -> 0 bytes editor/icons/2x/icon_atlas_texture.png | Bin 382 -> 0 bytes editor/icons/2x/icon_audio_bus_bypass.png | Bin 368 -> 0 bytes editor/icons/2x/icon_audio_bus_layout.png | Bin 565 -> 0 bytes editor/icons/2x/icon_audio_bus_mute.png | Bin 527 -> 0 bytes editor/icons/2x/icon_audio_bus_solo.png | Bin 479 -> 0 bytes editor/icons/2x/icon_audio_effect_amplify.png | Bin 462 -> 0 bytes .../icons/2x/icon_audio_stream_gibberish.png | Bin 437 -> 0 bytes editor/icons/2x/icon_audio_stream_player.png | Bin 769 -> 0 bytes .../icons/2x/icon_audio_stream_player_2_d.png | Bin 782 -> 0 bytes .../icons/2x/icon_audio_stream_player_3_d.png | Bin 763 -> 0 bytes editor/icons/2x/icon_audio_stream_sample.png | Bin 712 -> 0 bytes editor/icons/2x/icon_auto_play.png | Bin 699 -> 0 bytes editor/icons/2x/icon_back.png | Bin 410 -> 0 bytes editor/icons/2x/icon_back_buffer_copy.png | Bin 190 -> 0 bytes editor/icons/2x/icon_bake.png | Bin 267 -> 0 bytes editor/icons/2x/icon_baked_light.png | Bin 264 -> 0 bytes editor/icons/2x/icon_baked_light_instance.png | Bin 264 -> 0 bytes editor/icons/2x/icon_baked_light_sampler.png | Bin 391 -> 0 bytes editor/icons/2x/icon_bit_map.png | Bin 152 -> 0 bytes editor/icons/2x/icon_bitmap_font.png | Bin 191 -> 0 bytes editor/icons/2x/icon_blend.png | Bin 1091 -> 0 bytes editor/icons/2x/icon_bone.png | Bin 597 -> 0 bytes editor/icons/2x/icon_bone_attachment.png | Bin 576 -> 0 bytes editor/icons/2x/icon_bone_track.png | Bin 565 -> 0 bytes editor/icons/2x/icon_bool.png | Bin 422 -> 0 bytes editor/icons/2x/icon_box_shape.png | Bin 597 -> 0 bytes editor/icons/2x/icon_bus_vu_db.png | Bin 7645 -> 0 bytes editor/icons/2x/icon_bus_vu_empty.png | Bin 2241 -> 0 bytes editor/icons/2x/icon_bus_vu_frozen.png | Bin 1945 -> 0 bytes editor/icons/2x/icon_bus_vu_full.png | Bin 1839 -> 0 bytes editor/icons/2x/icon_button.png | Bin 456 -> 0 bytes editor/icons/2x/icon_button_group.png | Bin 529 -> 0 bytes editor/icons/2x/icon_camera.png | Bin 352 -> 0 bytes editor/icons/2x/icon_camera_2d.png | Bin 364 -> 0 bytes editor/icons/2x/icon_canvas_item.png | Bin 709 -> 0 bytes editor/icons/2x/icon_canvas_item_material.png | Bin 640 -> 0 bytes editor/icons/2x/icon_canvas_item_shader.png | Bin 716 -> 0 bytes .../2x/icon_canvas_item_shader_graph.png | Bin 707 -> 0 bytes editor/icons/2x/icon_canvas_layer.png | Bin 860 -> 0 bytes editor/icons/2x/icon_canvas_modulate.png | Bin 273 -> 0 bytes editor/icons/2x/icon_capsule_mesh.png | Bin 767 -> 0 bytes editor/icons/2x/icon_capsule_shape.png | Bin 372 -> 0 bytes editor/icons/2x/icon_capsule_shape_2d.png | Bin 552 -> 0 bytes editor/icons/2x/icon_center_container.png | Bin 478 -> 0 bytes editor/icons/2x/icon_check_box.png | Bin 565 -> 0 bytes editor/icons/2x/icon_check_button.png | Bin 528 -> 0 bytes editor/icons/2x/icon_checked.png | Bin 534 -> 0 bytes editor/icons/2x/icon_circle_shape_2d.png | Bin 838 -> 0 bytes editor/icons/2x/icon_class_list.png | Bin 192 -> 0 bytes editor/icons/2x/icon_close.png | Bin 461 -> 0 bytes editor/icons/2x/icon_collapse.png | Bin 383 -> 0 bytes editor/icons/2x/icon_collision_2d.png | Bin 407 -> 0 bytes editor/icons/2x/icon_collision_polygon.png | Bin 397 -> 0 bytes editor/icons/2x/icon_collision_polygon_2d.png | Bin 407 -> 0 bytes editor/icons/2x/icon_collision_shape.png | Bin 439 -> 0 bytes editor/icons/2x/icon_collision_shape_2d.png | Bin 235 -> 0 bytes editor/icons/2x/icon_color.png | Bin 1406 -> 0 bytes editor/icons/2x/icon_color_pick.png | Bin 822 -> 0 bytes editor/icons/2x/icon_color_picker.png | Bin 837 -> 0 bytes editor/icons/2x/icon_color_picker_button.png | Bin 942 -> 0 bytes editor/icons/2x/icon_color_ramp.png | Bin 342 -> 0 bytes editor/icons/2x/icon_color_rect.png | Bin 285 -> 0 bytes .../icons/2x/icon_concave_polygon_shape.png | Bin 709 -> 0 bytes .../2x/icon_concave_polygon_shape_2d.png | Bin 436 -> 0 bytes editor/icons/2x/icon_cone_twist_joint.png | Bin 906 -> 0 bytes editor/icons/2x/icon_confirmation_dialog.png | Bin 614 -> 0 bytes editor/icons/2x/icon_connect.png | Bin 876 -> 0 bytes .../icons/2x/icon_connection_and_groups.png | Bin 397 -> 0 bytes editor/icons/2x/icon_container.png | Bin 319 -> 0 bytes editor/icons/2x/icon_control.png | Bin 825 -> 0 bytes .../2x/icon_control_align_bottom_center.png | Bin 156 -> 0 bytes .../2x/icon_control_align_bottom_left.png | Bin 154 -> 0 bytes .../2x/icon_control_align_bottom_right.png | Bin 155 -> 0 bytes .../2x/icon_control_align_bottom_wide.png | Bin 160 -> 0 bytes editor/icons/2x/icon_control_align_center.png | Bin 171 -> 0 bytes .../2x/icon_control_align_center_left.png | Bin 130 -> 0 bytes .../2x/icon_control_align_center_right.png | Bin 127 -> 0 bytes .../2x/icon_control_align_left_center.png | Bin 169 -> 0 bytes .../icons/2x/icon_control_align_left_wide.png | Bin 143 -> 0 bytes .../2x/icon_control_align_right_center.png | Bin 171 -> 0 bytes .../2x/icon_control_align_right_wide.png | Bin 144 -> 0 bytes .../2x/icon_control_align_top_center.png | Bin 165 -> 0 bytes .../icons/2x/icon_control_align_top_left.png | Bin 159 -> 0 bytes .../icons/2x/icon_control_align_top_right.png | Bin 167 -> 0 bytes .../icons/2x/icon_control_align_top_wide.png | Bin 160 -> 0 bytes editor/icons/2x/icon_control_align_wide.png | Bin 145 -> 0 bytes editor/icons/2x/icon_control_hcenter_wide.png | Bin 169 -> 0 bytes editor/icons/2x/icon_control_vcenter_wide.png | Bin 148 -> 0 bytes editor/icons/2x/icon_convex_polygon_shape.png | Bin 648 -> 0 bytes .../icons/2x/icon_convex_polygon_shape_2d.png | Bin 373 -> 0 bytes editor/icons/2x/icon_copy_node_path.png | Bin 358 -> 0 bytes .../icons/2x/icon_create_new_scene_from.png | Bin 639 -> 0 bytes editor/icons/2x/icon_cube_map.png | Bin 159 -> 0 bytes editor/icons/2x/icon_cube_mesh.png | Bin 681 -> 0 bytes editor/icons/2x/icon_curve.png | Bin 607 -> 0 bytes editor/icons/2x/icon_curve_2d.png | Bin 591 -> 0 bytes editor/icons/2x/icon_curve_3d.png | Bin 522 -> 0 bytes editor/icons/2x/icon_curve_close.png | Bin 610 -> 0 bytes editor/icons/2x/icon_curve_constant.png | Bin 162 -> 0 bytes editor/icons/2x/icon_curve_create.png | Bin 698 -> 0 bytes editor/icons/2x/icon_curve_curve.png | Bin 744 -> 0 bytes editor/icons/2x/icon_curve_delete.png | Bin 926 -> 0 bytes editor/icons/2x/icon_curve_edit.png | Bin 954 -> 0 bytes editor/icons/2x/icon_curve_in.png | Bin 449 -> 0 bytes editor/icons/2x/icon_curve_in_out.png | Bin 494 -> 0 bytes editor/icons/2x/icon_curve_linear.png | Bin 283 -> 0 bytes editor/icons/2x/icon_curve_out.png | Bin 459 -> 0 bytes editor/icons/2x/icon_curve_out_in.png | Bin 489 -> 0 bytes editor/icons/2x/icon_curve_texture.png | Bin 728 -> 0 bytes editor/icons/2x/icon_cylinder_mesh.png | Bin 650 -> 0 bytes .../icons/2x/icon_damped_spring_joint_2d.png | Bin 496 -> 0 bytes editor/icons/2x/icon_debug.png | Bin 900 -> 0 bytes editor/icons/2x/icon_debug_continue.png | Bin 525 -> 0 bytes editor/icons/2x/icon_debug_next.png | Bin 284 -> 0 bytes editor/icons/2x/icon_debug_step.png | Bin 317 -> 0 bytes editor/icons/2x/icon_dependency_changed.png | Bin 731 -> 0 bytes .../icons/2x/icon_dependency_changed_hl.png | Bin 601 -> 0 bytes .../2x/icon_dependency_local_changed.png | Bin 1104 -> 0 bytes .../2x/icon_dependency_local_changed_hl.png | Bin 926 -> 0 bytes editor/icons/2x/icon_dependency_ok.png | Bin 1015 -> 0 bytes editor/icons/2x/icon_dependency_ok_hl.png | Bin 836 -> 0 bytes editor/icons/2x/icon_directional_light.png | Bin 756 -> 0 bytes editor/icons/2x/icon_distraction_free.png | Bin 575 -> 0 bytes editor/icons/2x/icon_dropdown.png | Bin 327 -> 0 bytes editor/icons/2x/icon_duplicate.png | Bin 225 -> 0 bytes editor/icons/2x/icon_dynamic_font.png | Bin 383 -> 0 bytes editor/icons/2x/icon_dynamic_font_data.png | Bin 379 -> 0 bytes editor/icons/2x/icon_edit.png | Bin 525 -> 0 bytes editor/icons/2x/icon_edit_key.png | Bin 641 -> 0 bytes editor/icons/2x/icon_edit_pivot.png | Bin 595 -> 0 bytes editor/icons/2x/icon_edit_resource.png | Bin 311 -> 0 bytes editor/icons/2x/icon_editor_3d_handle.png | Bin 705 -> 0 bytes .../icons/2x/icon_editor_control_anchor.png | Bin 855 -> 0 bytes editor/icons/2x/icon_editor_handle.png | Bin 427 -> 0 bytes editor/icons/2x/icon_editor_pivot.png | Bin 198 -> 0 bytes editor/icons/2x/icon_editor_plugin.png | Bin 469 -> 0 bytes editor/icons/2x/icon_enum.png | Bin 137 -> 0 bytes editor/icons/2x/icon_environment.png | Bin 1193 -> 0 bytes editor/icons/2x/icon_error.png | Bin 346 -> 0 bytes editor/icons/2x/icon_error_sign.png | Bin 441 -> 0 bytes editor/icons/2x/icon_event_player.png | Bin 167 -> 0 bytes editor/icons/2x/icon_favorites.png | Bin 702 -> 0 bytes editor/icons/2x/icon_file.png | Bin 242 -> 0 bytes editor/icons/2x/icon_file_big.png | Bin 934 -> 0 bytes editor/icons/2x/icon_file_dialog.png | Bin 397 -> 0 bytes editor/icons/2x/icon_file_list.png | Bin 137 -> 0 bytes editor/icons/2x/icon_file_server.png | Bin 172 -> 0 bytes editor/icons/2x/icon_file_server_active.png | Bin 173 -> 0 bytes editor/icons/2x/icon_file_thumbnail.png | Bin 137 -> 0 bytes editor/icons/2x/icon_filesystem.png | Bin 192 -> 0 bytes editor/icons/2x/icon_fixed_material.png | Bin 736 -> 0 bytes .../icons/2x/icon_fixed_spatial_material.png | Bin 768 -> 0 bytes editor/icons/2x/icon_folder.png | Bin 228 -> 0 bytes editor/icons/2x/icon_folder_big.png | Bin 991 -> 0 bytes editor/icons/2x/icon_font.png | Bin 369 -> 0 bytes editor/icons/2x/icon_forward.png | Bin 410 -> 0 bytes editor/icons/2x/icon_g_d_native_library.png | Bin 677 -> 0 bytes editor/icons/2x/icon_g_d_native_script.png | Bin 698 -> 0 bytes editor/icons/2x/icon_g_d_script.png | Bin 759 -> 0 bytes editor/icons/2x/icon_g_i_probe.png | Bin 680 -> 0 bytes editor/icons/2x/icon_g_i_probe_data.png | Bin 662 -> 0 bytes .../icons/2x/icon_generic_6_d_o_f_joint.png | Bin 535 -> 0 bytes .../icons/2x/icon_gizmo_directional_light.png | Bin 8264 -> 0 bytes editor/icons/2x/icon_gizmo_light.png | Bin 6282 -> 0 bytes editor/icons/2x/icon_gizmo_listener.png | Bin 7636 -> 0 bytes .../2x/icon_gizmo_spatial_sample_player.png | Bin 2831 -> 0 bytes .../2x/icon_gizmo_spatial_stream_player.png | Bin 3649 -> 0 bytes editor/icons/2x/icon_godot.png | Bin 1743 -> 0 bytes editor/icons/2x/icon_godot_docs.png | Bin 1840 -> 0 bytes editor/icons/2x/icon_gradient.png | Bin 249 -> 0 bytes editor/icons/2x/icon_gradient_texture.png | Bin 330 -> 0 bytes editor/icons/2x/icon_graph_color_ramp.png | Bin 342 -> 0 bytes editor/icons/2x/icon_graph_comment.png | Bin 152 -> 0 bytes editor/icons/2x/icon_graph_cube_uniform.png | Bin 795 -> 0 bytes editor/icons/2x/icon_graph_curve_map.png | Bin 587 -> 0 bytes .../icons/2x/icon_graph_default_texture.png | Bin 254 -> 0 bytes editor/icons/2x/icon_graph_edit.png | Bin 815 -> 0 bytes editor/icons/2x/icon_graph_input.png | Bin 521 -> 0 bytes editor/icons/2x/icon_graph_node.png | Bin 710 -> 0 bytes editor/icons/2x/icon_graph_rgb.png | Bin 951 -> 0 bytes editor/icons/2x/icon_graph_rgb_op.png | Bin 219 -> 0 bytes editor/icons/2x/icon_graph_rgb_uniform.png | Bin 696 -> 0 bytes editor/icons/2x/icon_graph_scalar.png | Bin 461 -> 0 bytes editor/icons/2x/icon_graph_scalar_interp.png | Bin 307 -> 0 bytes editor/icons/2x/icon_graph_scalar_op.png | Bin 390 -> 0 bytes editor/icons/2x/icon_graph_scalar_uniform.png | Bin 570 -> 0 bytes editor/icons/2x/icon_graph_scalars_to_vec.png | Bin 565 -> 0 bytes editor/icons/2x/icon_graph_texscreen.png | Bin 217 -> 0 bytes .../icons/2x/icon_graph_texture_uniform.png | Bin 394 -> 0 bytes editor/icons/2x/icon_graph_time.png | Bin 819 -> 0 bytes editor/icons/2x/icon_graph_vec_dp.png | Bin 482 -> 0 bytes editor/icons/2x/icon_graph_vec_interp.png | Bin 307 -> 0 bytes editor/icons/2x/icon_graph_vec_length.png | Bin 513 -> 0 bytes editor/icons/2x/icon_graph_vec_op.png | Bin 387 -> 0 bytes editor/icons/2x/icon_graph_vec_scalar_op.png | Bin 431 -> 0 bytes editor/icons/2x/icon_graph_vec_to_scalars.png | Bin 575 -> 0 bytes editor/icons/2x/icon_graph_vecs_to_xform.png | Bin 549 -> 0 bytes editor/icons/2x/icon_graph_vector.png | Bin 620 -> 0 bytes editor/icons/2x/icon_graph_vector_uniform.png | Bin 718 -> 0 bytes editor/icons/2x/icon_graph_xform.png | Bin 380 -> 0 bytes editor/icons/2x/icon_graph_xform_mult.png | Bin 321 -> 0 bytes .../icons/2x/icon_graph_xform_scalar_func.png | Bin 467 -> 0 bytes editor/icons/2x/icon_graph_xform_to_vecs.png | Bin 560 -> 0 bytes editor/icons/2x/icon_graph_xform_uniform.png | Bin 526 -> 0 bytes editor/icons/2x/icon_graph_xform_vec_func.png | Bin 476 -> 0 bytes .../icons/2x/icon_graph_xform_vec_imult.png | Bin 601 -> 0 bytes editor/icons/2x/icon_graph_xform_vec_mult.png | Bin 600 -> 0 bytes editor/icons/2x/icon_grid.png | Bin 194 -> 0 bytes editor/icons/2x/icon_grid_container.png | Bin 329 -> 0 bytes editor/icons/2x/icon_grid_map.png | Bin 378 -> 0 bytes editor/icons/2x/icon_groove_joint_2d.png | Bin 179 -> 0 bytes editor/icons/2x/icon_group.png | Bin 207 -> 0 bytes editor/icons/2x/icon_groups.png | Bin 353 -> 0 bytes editor/icons/2x/icon_gui_close_dark.png | Bin 371 -> 0 bytes editor/icons/2x/icon_gui_close_light.png | Bin 366 -> 0 bytes editor/icons/2x/icon_h_box_container.png | Bin 307 -> 0 bytes editor/icons/2x/icon_h_button_array.png | Bin 470 -> 0 bytes editor/icons/2x/icon_h_scroll_bar.png | Bin 688 -> 0 bytes editor/icons/2x/icon_h_separator.png | Bin 148 -> 0 bytes editor/icons/2x/icon_h_slider.png | Bin 424 -> 0 bytes editor/icons/2x/icon_h_split_container.png | Bin 399 -> 0 bytes editor/icons/2x/icon_h_t_t_p_request.png | Bin 425 -> 0 bytes editor/icons/2x/icon_headphones.png | Bin 620 -> 0 bytes editor/icons/2x/icon_help.png | Bin 654 -> 0 bytes editor/icons/2x/icon_help_search.png | Bin 881 -> 0 bytes editor/icons/2x/icon_hidden.png | Bin 640 -> 0 bytes editor/icons/2x/icon_hinge_joint.png | Bin 663 -> 0 bytes editor/icons/2x/icon_history.png | Bin 814 -> 0 bytes editor/icons/2x/icon_hsize.png | Bin 247 -> 0 bytes editor/icons/2x/icon_hslider_bg.png | Bin 233 -> 0 bytes editor/icons/2x/icon_image.png | Bin 404 -> 0 bytes editor/icons/2x/icon_image_sky_box.png | Bin 904 -> 0 bytes editor/icons/2x/icon_image_texture.png | Bin 262 -> 0 bytes editor/icons/2x/icon_immediate_geometry.png | Bin 706 -> 0 bytes editor/icons/2x/icon_import_check.png | Bin 386 -> 0 bytes editor/icons/2x/icon_import_fail.png | Bin 464 -> 0 bytes editor/icons/2x/icon_instance.png | Bin 817 -> 0 bytes editor/icons/2x/icon_instance_options.png | Bin 708 -> 0 bytes editor/icons/2x/icon_integer.png | Bin 147 -> 0 bytes editor/icons/2x/icon_interp_cubic.png | Bin 483 -> 0 bytes editor/icons/2x/icon_interp_linear.png | Bin 398 -> 0 bytes editor/icons/2x/icon_interp_raw.png | Bin 221 -> 0 bytes editor/icons/2x/icon_interp_wrap_clamp.png | Bin 348 -> 0 bytes editor/icons/2x/icon_interp_wrap_loop.png | Bin 548 -> 0 bytes editor/icons/2x/icon_interpolated_camera.png | Bin 454 -> 0 bytes editor/icons/2x/icon_invalid_key.png | Bin 385 -> 0 bytes editor/icons/2x/icon_inverse_kinematics.png | Bin 459 -> 0 bytes editor/icons/2x/icon_item_list.png | Bin 338 -> 0 bytes editor/icons/2x/icon_joy_axis.png | Bin 425 -> 0 bytes editor/icons/2x/icon_joy_button.png | Bin 499 -> 0 bytes editor/icons/2x/icon_joypad.png | Bin 380 -> 0 bytes editor/icons/2x/icon_key.png | Bin 572 -> 0 bytes editor/icons/2x/icon_key_hover.png | Bin 191 -> 0 bytes editor/icons/2x/icon_key_invalid.png | Bin 385 -> 0 bytes editor/icons/2x/icon_key_next.png | Bin 579 -> 0 bytes editor/icons/2x/icon_key_selected.png | Bin 255 -> 0 bytes editor/icons/2x/icon_key_value.png | Bin 244 -> 0 bytes editor/icons/2x/icon_key_xform.png | Bin 261 -> 0 bytes editor/icons/2x/icon_keyboard.png | Bin 486 -> 0 bytes editor/icons/2x/icon_kinematic_body.png | Bin 197 -> 0 bytes editor/icons/2x/icon_kinematic_body_2d.png | Bin 204 -> 0 bytes editor/icons/2x/icon_label.png | Bin 370 -> 0 bytes editor/icons/2x/icon_large_texture.png | Bin 211 -> 0 bytes editor/icons/2x/icon_light_2d.png | Bin 669 -> 0 bytes editor/icons/2x/icon_light_occluder_2d.png | Bin 175 -> 0 bytes editor/icons/2x/icon_line_2d.png | Bin 739 -> 0 bytes editor/icons/2x/icon_line_edit.png | Bin 223 -> 0 bytes editor/icons/2x/icon_line_shape_2d.png | Bin 597 -> 0 bytes editor/icons/2x/icon_link_button.png | Bin 774 -> 0 bytes editor/icons/2x/icon_list_select.png | Bin 653 -> 0 bytes editor/icons/2x/icon_listener.png | Bin 885 -> 0 bytes editor/icons/2x/icon_load.png | Bin 523 -> 0 bytes editor/icons/2x/icon_lock.png | Bin 441 -> 0 bytes editor/icons/2x/icon_loop.png | Bin 806 -> 0 bytes editor/icons/2x/icon_loop_interpolation.png | Bin 709 -> 0 bytes editor/icons/2x/icon_main_play.png | Bin 359 -> 0 bytes editor/icons/2x/icon_main_stop.png | Bin 197 -> 0 bytes editor/icons/2x/icon_margin_container.png | Bin 365 -> 0 bytes .../icons/2x/icon_material_preview_cube.png | Bin 562 -> 0 bytes .../2x/icon_material_preview_cube_off.png | Bin 598 -> 0 bytes .../2x/icon_material_preview_light_1.png | Bin 724 -> 0 bytes .../2x/icon_material_preview_light_1_off.png | Bin 596 -> 0 bytes .../2x/icon_material_preview_light_2.png | Bin 740 -> 0 bytes .../2x/icon_material_preview_light_2_off.png | Bin 843 -> 0 bytes .../icons/2x/icon_material_preview_sphere.png | Bin 704 -> 0 bytes .../2x/icon_material_preview_sphere_off.png | Bin 518 -> 0 bytes editor/icons/2x/icon_material_shader.png | Bin 342 -> 0 bytes .../icons/2x/icon_material_shader_graph.png | Bin 707 -> 0 bytes editor/icons/2x/icon_matrix.png | Bin 185 -> 0 bytes editor/icons/2x/icon_menu_button.png | Bin 296 -> 0 bytes editor/icons/2x/icon_mesh.png | Bin 582 -> 0 bytes editor/icons/2x/icon_mesh_instance.png | Bin 563 -> 0 bytes editor/icons/2x/icon_mesh_library.png | Bin 631 -> 0 bytes editor/icons/2x/icon_mini_aabb.png | Bin 695 -> 0 bytes editor/icons/2x/icon_mini_array.png | Bin 326 -> 0 bytes editor/icons/2x/icon_mini_basis.png | Bin 472 -> 0 bytes editor/icons/2x/icon_mini_boolean.png | Bin 434 -> 0 bytes editor/icons/2x/icon_mini_color.png | Bin 411 -> 0 bytes editor/icons/2x/icon_mini_color_array.png | Bin 445 -> 0 bytes editor/icons/2x/icon_mini_dictionary.png | Bin 371 -> 0 bytes editor/icons/2x/icon_mini_float.png | Bin 355 -> 0 bytes editor/icons/2x/icon_mini_float_array.png | Bin 451 -> 0 bytes editor/icons/2x/icon_mini_image.png | Bin 450 -> 0 bytes editor/icons/2x/icon_mini_input.png | Bin 409 -> 0 bytes editor/icons/2x/icon_mini_int_array.png | Bin 384 -> 0 bytes editor/icons/2x/icon_mini_integer.png | Bin 367 -> 0 bytes editor/icons/2x/icon_mini_matrix3.png | Bin 472 -> 0 bytes editor/icons/2x/icon_mini_matrix32.png | Bin 573 -> 0 bytes editor/icons/2x/icon_mini_object.png | Bin 507 -> 0 bytes editor/icons/2x/icon_mini_path.png | Bin 435 -> 0 bytes editor/icons/2x/icon_mini_plane.png | Bin 424 -> 0 bytes editor/icons/2x/icon_mini_quat.png | Bin 509 -> 0 bytes editor/icons/2x/icon_mini_raw_array.png | Bin 382 -> 0 bytes editor/icons/2x/icon_mini_rect2.png | Bin 431 -> 0 bytes editor/icons/2x/icon_mini_rid.png | Bin 349 -> 0 bytes editor/icons/2x/icon_mini_string.png | Bin 437 -> 0 bytes editor/icons/2x/icon_mini_string_array.png | Bin 479 -> 0 bytes editor/icons/2x/icon_mini_transform.png | Bin 539 -> 0 bytes editor/icons/2x/icon_mini_transform2D.png | Bin 602 -> 0 bytes editor/icons/2x/icon_mini_variant.png | Bin 405 -> 0 bytes editor/icons/2x/icon_mini_vector2.png | Bin 541 -> 0 bytes editor/icons/2x/icon_mini_vector2_array.png | Bin 485 -> 0 bytes editor/icons/2x/icon_mini_vector3.png | Bin 509 -> 0 bytes editor/icons/2x/icon_mini_vector3_array.png | Bin 416 -> 0 bytes editor/icons/2x/icon_mirror_x.png | Bin 361 -> 0 bytes editor/icons/2x/icon_mirror_y.png | Bin 406 -> 0 bytes editor/icons/2x/icon_mouse.png | Bin 476 -> 0 bytes editor/icons/2x/icon_move_down.png | Bin 553 -> 0 bytes editor/icons/2x/icon_move_point.png | Bin 1205 -> 0 bytes editor/icons/2x/icon_move_up.png | Bin 505 -> 0 bytes editor/icons/2x/icon_multi_edit.png | Bin 558 -> 0 bytes editor/icons/2x/icon_multi_line.png | Bin 166 -> 0 bytes editor/icons/2x/icon_multi_mesh.png | Bin 591 -> 0 bytes editor/icons/2x/icon_multi_mesh_instance.png | Bin 653 -> 0 bytes editor/icons/2x/icon_multi_node_edit.png | Bin 558 -> 0 bytes editor/icons/2x/icon_multi_script.png | Bin 586 -> 0 bytes editor/icons/2x/icon_native_script.png | Bin 698 -> 0 bytes editor/icons/2x/icon_navigation.png | Bin 534 -> 0 bytes editor/icons/2x/icon_navigation_2d.png | Bin 558 -> 0 bytes editor/icons/2x/icon_navigation_mesh.png | Bin 806 -> 0 bytes .../2x/icon_navigation_mesh_instance.png | Bin 867 -> 0 bytes editor/icons/2x/icon_navigation_polygon.png | Bin 640 -> 0 bytes .../2x/icon_navigation_polygon_instance.png | Bin 712 -> 0 bytes editor/icons/2x/icon_new.png | Bin 242 -> 0 bytes editor/icons/2x/icon_nine_patch_rect.png | Bin 163 -> 0 bytes editor/icons/2x/icon_node.png | Bin 788 -> 0 bytes editor/icons/2x/icon_node_2d.png | Bin 864 -> 0 bytes editor/icons/2x/icon_node_warning.png | Bin 443 -> 0 bytes editor/icons/2x/icon_non_favorite.png | Bin 946 -> 0 bytes editor/icons/2x/icon_object.png | Bin 500 -> 0 bytes editor/icons/2x/icon_occluder_polygon_2d.png | Bin 384 -> 0 bytes editor/icons/2x/icon_omni_light.png | Bin 659 -> 0 bytes editor/icons/2x/icon_open.png | Bin 523 -> 0 bytes editor/icons/2x/icon_option_arrow.png | Bin 360 -> 0 bytes editor/icons/2x/icon_option_button.png | Bin 527 -> 0 bytes editor/icons/2x/icon_override.png | Bin 488 -> 0 bytes editor/icons/2x/icon_p_hash_translation.png | Bin 285 -> 0 bytes .../icons/2x/icon_packed_data_container.png | Bin 253 -> 0 bytes editor/icons/2x/icon_packed_scene.png | Bin 569 -> 0 bytes editor/icons/2x/icon_panel.png | Bin 277 -> 0 bytes editor/icons/2x/icon_panel_container.png | Bin 309 -> 0 bytes editor/icons/2x/icon_panels_1.png | Bin 117 -> 0 bytes editor/icons/2x/icon_panels_2.png | Bin 127 -> 0 bytes editor/icons/2x/icon_panels_2_alt.png | Bin 134 -> 0 bytes editor/icons/2x/icon_panels_3.png | Bin 141 -> 0 bytes editor/icons/2x/icon_panels_3_alt.png | Bin 152 -> 0 bytes editor/icons/2x/icon_panels_4.png | Bin 136 -> 0 bytes editor/icons/2x/icon_panorama_sky.png | Bin 661 -> 0 bytes editor/icons/2x/icon_parallax_background.png | Bin 335 -> 0 bytes editor/icons/2x/icon_parallax_layer.png | Bin 469 -> 0 bytes .../icons/2x/icon_particle_attractor_2d.png | Bin 1578 -> 0 bytes editor/icons/2x/icon_particles.png | Bin 686 -> 0 bytes editor/icons/2x/icon_particles_2d.png | Bin 728 -> 0 bytes editor/icons/2x/icon_particles_material.png | Bin 657 -> 0 bytes editor/icons/2x/icon_particles_shader.png | Bin 657 -> 0 bytes editor/icons/2x/icon_patch_9_rect.png | Bin 162 -> 0 bytes editor/icons/2x/icon_path.png | Bin 666 -> 0 bytes editor/icons/2x/icon_path_2d.png | Bin 687 -> 0 bytes editor/icons/2x/icon_path_follow.png | Bin 725 -> 0 bytes editor/icons/2x/icon_path_follow_2d.png | Bin 725 -> 0 bytes editor/icons/2x/icon_pause.png | Bin 194 -> 0 bytes editor/icons/2x/icon_pin.png | Bin 322 -> 0 bytes editor/icons/2x/icon_pin_joint.png | Bin 686 -> 0 bytes editor/icons/2x/icon_pin_joint_2d.png | Bin 719 -> 0 bytes editor/icons/2x/icon_pin_pressed.png | Bin 322 -> 0 bytes editor/icons/2x/icon_plane.png | Bin 306 -> 0 bytes editor/icons/2x/icon_plane_mesh.png | Bin 535 -> 0 bytes editor/icons/2x/icon_plane_shape.png | Bin 316 -> 0 bytes editor/icons/2x/icon_play.png | Bin 395 -> 0 bytes editor/icons/2x/icon_play_backwards.png | Bin 424 -> 0 bytes editor/icons/2x/icon_play_button_group.png | Bin 942 -> 0 bytes editor/icons/2x/icon_play_custom.png | Bin 572 -> 0 bytes editor/icons/2x/icon_play_scene.png | Bin 686 -> 0 bytes editor/icons/2x/icon_play_start.png | Bin 463 -> 0 bytes editor/icons/2x/icon_play_start_backwards.png | Bin 497 -> 0 bytes editor/icons/2x/icon_polygon_2d.png | Bin 407 -> 0 bytes editor/icons/2x/icon_polygon_path_finder.png | Bin 491 -> 0 bytes editor/icons/2x/icon_popup.png | Bin 329 -> 0 bytes editor/icons/2x/icon_popup_dialog.png | Bin 347 -> 0 bytes editor/icons/2x/icon_popup_menu.png | Bin 301 -> 0 bytes editor/icons/2x/icon_popup_panel.png | Bin 279 -> 0 bytes editor/icons/2x/icon_portal.png | Bin 855 -> 0 bytes editor/icons/2x/icon_position_2d.png | Bin 152 -> 0 bytes editor/icons/2x/icon_position_3d.png | Bin 151 -> 0 bytes editor/icons/2x/icon_prism_mesh.png | Bin 612 -> 0 bytes editor/icons/2x/icon_procedural_sky.png | Bin 639 -> 0 bytes editor/icons/2x/icon_progress_1.png | Bin 781 -> 0 bytes editor/icons/2x/icon_progress_2.png | Bin 785 -> 0 bytes editor/icons/2x/icon_progress_3.png | Bin 800 -> 0 bytes editor/icons/2x/icon_progress_4.png | Bin 808 -> 0 bytes editor/icons/2x/icon_progress_5.png | Bin 807 -> 0 bytes editor/icons/2x/icon_progress_6.png | Bin 793 -> 0 bytes editor/icons/2x/icon_progress_7.png | Bin 815 -> 0 bytes editor/icons/2x/icon_progress_8.png | Bin 791 -> 0 bytes editor/icons/2x/icon_progress_bar.png | Bin 328 -> 0 bytes editor/icons/2x/icon_proximity_group.png | Bin 326 -> 0 bytes editor/icons/2x/icon_quad.png | Bin 289 -> 0 bytes editor/icons/2x/icon_quad_mesh.png | Bin 291 -> 0 bytes editor/icons/2x/icon_quat.png | Bin 668 -> 0 bytes editor/icons/2x/icon_range.png | Bin 177 -> 0 bytes editor/icons/2x/icon_rating_no_star.png | Bin 1077 -> 0 bytes editor/icons/2x/icon_rating_star.png | Bin 696 -> 0 bytes editor/icons/2x/icon_ray_cast.png | Bin 308 -> 0 bytes editor/icons/2x/icon_ray_cast_2d.png | Bin 337 -> 0 bytes editor/icons/2x/icon_ray_shape.png | Bin 541 -> 0 bytes editor/icons/2x/icon_ray_shape_2d.png | Bin 330 -> 0 bytes editor/icons/2x/icon_rayito.png | Bin 449 -> 0 bytes editor/icons/2x/icon_real.png | Bin 423 -> 0 bytes editor/icons/2x/icon_rectangle_shape_2d.png | Bin 213 -> 0 bytes editor/icons/2x/icon_reference_rect.png | Bin 151 -> 0 bytes editor/icons/2x/icon_reflection_probe.png | Bin 533 -> 0 bytes editor/icons/2x/icon_region_edit.png | Bin 158 -> 0 bytes editor/icons/2x/icon_reload.png | Bin 786 -> 0 bytes editor/icons/2x/icon_reload_small.png | Bin 756 -> 0 bytes editor/icons/2x/icon_remote.png | Bin 824 -> 0 bytes editor/icons/2x/icon_remote_transform.png | Bin 1003 -> 0 bytes editor/icons/2x/icon_remote_transform_2d.png | Bin 1044 -> 0 bytes editor/icons/2x/icon_remove.png | Bin 271 -> 0 bytes editor/icons/2x/icon_rename.png | Bin 215 -> 0 bytes editor/icons/2x/icon_reparent.png | Bin 741 -> 0 bytes editor/icons/2x/icon_resource_preloader.png | Bin 609 -> 0 bytes editor/icons/2x/icon_rich_text_label.png | Bin 313 -> 0 bytes editor/icons/2x/icon_rigid_body.png | Bin 1139 -> 0 bytes editor/icons/2x/icon_rigid_body_2d.png | Bin 1206 -> 0 bytes editor/icons/2x/icon_room.png | Bin 567 -> 0 bytes editor/icons/2x/icon_room_bounds.png | Bin 631 -> 0 bytes editor/icons/2x/icon_rotate_0.png | Bin 878 -> 0 bytes editor/icons/2x/icon_rotate_180.png | Bin 713 -> 0 bytes editor/icons/2x/icon_rotate_270.png | Bin 666 -> 0 bytes editor/icons/2x/icon_rotate_90.png | Bin 805 -> 0 bytes editor/icons/2x/icon_sample.png | Bin 197 -> 0 bytes editor/icons/2x/icon_sample_library.png | Bin 568 -> 0 bytes editor/icons/2x/icon_sample_player.png | Bin 345 -> 0 bytes editor/icons/2x/icon_sample_player_2d.png | Bin 376 -> 0 bytes editor/icons/2x/icon_save.png | Bin 466 -> 0 bytes editor/icons/2x/icon_script.png | Bin 465 -> 0 bytes editor/icons/2x/icon_script_create.png | Bin 491 -> 0 bytes editor/icons/2x/icon_script_remove.png | Bin 787 -> 0 bytes editor/icons/2x/icon_scroll_bar.png | Bin 324 -> 0 bytes editor/icons/2x/icon_scroll_container.png | Bin 483 -> 0 bytes editor/icons/2x/icon_search.png | Bin 762 -> 0 bytes editor/icons/2x/icon_segment_shape_2d.png | Bin 320 -> 0 bytes editor/icons/2x/icon_shader.png | Bin 342 -> 0 bytes editor/icons/2x/icon_shader_material.png | Bin 342 -> 0 bytes editor/icons/2x/icon_short_cut.png | Bin 473 -> 0 bytes editor/icons/2x/icon_signal.png | Bin 327 -> 0 bytes editor/icons/2x/icon_skeleton.png | Bin 649 -> 0 bytes editor/icons/2x/icon_slider_grabber.png | Bin 686 -> 0 bytes editor/icons/2x/icon_slider_grabber_hl.png | Bin 672 -> 0 bytes editor/icons/2x/icon_slider_joint.png | Bin 393 -> 0 bytes editor/icons/2x/icon_slot.png | Bin 342 -> 0 bytes editor/icons/2x/icon_snap.png | Bin 424 -> 0 bytes editor/icons/2x/icon_sound_room_params.png | Bin 375 -> 0 bytes editor/icons/2x/icon_spatial.png | Bin 835 -> 0 bytes editor/icons/2x/icon_spatial_material.png | Bin 704 -> 0 bytes .../icons/2x/icon_spatial_sample_player.png | Bin 353 -> 0 bytes editor/icons/2x/icon_spatial_shader.png | Bin 704 -> 0 bytes .../icons/2x/icon_spatial_stream_player.png | Bin 262 -> 0 bytes editor/icons/2x/icon_sphere_mesh.png | Bin 979 -> 0 bytes editor/icons/2x/icon_sphere_shape.png | Bin 712 -> 0 bytes editor/icons/2x/icon_spin_box.png | Bin 436 -> 0 bytes editor/icons/2x/icon_spinbox_updown.png | Bin 562 -> 0 bytes editor/icons/2x/icon_spot_light.png | Bin 669 -> 0 bytes editor/icons/2x/icon_sprite.png | Bin 841 -> 0 bytes editor/icons/2x/icon_sprite_3d.png | Bin 838 -> 0 bytes editor/icons/2x/icon_sprite_frames.png | Bin 691 -> 0 bytes editor/icons/2x/icon_static_body.png | Bin 397 -> 0 bytes editor/icons/2x/icon_static_body_2d.png | Bin 417 -> 0 bytes editor/icons/2x/icon_stream_player.png | Bin 263 -> 0 bytes editor/icons/2x/icon_stream_texture.png | Bin 247 -> 0 bytes editor/icons/2x/icon_string.png | Bin 217 -> 0 bytes editor/icons/2x/icon_style_box_empty.png | Bin 555 -> 0 bytes editor/icons/2x/icon_style_box_flat.png | Bin 695 -> 0 bytes editor/icons/2x/icon_style_box_texture.png | Bin 693 -> 0 bytes editor/icons/2x/icon_tab_container.png | Bin 334 -> 0 bytes editor/icons/2x/icon_tab_menu.png | Bin 277 -> 0 bytes editor/icons/2x/icon_tabs.png | Bin 366 -> 0 bytes editor/icons/2x/icon_test_cube.png | Bin 596 -> 0 bytes editor/icons/2x/icon_text_edit.png | Bin 329 -> 0 bytes editor/icons/2x/icon_texture.png | Bin 262 -> 0 bytes editor/icons/2x/icon_texture_button.png | Bin 190 -> 0 bytes editor/icons/2x/icon_texture_progress.png | Bin 344 -> 0 bytes editor/icons/2x/icon_texture_rect.png | Bin 203 -> 0 bytes editor/icons/2x/icon_theme.png | Bin 809 -> 0 bytes editor/icons/2x/icon_tile_map.png | Bin 139 -> 0 bytes editor/icons/2x/icon_tile_set.png | Bin 242 -> 0 bytes editor/icons/2x/icon_timer.png | Bin 765 -> 0 bytes editor/icons/2x/icon_tool_button.png | Bin 753 -> 0 bytes editor/icons/2x/icon_tool_move.png | Bin 353 -> 0 bytes editor/icons/2x/icon_tool_pan.png | Bin 479 -> 0 bytes editor/icons/2x/icon_tool_rotate.png | Bin 786 -> 0 bytes editor/icons/2x/icon_tool_scale.png | Bin 562 -> 0 bytes editor/icons/2x/icon_tool_select.png | Bin 659 -> 0 bytes editor/icons/2x/icon_tools.png | Bin 544 -> 0 bytes editor/icons/2x/icon_touch_screen_button.png | Bin 511 -> 0 bytes editor/icons/2x/icon_track_add_key.png | Bin 127 -> 0 bytes editor/icons/2x/icon_track_add_key_hl.png | Bin 128 -> 0 bytes editor/icons/2x/icon_track_continuous.png | Bin 434 -> 0 bytes editor/icons/2x/icon_track_discrete.png | Bin 196 -> 0 bytes editor/icons/2x/icon_track_trigger.png | Bin 214 -> 0 bytes editor/icons/2x/icon_translation.png | Bin 285 -> 0 bytes editor/icons/2x/icon_transparent.png | Bin 177 -> 0 bytes editor/icons/2x/icon_transpose.png | Bin 210 -> 0 bytes editor/icons/2x/icon_tree.png | Bin 211 -> 0 bytes editor/icons/2x/icon_tree_arrow_down.png | Bin 312 -> 0 bytes editor/icons/2x/icon_tree_arrow_right.png | Bin 319 -> 0 bytes editor/icons/2x/icon_tween.png | Bin 320 -> 0 bytes editor/icons/2x/icon_unbone.png | Bin 661 -> 0 bytes editor/icons/2x/icon_unchecked.png | Bin 404 -> 0 bytes editor/icons/2x/icon_ungroup.png | Bin 202 -> 0 bytes editor/icons/2x/icon_uninstance.png | Bin 883 -> 0 bytes editor/icons/2x/icon_unlock.png | Bin 388 -> 0 bytes editor/icons/2x/icon_uv.png | Bin 502 -> 0 bytes editor/icons/2x/icon_v_box_container.png | Bin 327 -> 0 bytes editor/icons/2x/icon_v_button_array.png | Bin 461 -> 0 bytes editor/icons/2x/icon_v_scroll_bar.png | Bin 791 -> 0 bytes editor/icons/2x/icon_v_separator.png | Bin 154 -> 0 bytes editor/icons/2x/icon_v_slider.png | Bin 442 -> 0 bytes editor/icons/2x/icon_v_split_container.png | Bin 425 -> 0 bytes editor/icons/2x/icon_variant.png | Bin 398 -> 0 bytes editor/icons/2x/icon_vector.png | Bin 270 -> 0 bytes editor/icons/2x/icon_vector2.png | Bin 141 -> 0 bytes editor/icons/2x/icon_vehicle_body.png | Bin 410 -> 0 bytes editor/icons/2x/icon_vehicle_wheel.png | Bin 1269 -> 0 bytes editor/icons/2x/icon_video_player.png | Bin 380 -> 0 bytes editor/icons/2x/icon_viewport.png | Bin 349 -> 0 bytes editor/icons/2x/icon_viewport_container.png | Bin 528 -> 0 bytes editor/icons/2x/icon_viewport_sprite.png | Bin 403 -> 0 bytes editor/icons/2x/icon_viewport_texture.png | Bin 404 -> 0 bytes editor/icons/2x/icon_visibility_enabler.png | Bin 1106 -> 0 bytes .../icons/2x/icon_visibility_enabler_2d.png | Bin 1114 -> 0 bytes editor/icons/2x/icon_visibility_notifier.png | Bin 832 -> 0 bytes .../icons/2x/icon_visibility_notifier_2d.png | Bin 844 -> 0 bytes editor/icons/2x/icon_visible.png | Bin 994 -> 0 bytes editor/icons/2x/icon_visual_script.png | Bin 728 -> 0 bytes editor/icons/2x/icon_visual_shader_port.png | Bin 338 -> 0 bytes editor/icons/2x/icon_vslider_bg.png | Bin 236 -> 0 bytes editor/icons/2x/icon_vu_empty.png | Bin 452 -> 0 bytes editor/icons/2x/icon_vu_full.png | Bin 350 -> 0 bytes editor/icons/2x/icon_warning.png | Bin 350 -> 0 bytes editor/icons/2x/icon_window_dialog.png | Bin 311 -> 0 bytes editor/icons/2x/icon_world.png | Bin 502 -> 0 bytes editor/icons/2x/icon_world_2d.png | Bin 584 -> 0 bytes editor/icons/2x/icon_world_environment.png | Bin 1297 -> 0 bytes editor/icons/2x/icon_y_sort.png | Bin 293 -> 0 bytes editor/icons/2x/icon_zoom.png | Bin 718 -> 0 bytes editor/icons/2x/icon_zoom_less.png | Bin 162 -> 0 bytes editor/icons/2x/icon_zoom_more.png | Bin 290 -> 0 bytes editor/icons/2x/icon_zoom_reset.png | Bin 689 -> 0 bytes editor/icons/SCsub | 132 ++++---- editor/icons/dark/icon_2_d.svg | 5 + editor/icons/dark/icon_3_d.svg | 5 + editor/icons/dark/icon_GUI_checked.svg | 5 + editor/icons/dark/icon_GUI_dropdown.svg | 7 + editor/icons/dark/icon_GUI_hslider_bg.svg | 5 + editor/icons/dark/icon_GUI_hsplitter.svg | 5 + editor/icons/dark/icon_GUI_mini_tab_menu.svg | 7 + editor/icons/dark/icon_GUI_option_arrow.svg | 5 + .../icons/dark/icon_GUI_play_button_group.svg | 5 + editor/icons/dark/icon_GUI_progress_bar.svg | 5 + editor/icons/dark/icon_GUI_progress_fill.svg | 5 + editor/icons/dark/icon_GUI_radio_checked.svg | 6 + .../icons/dark/icon_GUI_radio_unchecked.svg | 5 + editor/icons/dark/icon_GUI_scroll_bg.svg | 1 + editor/icons/dark/icon_GUI_scroll_grabber.svg | 5 + .../icons/dark/icon_GUI_scroll_grabber_hl.svg | 5 + .../dark/icon_GUI_scroll_grabber_pressed.svg | 5 + editor/icons/dark/icon_GUI_slider_grabber.svg | 5 + .../icons/dark/icon_GUI_slider_grabber_hl.svg | 6 + editor/icons/dark/icon_GUI_spinbox_updown.svg | 5 + editor/icons/dark/icon_GUI_tab_menu.svg | 7 + editor/icons/dark/icon_GUI_toggle_off.svg | 5 + editor/icons/dark/icon_GUI_toggle_on.svg | 5 + .../icons/dark/icon_GUI_tree_arrow_down.svg | 5 + .../icons/dark/icon_GUI_tree_arrow_right.svg | 5 + editor/icons/dark/icon_GUI_unchecked.svg | 5 + editor/icons/dark/icon_GUI_vslider_bg.svg | 5 + editor/icons/dark/icon_GUI_vsplit_bg.svg | 5 + editor/icons/dark/icon_GUI_vsplitter.svg | 5 + editor/icons/dark/icon_accept_dialog.svg | 5 + editor/icons/dark/icon_add.svg | 5 + editor/icons/dark/icon_anchor.svg | 5 + editor/icons/dark/icon_animated_sprite.svg | 7 + editor/icons/dark/icon_animated_sprite_3d.svg | 7 + editor/icons/dark/icon_animation.svg | 5 + editor/icons/dark/icon_animation_player.svg | 5 + .../icons/dark/icon_animation_tree_player.svg | 5 + editor/icons/dark/icon_area.svg | 5 + editor/icons/dark/icon_area_2d.svg | 5 + editor/icons/dark/icon_arrow_left.svg | 5 + editor/icons/dark/icon_arrow_right.svg | 5 + editor/icons/dark/icon_arrow_up.svg | 5 + editor/icons/dark/icon_asset_lib.svg | 5 + editor/icons/dark/icon_atlas_texture.svg | 5 + editor/icons/dark/icon_audio_bus_bypass.svg | 5 + editor/icons/dark/icon_audio_bus_layout.svg | 12 + editor/icons/dark/icon_audio_bus_mute.svg | 5 + editor/icons/dark/icon_audio_bus_solo.svg | 5 + .../icons/dark/icon_audio_effect_amplify.svg | 12 + .../dark/icon_audio_stream_gibberish.svg | 5 + .../icons/dark/icon_audio_stream_player.svg | 13 + .../dark/icon_audio_stream_player_2_d.svg | 13 + .../dark/icon_audio_stream_player_3_d.svg | 13 + .../icons/dark/icon_audio_stream_sample.svg | 12 + editor/icons/dark/icon_auto_play.svg | 5 + editor/icons/dark/icon_back.svg | 5 + editor/icons/dark/icon_back_buffer_copy.svg | 5 + editor/icons/dark/icon_bake.svg | 5 + editor/icons/dark/icon_baked_light.svg | 5 + .../icons/dark/icon_baked_light_instance.svg | 5 + .../icons/dark/icon_baked_light_sampler.svg | 5 + editor/icons/dark/icon_bit_map.svg | 5 + editor/icons/dark/icon_bitmap_font.svg | 5 + editor/icons/dark/icon_blend.svg | 5 + editor/icons/dark/icon_bone.svg | 5 + editor/icons/dark/icon_bone_attachment.svg | 5 + editor/icons/dark/icon_bone_track.svg | 5 + editor/icons/dark/icon_bool.svg | 5 + editor/icons/dark/icon_box_shape.svg | 7 + editor/icons/dark/icon_bus_vu_db.svg | 12 + editor/icons/dark/icon_bus_vu_empty.svg | 13 + editor/icons/dark/icon_bus_vu_frozen.svg | 12 + editor/icons/dark/icon_bus_vu_full.svg | 12 + editor/icons/dark/icon_button.svg | 5 + editor/icons/dark/icon_button_group.svg | 5 + editor/icons/dark/icon_camera.svg | 5 + editor/icons/dark/icon_camera_2d.svg | 5 + editor/icons/dark/icon_canvas_item.svg | 5 + .../icons/dark/icon_canvas_item_material.svg | 11 + editor/icons/dark/icon_canvas_item_shader.svg | 11 + .../dark/icon_canvas_item_shader_graph.svg | 19 ++ editor/icons/dark/icon_canvas_layer.svg | 5 + editor/icons/dark/icon_canvas_modulate.svg | 8 + editor/icons/dark/icon_capsule_mesh.svg | 5 + editor/icons/dark/icon_capsule_shape.svg | 6 + editor/icons/dark/icon_capsule_shape_2d.svg | 5 + editor/icons/dark/icon_center_container.svg | 5 + editor/icons/dark/icon_check_box.svg | 5 + editor/icons/dark/icon_check_button.svg | 5 + editor/icons/dark/icon_circle_shape_2d.svg | 5 + editor/icons/dark/icon_class_list.svg | 11 + editor/icons/dark/icon_close.svg | 5 + editor/icons/dark/icon_collapse.svg | 5 + editor/icons/dark/icon_collision_2d.svg | 5 + editor/icons/dark/icon_collision_polygon.svg | 5 + editor/icons/dark/icon_collision_shape.svg | 7 + editor/icons/dark/icon_collision_shape_2d.svg | 5 + editor/icons/dark/icon_color.svg | 24 ++ editor/icons/dark/icon_color_pick.svg | 5 + editor/icons/dark/icon_color_picker.svg | 5 + .../icons/dark/icon_color_picker_button.svg | 7 + editor/icons/dark/icon_color_ramp.svg | 11 + editor/icons/dark/icon_color_rect.svg | 11 + .../icons/dark/icon_concave_polygon_shape.svg | 12 + .../dark/icon_concave_polygon_shape_2d.svg | 5 + editor/icons/dark/icon_cone_twist_joint.svg | 7 + .../icons/dark/icon_confirmation_dialog.svg | 5 + editor/icons/dark/icon_connect.svg | 7 + .../icons/dark/icon_connection_and_groups.svg | 5 + editor/icons/dark/icon_container.svg | 5 + editor/icons/dark/icon_control.svg | 5 + .../dark/icon_control_align_bottom_center.svg | 7 + .../dark/icon_control_align_bottom_left.svg | 7 + .../dark/icon_control_align_bottom_right.svg | 7 + .../dark/icon_control_align_bottom_wide.svg | 7 + .../icons/dark/icon_control_align_center.svg | 7 + .../dark/icon_control_align_center_left.svg | 5 + .../dark/icon_control_align_center_right.svg | 5 + .../dark/icon_control_align_left_center.svg | 7 + .../dark/icon_control_align_left_wide.svg | 7 + .../dark/icon_control_align_right_center.svg | 7 + .../dark/icon_control_align_right_wide.svg | 7 + .../dark/icon_control_align_top_center.svg | 7 + .../dark/icon_control_align_top_left.svg | 7 + .../dark/icon_control_align_top_right.svg | 7 + .../dark/icon_control_align_top_wide.svg | 7 + editor/icons/dark/icon_control_align_wide.svg | 7 + .../icons/dark/icon_control_hcenter_wide.svg | 7 + .../icons/dark/icon_control_vcenter_wide.svg | 7 + .../icons/dark/icon_convex_polygon_shape.svg | 9 + .../dark/icon_convex_polygon_shape_2d.svg | 5 + editor/icons/dark/icon_copy_node_path.svg | 6 + .../icons/dark/icon_create_new_scene_from.svg | 8 + editor/icons/dark/icon_cube_map.svg | 10 + editor/icons/dark/icon_cube_mesh.svg | 5 + editor/icons/dark/icon_curve.svg | 6 + editor/icons/dark/icon_curve_2d.svg | 5 + editor/icons/dark/icon_curve_3d.svg | 5 + editor/icons/dark/icon_curve_close.svg | 11 + editor/icons/dark/icon_curve_constant.svg | 5 + editor/icons/dark/icon_curve_create.svg | 10 + editor/icons/dark/icon_curve_curve.svg | 9 + editor/icons/dark/icon_curve_delete.svg | 9 + editor/icons/dark/icon_curve_edit.svg | 9 + editor/icons/dark/icon_curve_in.svg | 5 + editor/icons/dark/icon_curve_in_out.svg | 5 + editor/icons/dark/icon_curve_linear.svg | 5 + editor/icons/dark/icon_curve_out.svg | 5 + editor/icons/dark/icon_curve_out_in.svg | 5 + editor/icons/dark/icon_curve_texture.svg | 5 + editor/icons/dark/icon_cylinder_mesh.svg | 5 + .../dark/icon_damped_spring_joint_2d.svg | 6 + editor/icons/dark/icon_debug.svg | 14 + editor/icons/dark/icon_debug_continue.svg | 9 + editor/icons/dark/icon_debug_next.svg | 12 + editor/icons/dark/icon_debug_step.svg | 13 + editor/icons/dark/icon_dependency_changed.svg | 6 + .../icons/dark/icon_dependency_changed_hl.svg | 5 + .../dark/icon_dependency_local_changed.svg | 6 + .../dark/icon_dependency_local_changed_hl.svg | 5 + editor/icons/dark/icon_dependency_ok.svg | 6 + editor/icons/dark/icon_dependency_ok_hl.svg | 5 + editor/icons/dark/icon_directional_light.svg | 5 + editor/icons/dark/icon_distraction_free.svg | 9 + editor/icons/dark/icon_duplicate.svg | 5 + editor/icons/dark/icon_dynamic_font.svg | 6 + editor/icons/dark/icon_dynamic_font_data.svg | 6 + editor/icons/dark/icon_edit.svg | 5 + editor/icons/dark/icon_edit_key.svg | 6 + editor/icons/dark/icon_edit_pivot.svg | 5 + editor/icons/dark/icon_edit_resource.svg | 5 + editor/icons/dark/icon_editor_3d_handle.svg | 6 + .../icons/dark/icon_editor_control_anchor.svg | 8 + editor/icons/dark/icon_editor_handle.svg | 6 + editor/icons/dark/icon_editor_pivot.svg | 6 + editor/icons/dark/icon_editor_plugin.svg | 9 + editor/icons/dark/icon_environment.svg | 8 + editor/icons/dark/icon_error.svg | 5 + editor/icons/dark/icon_error_sign.svg | 7 + editor/icons/dark/icon_event_player.svg | 8 + editor/icons/dark/icon_favorites.svg | 5 + editor/icons/dark/icon_file_big.svg | 7 + editor/icons/dark/icon_file_dialog.svg | 5 + editor/icons/dark/icon_file_list.svg | 5 + editor/icons/dark/icon_file_server.svg | 7 + editor/icons/dark/icon_file_server_active.svg | 7 + editor/icons/dark/icon_file_thumbnail.svg | 5 + editor/icons/dark/icon_fixed_material.svg | 5 + .../dark/icon_fixed_spatial_material.svg | 11 + editor/icons/dark/icon_folder.svg | 5 + editor/icons/dark/icon_folder_big.svg | 5 + editor/icons/dark/icon_font.svg | 13 + editor/icons/dark/icon_forward.svg | 5 + editor/icons/dark/icon_g_d_native_library.svg | 5 + editor/icons/dark/icon_g_d_script.svg | 5 + editor/icons/dark/icon_g_i_probe.svg | 5 + editor/icons/dark/icon_g_i_probe_data.svg | 5 + .../icons/dark/icon_generic_6_d_o_f_joint.svg | 5 + .../dark/icon_gizmo_directional_light.svg | 5 + editor/icons/dark/icon_gizmo_light.svg | 5 + editor/icons/dark/icon_gizmo_listener.svg | 7 + .../dark/icon_gizmo_spatial_sample_player.svg | 5 + .../dark/icon_gizmo_spatial_stream_player.svg | 5 + editor/icons/dark/icon_godot.svg | 33 ++ editor/icons/dark/icon_gradient.svg | 11 + editor/icons/dark/icon_gradient_texture.svg | 19 ++ editor/icons/dark/icon_graph_comment.svg | 5 + editor/icons/dark/icon_graph_cube_uniform.svg | 5 + editor/icons/dark/icon_graph_curve_map.svg | 6 + .../icons/dark/icon_graph_default_texture.svg | 5 + editor/icons/dark/icon_graph_edit.svg | 6 + editor/icons/dark/icon_graph_input.svg | 5 + editor/icons/dark/icon_graph_node.svg | 6 + editor/icons/dark/icon_graph_rgb.svg | 12 + editor/icons/dark/icon_graph_rgb_op.svg | 11 + editor/icons/dark/icon_graph_rgb_uniform.svg | 12 + editor/icons/dark/icon_graph_scalar.svg | 5 + .../icons/dark/icon_graph_scalar_interp.svg | 5 + editor/icons/dark/icon_graph_scalar_op.svg | 8 + .../icons/dark/icon_graph_scalar_uniform.svg | 5 + .../icons/dark/icon_graph_scalars_to_vec.svg | 11 + editor/icons/dark/icon_graph_texscreen.svg | 6 + .../icons/dark/icon_graph_texture_uniform.svg | 5 + editor/icons/dark/icon_graph_time.svg | 7 + editor/icons/dark/icon_graph_vec_dp.svg | 7 + editor/icons/dark/icon_graph_vec_interp.svg | 5 + editor/icons/dark/icon_graph_vec_length.svg | 7 + editor/icons/dark/icon_graph_vec_op.svg | 5 + .../icons/dark/icon_graph_vec_scalar_op.svg | 6 + .../icons/dark/icon_graph_vec_to_scalars.svg | 11 + .../icons/dark/icon_graph_vecs_to_xform.svg | 11 + editor/icons/dark/icon_graph_vector.svg | 5 + .../icons/dark/icon_graph_vector_uniform.svg | 6 + editor/icons/dark/icon_graph_xform.svg | 11 + editor/icons/dark/icon_graph_xform_mult.svg | 7 + .../dark/icon_graph_xform_scalar_func.svg | 10 + .../icons/dark/icon_graph_xform_to_vecs.svg | 11 + .../icons/dark/icon_graph_xform_uniform.svg | 5 + .../icons/dark/icon_graph_xform_vec_func.svg | 10 + .../icons/dark/icon_graph_xform_vec_imult.svg | 7 + .../icons/dark/icon_graph_xform_vec_mult.svg | 7 + editor/icons/dark/icon_grid.svg | 5 + editor/icons/dark/icon_grid_container.svg | 5 + editor/icons/dark/icon_grid_map.svg | 5 + editor/icons/dark/icon_groove_joint_2d.svg | 5 + editor/icons/dark/icon_group.svg | 9 + editor/icons/dark/icon_groups.svg | 7 + editor/icons/dark/icon_gui_close.svg | 5 + editor/icons/dark/icon_h_box_container.svg | 7 + editor/icons/dark/icon_h_button_array.svg | 5 + editor/icons/dark/icon_h_scroll_bar.svg | 5 + editor/icons/dark/icon_h_separator.svg | 7 + editor/icons/dark/icon_h_slider.svg | 5 + editor/icons/dark/icon_h_split_container.svg | 8 + editor/icons/dark/icon_h_t_t_p_request.svg | 6 + editor/icons/dark/icon_headphones.svg | 11 + editor/icons/dark/icon_help.svg | 5 + editor/icons/dark/icon_help_search.svg | 7 + editor/icons/dark/icon_hidden.svg | 5 + editor/icons/dark/icon_hinge_joint.svg | 5 + editor/icons/dark/icon_history.svg | 8 + editor/icons/dark/icon_hsize.svg | 5 + editor/icons/dark/icon_image.svg | 5 + editor/icons/dark/icon_image_texture.svg | 5 + editor/icons/dark/icon_immediate_geometry.svg | 5 + editor/icons/dark/icon_import_check.svg | 5 + editor/icons/dark/icon_import_fail.svg | 5 + editor/icons/dark/icon_instance.svg | 6 + editor/icons/dark/icon_instance_options.svg | 6 + editor/icons/dark/icon_integer.svg | 7 + editor/icons/dark/icon_interp_cubic.svg | 5 + editor/icons/dark/icon_interp_linear.svg | 5 + editor/icons/dark/icon_interp_raw.svg | 5 + editor/icons/dark/icon_interp_wrap_clamp.svg | 9 + editor/icons/dark/icon_interp_wrap_loop.svg | 10 + .../icons/dark/icon_interpolated_camera.svg | 5 + editor/icons/dark/icon_invalid_key.svg | 5 + editor/icons/dark/icon_inverse_kinematics.svg | 12 + editor/icons/dark/icon_item_list.svg | 14 + editor/icons/dark/icon_joy_axis.svg | 7 + editor/icons/dark/icon_joy_button.svg | 6 + editor/icons/dark/icon_joypad.svg | 5 + editor/icons/dark/icon_key.svg | 7 + editor/icons/dark/icon_key_hover.svg | 5 + editor/icons/dark/icon_key_invalid.svg | 5 + editor/icons/dark/icon_key_next.svg | 6 + editor/icons/dark/icon_key_selected.svg | 5 + editor/icons/dark/icon_key_value.svg | 5 + editor/icons/dark/icon_key_xform.svg | 5 + editor/icons/dark/icon_keyboard.svg | 7 + editor/icons/dark/icon_kinematic_body.svg | 5 + editor/icons/dark/icon_kinematic_body_2d.svg | 5 + editor/icons/dark/icon_label.svg | 5 + editor/icons/dark/icon_large_texture.svg | 5 + editor/icons/dark/icon_light_2d.svg | 5 + editor/icons/dark/icon_light_occluder_2d.svg | 11 + editor/icons/dark/icon_line_2d.svg | 5 + editor/icons/dark/icon_line_edit.svg | 6 + editor/icons/dark/icon_line_shape_2d.svg | 7 + editor/icons/dark/icon_link_button.svg | 6 + editor/icons/dark/icon_list_select.svg | 6 + editor/icons/dark/icon_listener.svg | 8 + editor/icons/dark/icon_load.svg | 5 + editor/icons/dark/icon_lock.svg | 8 + editor/icons/dark/icon_loop.svg | 5 + editor/icons/dark/icon_loop_interpolation.svg | 10 + editor/icons/dark/icon_main_play.svg | 5 + editor/icons/dark/icon_main_stop.svg | 5 + editor/icons/dark/icon_margin_container.svg | 6 + .../icons/dark/icon_material_preview_cube.svg | 8 + .../dark/icon_material_preview_cube_off.svg | 9 + .../dark/icon_material_preview_light_1.svg | 5 + .../icon_material_preview_light_1_off.svg | 5 + .../dark/icon_material_preview_light_2.svg | 5 + .../icon_material_preview_light_2_off.svg | 6 + .../dark/icon_material_preview_sphere.svg | 5 + .../dark/icon_material_preview_sphere_off.svg | 5 + editor/icons/dark/icon_matrix.svg | 19 ++ editor/icons/dark/icon_menu_button.svg | 6 + editor/icons/dark/icon_mesh.svg | 5 + editor/icons/dark/icon_mesh_instance.svg | 13 + editor/icons/dark/icon_mesh_library.svg | 5 + editor/icons/dark/icon_mini_aabb.svg | 10 + editor/icons/dark/icon_mini_array.svg | 13 + editor/icons/dark/icon_mini_basis.svg | 19 ++ editor/icons/dark/icon_mini_boolean.svg | 13 + editor/icons/dark/icon_mini_color.svg | 7 + editor/icons/dark/icon_mini_color_array.svg | 14 + editor/icons/dark/icon_mini_dictionary.svg | 16 + editor/icons/dark/icon_mini_float.svg | 15 + editor/icons/dark/icon_mini_float_array.svg | 13 + editor/icons/dark/icon_mini_image.svg | 17 + editor/icons/dark/icon_mini_input.svg | 15 + editor/icons/dark/icon_mini_int_array.svg | 8 + editor/icons/dark/icon_mini_integer.svg | 14 + editor/icons/dark/icon_mini_matrix3.svg | 19 ++ editor/icons/dark/icon_mini_object.svg | 11 + editor/icons/dark/icon_mini_path.svg | 14 + editor/icons/dark/icon_mini_plane.svg | 12 + editor/icons/dark/icon_mini_quat.svg | 12 + editor/icons/dark/icon_mini_raw_array.svg | 9 + editor/icons/dark/icon_mini_rect2.svg | 19 ++ editor/icons/dark/icon_mini_rid.svg | 14 + editor/icons/dark/icon_mini_string.svg | 12 + editor/icons/dark/icon_mini_string_array.svg | 10 + editor/icons/dark/icon_mini_transform.svg | 7 + editor/icons/dark/icon_mini_transform2D.svg | 10 + editor/icons/dark/icon_mini_variant.svg | 14 + editor/icons/dark/icon_mini_vector2.svg | 15 + editor/icons/dark/icon_mini_vector2_array.svg | 12 + editor/icons/dark/icon_mini_vector3.svg | 15 + editor/icons/dark/icon_mini_vector3_array.svg | 12 + editor/icons/dark/icon_mirror_x.svg | 7 + editor/icons/dark/icon_mirror_y.svg | 5 + editor/icons/dark/icon_mouse.svg | 5 + editor/icons/dark/icon_move_down.svg | 6 + editor/icons/dark/icon_move_point.svg | 7 + editor/icons/dark/icon_move_up.svg | 6 + editor/icons/dark/icon_multi_edit.svg | 8 + editor/icons/dark/icon_multi_line.svg | 10 + editor/icons/dark/icon_multi_mesh.svg | 5 + .../icons/dark/icon_multi_mesh_instance.svg | 6 + editor/icons/dark/icon_multi_script.svg | 6 + editor/icons/dark/icon_native_script.svg | 5 + editor/icons/dark/icon_navigation.svg | 5 + editor/icons/dark/icon_navigation_2d.svg | 5 + editor/icons/dark/icon_navigation_mesh.svg | 5 + .../dark/icon_navigation_mesh_instance.svg | 8 + editor/icons/dark/icon_navigation_polygon.svg | 8 + .../dark/icon_navigation_polygon_instance.svg | 6 + editor/icons/dark/icon_new.svg | 8 + editor/icons/dark/icon_nine_patch_rect.svg | 12 + editor/icons/dark/icon_node.svg | 5 + editor/icons/dark/icon_node_2d.svg | 5 + editor/icons/dark/icon_node_warning.svg | 7 + editor/icons/dark/icon_non_favorite.svg | 5 + editor/icons/dark/icon_object.svg | 6 + .../icons/dark/icon_occluder_polygon_2d.svg | 6 + editor/icons/dark/icon_omni_light.svg | 5 + editor/icons/dark/icon_option_button.svg | 6 + editor/icons/dark/icon_override.svg | 6 + .../icons/dark/icon_packed_data_container.svg | 13 + editor/icons/dark/icon_packed_scene.svg | 8 + editor/icons/dark/icon_panel.svg | 5 + editor/icons/dark/icon_panel_container.svg | 5 + editor/icons/dark/icon_panels_1.svg | 5 + editor/icons/dark/icon_panels_2.svg | 6 + editor/icons/dark/icon_panels_2_alt.svg | 6 + editor/icons/dark/icon_panels_3.svg | 7 + editor/icons/dark/icon_panels_3_alt.svg | 7 + editor/icons/dark/icon_panels_4.svg | 8 + editor/icons/dark/icon_panorama_sky.svg | 14 + .../icons/dark/icon_parallax_background.svg | 15 + editor/icons/dark/icon_parallax_layer.svg | 8 + .../icons/dark/icon_particle_attractor_2d.svg | 9 + editor/icons/dark/icon_particles.svg | 11 + editor/icons/dark/icon_particles_2d.svg | 5 + editor/icons/dark/icon_particles_material.svg | 11 + editor/icons/dark/icon_path.svg | 7 + editor/icons/dark/icon_path_2d.svg | 7 + editor/icons/dark/icon_path_follow.svg | 7 + editor/icons/dark/icon_path_follow_2d.svg | 7 + editor/icons/dark/icon_pause.svg | 5 + editor/icons/dark/icon_pin.svg | 8 + editor/icons/dark/icon_pin_joint.svg | 8 + editor/icons/dark/icon_pin_joint_2d.svg | 5 + editor/icons/dark/icon_pin_pressed.svg | 8 + editor/icons/dark/icon_plane.svg | 5 + editor/icons/dark/icon_plane_mesh.svg | 5 + editor/icons/dark/icon_plane_shape.svg | 5 + editor/icons/dark/icon_play.svg | 5 + editor/icons/dark/icon_play_backwards.svg | 5 + editor/icons/dark/icon_play_custom.svg | 6 + editor/icons/dark/icon_play_scene.svg | 8 + editor/icons/dark/icon_play_start.svg | 8 + .../icons/dark/icon_play_start_backwards.svg | 8 + editor/icons/dark/icon_polygon_2_d.svg | 5 + .../icons/dark/icon_polygon_path_finder.svg | 5 + editor/icons/dark/icon_popup.svg | 5 + editor/icons/dark/icon_popup_dialog.svg | 5 + editor/icons/dark/icon_popup_menu.svg | 6 + editor/icons/dark/icon_popup_panel.svg | 6 + editor/icons/dark/icon_portal.svg | 5 + editor/icons/dark/icon_position_2d.svg | 5 + editor/icons/dark/icon_position_3d.svg | 5 + editor/icons/dark/icon_prism_mesh.svg | 5 + editor/icons/dark/icon_procedural_sky.svg | 14 + editor/icons/dark/icon_progress_1.svg | 12 + editor/icons/dark/icon_progress_2.svg | 12 + editor/icons/dark/icon_progress_3.svg | 12 + editor/icons/dark/icon_progress_4.svg | 12 + editor/icons/dark/icon_progress_5.svg | 12 + editor/icons/dark/icon_progress_6.svg | 12 + editor/icons/dark/icon_progress_7.svg | 12 + editor/icons/dark/icon_progress_8.svg | 12 + editor/icons/dark/icon_progress_bar.svg | 8 + editor/icons/dark/icon_proximity_group.svg | 11 + editor/icons/dark/icon_quad.svg | 5 + editor/icons/dark/icon_quad_mesh.svg | 5 + editor/icons/dark/icon_quat.svg | 6 + editor/icons/dark/icon_range.svg | 9 + editor/icons/dark/icon_rating_no_star.svg | 7 + editor/icons/dark/icon_rating_star.svg | 5 + editor/icons/dark/icon_ray_cast.svg | 6 + editor/icons/dark/icon_ray_cast_2d.svg | 5 + editor/icons/dark/icon_ray_shape.svg | 9 + editor/icons/dark/icon_ray_shape_2d.svg | 6 + editor/icons/dark/icon_rayito.svg | 6 + editor/icons/dark/icon_real.svg | 11 + editor/icons/dark/icon_rectangle_shape_2d.svg | 5 + editor/icons/dark/icon_reference_rect.svg | 12 + editor/icons/dark/icon_reflection_probe.svg | 5 + editor/icons/dark/icon_region_edit.svg | 13 + editor/icons/dark/icon_reload_small.svg | 6 + editor/icons/dark/icon_remote.svg | 7 + editor/icons/dark/icon_remote_transform.svg | 8 + .../icons/dark/icon_remote_transform_2d.svg | 8 + editor/icons/dark/icon_remove.svg | 7 + editor/icons/dark/icon_rename.svg | 5 + editor/icons/dark/icon_reparent.svg | 6 + editor/icons/dark/icon_resource_preloader.svg | 8 + editor/icons/dark/icon_rich_text_label.svg | 11 + editor/icons/dark/icon_rigid_body.svg | 6 + editor/icons/dark/icon_rigid_body_2d.svg | 13 + editor/icons/dark/icon_room.svg | 5 + editor/icons/dark/icon_room_bounds.svg | 5 + editor/icons/dark/icon_rotate_0.svg | 6 + editor/icons/dark/icon_rotate_180.svg | 9 + editor/icons/dark/icon_rotate_270.svg | 10 + editor/icons/dark/icon_rotate_90.svg | 8 + editor/icons/dark/icon_sample_library.svg | 6 + editor/icons/dark/icon_save.svg | 7 + editor/icons/dark/icon_script.svg | 7 + editor/icons/dark/icon_script_create.svg | 8 + editor/icons/dark/icon_script_remove.svg | 8 + editor/icons/dark/icon_scroll_bar.svg | 7 + editor/icons/dark/icon_scroll_container.svg | 9 + editor/icons/dark/icon_search.svg | 6 + editor/icons/dark/icon_segment_shape_2d.svg | 5 + editor/icons/dark/icon_shader.svg | 11 + editor/icons/dark/icon_short_cut.svg | 6 + editor/icons/dark/icon_signal.svg | 9 + editor/icons/dark/icon_skeleton.svg | 8 + editor/icons/dark/icon_slider_joint.svg | 10 + editor/icons/dark/icon_slot.svg | 7 + editor/icons/dark/icon_snap.svg | 10 + editor/icons/dark/icon_sound_room_params.svg | 9 + editor/icons/dark/icon_spatial.svg | 5 + editor/icons/dark/icon_spatial_material.svg | 11 + .../icons/dark/icon_spatial_sample_player.svg | 5 + .../icons/dark/icon_spatial_stream_player.svg | 5 + editor/icons/dark/icon_sphere_mesh.svg | 5 + editor/icons/dark/icon_sphere_shape.svg | 6 + editor/icons/dark/icon_spin_box.svg | 8 + editor/icons/dark/icon_spot_light.svg | 5 + editor/icons/dark/icon_sprite.svg | 5 + editor/icons/dark/icon_sprite_3d.svg | 5 + editor/icons/dark/icon_sprite_frames.svg | 11 + editor/icons/dark/icon_static_body.svg | 5 + editor/icons/dark/icon_static_body_2d.svg | 6 + editor/icons/dark/icon_stream_player.svg | 5 + editor/icons/dark/icon_stream_texture.svg | 5 + editor/icons/dark/icon_string.svg | 5 + editor/icons/dark/icon_style_box_empty.svg | 10 + editor/icons/dark/icon_style_box_flat.svg | 11 + editor/icons/dark/icon_style_box_texture.svg | 11 + editor/icons/dark/icon_tab_container.svg | 5 + editor/icons/dark/icon_tabs.svg | 5 + editor/icons/dark/icon_test_cube.svg | 7 + editor/icons/dark/icon_text_edit.svg | 6 + editor/icons/dark/icon_texture_button.svg | 7 + editor/icons/dark/icon_texture_progress.svg | 8 + editor/icons/dark/icon_texture_rect.svg | 6 + editor/icons/dark/icon_theme.svg | 11 + editor/icons/dark/icon_tile_map.svg | 5 + editor/icons/dark/icon_tile_set.svg | 5 + editor/icons/dark/icon_timer.svg | 8 + editor/icons/dark/icon_tool_button.svg | 11 + editor/icons/dark/icon_tool_move.svg | 5 + editor/icons/dark/icon_tool_pan.svg | 13 + editor/icons/dark/icon_tool_rotate.svg | 6 + editor/icons/dark/icon_tool_scale.svg | 5 + editor/icons/dark/icon_tool_select.svg | 7 + editor/icons/dark/icon_tools.svg | 5 + .../icons/dark/icon_touch_screen_button.svg | 5 + editor/icons/dark/icon_track_add_key.svg | 5 + editor/icons/dark/icon_track_add_key_hl.svg | 6 + editor/icons/dark/icon_track_continuous.svg | 5 + editor/icons/dark/icon_track_discrete.svg | 7 + editor/icons/dark/icon_track_trigger.svg | 9 + editor/icons/dark/icon_translation.svg | 5 + editor/icons/dark/icon_transpose.svg | 12 + editor/icons/dark/icon_tree.svg | 13 + editor/icons/dark/icon_tween.svg | 5 + editor/icons/dark/icon_unbone.svg | 5 + editor/icons/dark/icon_ungroup.svg | 12 + editor/icons/dark/icon_unlock.svg | 7 + editor/icons/dark/icon_uv.svg | 5 + editor/icons/dark/icon_v_box_container.svg | 5 + editor/icons/dark/icon_v_button_array.svg | 6 + editor/icons/dark/icon_v_scroll_bar.svg | 5 + editor/icons/dark/icon_v_separator.svg | 5 + editor/icons/dark/icon_v_slider.svg | 10 + editor/icons/dark/icon_v_split_container.svg | 8 + editor/icons/dark/icon_variant.svg | 16 + editor/icons/dark/icon_vector.svg | 6 + editor/icons/dark/icon_vector2.svg | 5 + editor/icons/dark/icon_vehicle_body.svg | 7 + editor/icons/dark/icon_vehicle_wheel.svg | 6 + editor/icons/dark/icon_video_player.svg | 7 + editor/icons/dark/icon_viewport.svg | 5 + editor/icons/dark/icon_viewport_container.svg | 5 + editor/icons/dark/icon_viewport_sprite.svg | 10 + editor/icons/dark/icon_viewport_texture.svg | 5 + editor/icons/dark/icon_visibility_enabler.svg | 9 + .../icons/dark/icon_visibility_enabler_2d.svg | 9 + .../icons/dark/icon_visibility_notifier.svg | 7 + .../dark/icon_visibility_notifier_2d.svg | 5 + editor/icons/dark/icon_visible.svg | 6 + editor/icons/dark/icon_visual_script.svg | 6 + editor/icons/dark/icon_visual_shader_port.svg | 5 + editor/icons/dark/icon_vu_empty.svg | 13 + editor/icons/dark/icon_vu_full.svg | 12 + editor/icons/dark/icon_warning.svg | 5 + editor/icons/dark/icon_window_dialog.svg | 5 + editor/icons/dark/icon_world.svg | 6 + editor/icons/dark/icon_world_2d.svg | 5 + editor/icons/dark/icon_world_environment.svg | 8 + editor/icons/dark/icon_y_sort.svg | 8 + editor/icons/dark/icon_zoom.svg | 5 + editor/icons/dark/icon_zoom_less.svg | 5 + editor/icons/dark/icon_zoom_more.svg | 12 + editor/icons/dark/icon_zoom_reset.svg | 10 + editor/icons/icon_2_d.png | Bin 252 -> 0 bytes editor/icons/icon_2_d.svg | 5 + editor/icons/icon_3_d.png | Bin 363 -> 0 bytes editor/icons/icon_3_d.svg | 5 + editor/icons/icon_GUI_checked.png | Bin 341 -> 0 bytes editor/icons/icon_GUI_checked.svg | 5 + editor/icons/icon_GUI_dropdown.png | Bin 136 -> 0 bytes editor/icons/icon_GUI_dropdown.svg | 7 + editor/icons/icon_GUI_hslider_bg.png | Bin 105 -> 0 bytes editor/icons/icon_GUI_hslider_bg.svg | 5 + editor/icons/icon_GUI_hsplitter.png | Bin 132 -> 0 bytes editor/icons/icon_GUI_hsplitter.svg | 5 + editor/icons/icon_GUI_mini_tab_menu.png | Bin 139 -> 0 bytes editor/icons/icon_GUI_mini_tab_menu.svg | 7 + editor/icons/icon_GUI_option_arrow.png | Bin 205 -> 0 bytes editor/icons/icon_GUI_option_arrow.svg | 5 + editor/icons/icon_GUI_play_button_group.png | Bin 427 -> 0 bytes editor/icons/icon_GUI_play_button_group.svg | 5 + editor/icons/icon_GUI_progress_bar.png | Bin 183 -> 0 bytes editor/icons/icon_GUI_progress_bar.svg | 5 + editor/icons/icon_GUI_progress_fill.png | Bin 139 -> 0 bytes editor/icons/icon_GUI_progress_fill.svg | 5 + editor/icons/icon_GUI_radio_checked.png | Bin 457 -> 0 bytes editor/icons/icon_GUI_radio_checked.svg | 6 + editor/icons/icon_GUI_radio_unchecked.png | Bin 420 -> 0 bytes editor/icons/icon_GUI_radio_unchecked.svg | 5 + editor/icons/icon_GUI_scroll_bg.png | Bin 90 -> 0 bytes editor/icons/icon_GUI_scroll_bg.svg | 1 + editor/icons/icon_GUI_scroll_grabber.png | Bin 147 -> 0 bytes editor/icons/icon_GUI_scroll_grabber.svg | 5 + editor/icons/icon_GUI_scroll_grabber_hl.png | Bin 176 -> 0 bytes editor/icons/icon_GUI_scroll_grabber_hl.svg | 5 + .../icons/icon_GUI_scroll_grabber_pressed.png | Bin 233 -> 0 bytes .../icons/icon_GUI_scroll_grabber_pressed.svg | 5 + editor/icons/icon_GUI_slider_grabber.png | Bin 168 -> 0 bytes editor/icons/icon_GUI_slider_grabber.svg | 5 + editor/icons/icon_GUI_slider_grabber_hl.png | Bin 477 -> 0 bytes editor/icons/icon_GUI_slider_grabber_hl.svg | 6 + editor/icons/icon_GUI_spinbox_updown.png | Bin 345 -> 0 bytes editor/icons/icon_GUI_spinbox_updown.svg | 5 + editor/icons/icon_GUI_tab_menu.png | Bin 146 -> 0 bytes editor/icons/icon_GUI_tab_menu.svg | 7 + editor/icons/icon_GUI_toggle_off.png | Bin 1143 -> 0 bytes editor/icons/icon_GUI_toggle_off.svg | 5 + editor/icons/icon_GUI_toggle_on.png | Bin 1030 -> 0 bytes editor/icons/icon_GUI_toggle_on.svg | 5 + editor/icons/icon_GUI_tree_arrow_down.png | Bin 170 -> 0 bytes editor/icons/icon_GUI_tree_arrow_down.svg | 5 + editor/icons/icon_GUI_tree_arrow_right.png | Bin 189 -> 0 bytes editor/icons/icon_GUI_tree_arrow_right.svg | 5 + editor/icons/icon_GUI_unchecked.png | Bin 231 -> 0 bytes editor/icons/icon_GUI_unchecked.svg | 5 + editor/icons/icon_GUI_vslider_bg.png | Bin 108 -> 0 bytes editor/icons/icon_GUI_vslider_bg.svg | 5 + editor/icons/icon_GUI_vsplit_bg.png | Bin 96 -> 0 bytes editor/icons/icon_GUI_vsplit_bg.svg | 5 + editor/icons/icon_GUI_vsplitter.png | Bin 122 -> 0 bytes editor/icons/icon_GUI_vsplitter.svg | 5 + editor/icons/icon_accept_dialog.png | Bin 338 -> 0 bytes editor/icons/icon_accept_dialog.svg | 5 + editor/icons/icon_add.png | Bin 129 -> 0 bytes editor/icons/icon_add.svg | 5 + editor/icons/icon_add_track.png | Bin 129 -> 0 bytes editor/icons/icon_anchor.png | Bin 451 -> 0 bytes editor/icons/icon_anchor.svg | 5 + editor/icons/icon_anim_export.png | Bin 552 -> 0 bytes editor/icons/icon_anim_export_all.png | Bin 566 -> 0 bytes editor/icons/icon_anim_get.png | Bin 276 -> 0 bytes editor/icons/icon_anim_get_hl.png | Bin 270 -> 0 bytes editor/icons/icon_anim_import.png | Bin 572 -> 0 bytes editor/icons/icon_anim_import_all.png | Bin 586 -> 0 bytes editor/icons/icon_anim_set.png | Bin 287 -> 0 bytes editor/icons/icon_anim_set_hl.png | Bin 268 -> 0 bytes editor/icons/icon_animated_sprite.png | Bin 584 -> 0 bytes editor/icons/icon_animated_sprite.svg | 7 + editor/icons/icon_animated_sprite_3d.png | Bin 552 -> 0 bytes editor/icons/icon_animated_sprite_3d.svg | 7 + editor/icons/icon_animation.png | Bin 399 -> 0 bytes editor/icons/icon_animation.svg | 5 + editor/icons/icon_animation_node.png | Bin 261 -> 0 bytes editor/icons/icon_animation_play.png | Bin 593 -> 0 bytes editor/icons/icon_animation_player.png | Bin 151 -> 0 bytes editor/icons/icon_animation_player.svg | 5 + editor/icons/icon_animation_set.png | Bin 529 -> 0 bytes editor/icons/icon_animation_tree.png | Bin 218 -> 0 bytes editor/icons/icon_animation_tree_player.png | Bin 218 -> 0 bytes editor/icons/icon_animation_tree_player.svg | 5 + editor/icons/icon_area.png | Bin 176 -> 0 bytes editor/icons/icon_area.svg | 5 + editor/icons/icon_area_2d.png | Bin 182 -> 0 bytes editor/icons/icon_area_2d.svg | 5 + editor/icons/icon_array_data.png | Bin 176 -> 0 bytes editor/icons/icon_array_float.png | Bin 177 -> 0 bytes editor/icons/icon_array_int.png | Bin 172 -> 0 bytes editor/icons/icon_array_string.png | Bin 178 -> 0 bytes editor/icons/icon_array_variant.png | Bin 172 -> 0 bytes editor/icons/icon_arrow_left.png | Bin 269 -> 0 bytes editor/icons/icon_arrow_left.svg | 5 + editor/icons/icon_arrow_left_disabled.png | Bin 244 -> 0 bytes editor/icons/icon_arrow_right.png | Bin 262 -> 0 bytes editor/icons/icon_arrow_right.svg | 5 + editor/icons/icon_arrow_right_disabled.png | Bin 252 -> 0 bytes editor/icons/icon_arrow_up.png | Bin 259 -> 0 bytes editor/icons/icon_arrow_up.svg | 5 + editor/icons/icon_arrow_up_disabled.png | Bin 275 -> 0 bytes editor/icons/icon_asset_lib.png | Bin 224 -> 0 bytes editor/icons/icon_asset_lib.svg | 5 + editor/icons/icon_atlas_texture.png | Bin 286 -> 0 bytes editor/icons/icon_atlas_texture.svg | 5 + editor/icons/icon_audio_bus_bypass.png | Bin 242 -> 0 bytes editor/icons/icon_audio_bus_bypass.svg | 5 + editor/icons/icon_audio_bus_layout.png | Bin 319 -> 0 bytes editor/icons/icon_audio_bus_layout.svg | 12 + editor/icons/icon_audio_bus_mute.png | Bin 292 -> 0 bytes editor/icons/icon_audio_bus_mute.svg | 5 + editor/icons/icon_audio_bus_solo.png | Bin 309 -> 0 bytes editor/icons/icon_audio_bus_solo.svg | 5 + editor/icons/icon_audio_effect_amplify.png | Bin 300 -> 0 bytes editor/icons/icon_audio_effect_amplify.svg | 12 + editor/icons/icon_audio_stream_gibberish.png | Bin 250 -> 0 bytes editor/icons/icon_audio_stream_gibberish.svg | 5 + editor/icons/icon_audio_stream_m_p_c.png | Bin 832 -> 0 bytes .../icons/icon_audio_stream_o_g_g_vorbis.png | Bin 774 -> 0 bytes editor/icons/icon_audio_stream_opus.png | Bin 559 -> 0 bytes editor/icons/icon_audio_stream_player.png | Bin 443 -> 0 bytes editor/icons/icon_audio_stream_player.svg | 13 + editor/icons/icon_audio_stream_player_2_d.png | Bin 445 -> 0 bytes editor/icons/icon_audio_stream_player_2_d.svg | 13 + editor/icons/icon_audio_stream_player_3_d.png | Bin 433 -> 0 bytes editor/icons/icon_audio_stream_player_3_d.svg | 13 + editor/icons/icon_audio_stream_sample.png | Bin 425 -> 0 bytes editor/icons/icon_audio_stream_sample.svg | 12 + editor/icons/icon_audio_stream_speex.png | Bin 1080 -> 0 bytes editor/icons/icon_auto_play.png | Bin 370 -> 0 bytes editor/icons/icon_auto_play.svg | 5 + editor/icons/icon_b_c_s_f_x.png | Bin 451 -> 0 bytes editor/icons/icon_b_g_color_f_x.png | Bin 367 -> 0 bytes editor/icons/icon_b_g_image_f_x.png | Bin 753 -> 0 bytes editor/icons/icon_back.png | Bin 290 -> 0 bytes editor/icons/icon_back.svg | 5 + editor/icons/icon_back_buffer_copy.png | Bin 158 -> 0 bytes editor/icons/icon_back_buffer_copy.svg | 5 + editor/icons/icon_back_disabled.png | Bin 175 -> 0 bytes editor/icons/icon_back_no.png | Bin 213 -> 0 bytes editor/icons/icon_bake.png | Bin 180 -> 0 bytes editor/icons/icon_bake.svg | 5 + editor/icons/icon_baked_light.png | Bin 179 -> 0 bytes editor/icons/icon_baked_light.svg | 5 + editor/icons/icon_baked_light_instance.png | Bin 179 -> 0 bytes editor/icons/icon_baked_light_instance.svg | 5 + editor/icons/icon_baked_light_sampler.png | Bin 230 -> 0 bytes editor/icons/icon_baked_light_sampler.svg | 5 + editor/icons/icon_bit_map.png | Bin 119 -> 0 bytes editor/icons/icon_bit_map.svg | 5 + editor/icons/icon_bitmap_font.png | Bin 160 -> 0 bytes editor/icons/icon_bitmap_font.svg | 5 + editor/icons/icon_blend.png | Bin 578 -> 0 bytes editor/icons/icon_blend.svg | 5 + editor/icons/icon_bone.png | Bin 349 -> 0 bytes editor/icons/icon_bone.svg | 5 + editor/icons/icon_bone_attachment.png | Bin 333 -> 0 bytes editor/icons/icon_bone_attachment.svg | 5 + editor/icons/icon_bone_track.png | Bin 343 -> 0 bytes editor/icons/icon_bone_track.svg | 5 + editor/icons/icon_bool.png | Bin 250 -> 0 bytes editor/icons/icon_bool.svg | 5 + editor/icons/icon_box_shape.png | Bin 392 -> 0 bytes editor/icons/icon_box_shape.svg | 7 + editor/icons/icon_bus_vu_db.png | Bin 3410 -> 0 bytes editor/icons/icon_bus_vu_db.svg | 12 + editor/icons/icon_bus_vu_empty.png | Bin 938 -> 0 bytes editor/icons/icon_bus_vu_empty.svg | 13 + editor/icons/icon_bus_vu_frozen.png | Bin 925 -> 0 bytes editor/icons/icon_bus_vu_frozen.svg | 12 + editor/icons/icon_bus_vu_full.png | Bin 894 -> 0 bytes editor/icons/icon_bus_vu_full.svg | 12 + editor/icons/icon_button.png | Bin 274 -> 0 bytes editor/icons/icon_button.svg | 5 + editor/icons/icon_button_group.png | Bin 283 -> 0 bytes editor/icons/icon_button_group.svg | 5 + editor/icons/icon_camera.png | Bin 225 -> 0 bytes editor/icons/icon_camera.svg | 5 + editor/icons/icon_camera_2d.png | Bin 229 -> 0 bytes editor/icons/icon_camera_2d.svg | 5 + editor/icons/icon_canvas_item.png | Bin 411 -> 0 bytes editor/icons/icon_canvas_item.svg | 5 + editor/icons/icon_canvas_item_material.png | Bin 350 -> 0 bytes editor/icons/icon_canvas_item_material.svg | 11 + editor/icons/icon_canvas_item_shader.png | Bin 416 -> 0 bytes editor/icons/icon_canvas_item_shader.svg | 11 + .../icons/icon_canvas_item_shader_graph.png | Bin 440 -> 0 bytes .../icons/icon_canvas_item_shader_graph.svg | 19 ++ editor/icons/icon_canvas_layer.png | Bin 474 -> 0 bytes editor/icons/icon_canvas_layer.svg | 5 + editor/icons/icon_canvas_modulate.png | Bin 213 -> 0 bytes editor/icons/icon_canvas_modulate.svg | 8 + editor/icons/icon_capsule_mesh.png | Bin 408 -> 0 bytes editor/icons/icon_capsule_mesh.svg | 5 + editor/icons/icon_capsule_shape.png | Bin 225 -> 0 bytes editor/icons/icon_capsule_shape.svg | 6 + editor/icons/icon_capsule_shape_2d.png | Bin 309 -> 0 bytes editor/icons/icon_capsule_shape_2d.svg | 5 + editor/icons/icon_center_container.png | Bin 294 -> 0 bytes editor/icons/icon_center_container.svg | 5 + editor/icons/icon_character_body.png | Bin 559 -> 0 bytes editor/icons/icon_character_camera.png | Bin 477 -> 0 bytes editor/icons/icon_check_box.png | Bin 404 -> 0 bytes editor/icons/icon_check_box.svg | 5 + editor/icons/icon_check_button.png | Bin 283 -> 0 bytes editor/icons/icon_check_button.svg | 5 + editor/icons/icon_checked.png | Bin 377 -> 0 bytes editor/icons/icon_checkerboard.png | Bin 253 -> 0 bytes editor/icons/icon_circle_shape_2d.png | Bin 425 -> 0 bytes editor/icons/icon_circle_shape_2d.svg | 5 + editor/icons/icon_class_list.png | Bin 157 -> 0 bytes editor/icons/icon_class_list.svg | 11 + editor/icons/icon_click2edit.png | Bin 294 -> 0 bytes editor/icons/icon_close.png | Bin 325 -> 0 bytes editor/icons/icon_close.svg | 5 + editor/icons/icon_close_hover.png | Bin 391 -> 0 bytes editor/icons/icon_collapse.png | Bin 230 -> 0 bytes editor/icons/icon_collapse.svg | 5 + editor/icons/icon_collapse_hl.png | Bin 338 -> 0 bytes editor/icons/icon_collision.png | Bin 320 -> 0 bytes editor/icons/icon_collision_2d.png | Bin 281 -> 0 bytes editor/icons/icon_collision_2d.svg | 5 + editor/icons/icon_collision_polygon.png | Bin 287 -> 0 bytes editor/icons/icon_collision_polygon.svg | 5 + editor/icons/icon_collision_polygon_2d.png | Bin 281 -> 0 bytes editor/icons/icon_collision_shape.png | Bin 278 -> 0 bytes editor/icons/icon_collision_shape.svg | 7 + editor/icons/icon_collision_shape_2d.png | Bin 164 -> 0 bytes editor/icons/icon_collision_shape_2d.svg | 5 + editor/icons/icon_color.png | Bin 582 -> 0 bytes editor/icons/icon_color.svg | 24 ++ editor/icons/icon_color_pick.png | Bin 416 -> 0 bytes editor/icons/icon_color_pick.svg | 5 + editor/icons/icon_color_picker.png | Bin 432 -> 0 bytes editor/icons/icon_color_picker.svg | 5 + editor/icons/icon_color_picker_button.png | Bin 548 -> 0 bytes editor/icons/icon_color_picker_button.svg | 7 + editor/icons/icon_color_ramp.png | Bin 222 -> 0 bytes editor/icons/icon_color_ramp.svg | 11 + editor/icons/icon_color_rect.png | Bin 232 -> 0 bytes editor/icons/icon_color_rect.svg | 11 + editor/icons/icon_concave_polygon_shape.png | Bin 449 -> 0 bytes editor/icons/icon_concave_polygon_shape.svg | 12 + .../icons/icon_concave_polygon_shape_2d.png | Bin 321 -> 0 bytes .../icons/icon_concave_polygon_shape_2d.svg | 5 + editor/icons/icon_cone_twist_joint.png | Bin 497 -> 0 bytes editor/icons/icon_cone_twist_joint.svg | 7 + editor/icons/icon_confirmation_dialog.png | Bin 343 -> 0 bytes editor/icons/icon_confirmation_dialog.svg | 5 + editor/icons/icon_connect.png | Bin 445 -> 0 bytes editor/icons/icon_connect.svg | 7 + editor/icons/icon_connection_and_groups.png | Bin 228 -> 0 bytes editor/icons/icon_connection_and_groups.svg | 5 + editor/icons/icon_console.png | Bin 640 -> 0 bytes editor/icons/icon_container.png | Bin 188 -> 0 bytes editor/icons/icon_container.svg | 5 + editor/icons/icon_control.png | Bin 414 -> 0 bytes editor/icons/icon_control.svg | 5 + .../icon_control_align_bottom_center.png | Bin 134 -> 0 bytes .../icon_control_align_bottom_center.svg | 7 + .../icons/icon_control_align_bottom_left.png | Bin 134 -> 0 bytes .../icons/icon_control_align_bottom_left.svg | 7 + .../icons/icon_control_align_bottom_right.png | Bin 134 -> 0 bytes .../icons/icon_control_align_bottom_right.svg | 7 + .../icons/icon_control_align_bottom_wide.png | Bin 135 -> 0 bytes .../icons/icon_control_align_bottom_wide.svg | 7 + editor/icons/icon_control_align_center.png | Bin 142 -> 0 bytes editor/icons/icon_control_align_center.svg | 7 + .../icons/icon_control_align_center_left.png | Bin 116 -> 0 bytes .../icons/icon_control_align_center_left.svg | 5 + .../icons/icon_control_align_center_right.png | Bin 117 -> 0 bytes .../icons/icon_control_align_center_right.svg | 5 + .../icons/icon_control_align_left_center.png | Bin 141 -> 0 bytes .../icons/icon_control_align_left_center.svg | 7 + editor/icons/icon_control_align_left_wide.png | Bin 123 -> 0 bytes editor/icons/icon_control_align_left_wide.svg | 7 + .../icons/icon_control_align_right_center.png | Bin 142 -> 0 bytes .../icons/icon_control_align_right_center.svg | 7 + .../icons/icon_control_align_right_wide.png | Bin 124 -> 0 bytes .../icons/icon_control_align_right_wide.svg | 7 + .../icons/icon_control_align_top_center.png | Bin 141 -> 0 bytes .../icons/icon_control_align_top_center.svg | 7 + editor/icons/icon_control_align_top_left.png | Bin 136 -> 0 bytes editor/icons/icon_control_align_top_left.svg | 7 + editor/icons/icon_control_align_top_right.png | Bin 141 -> 0 bytes editor/icons/icon_control_align_top_right.svg | 7 + editor/icons/icon_control_align_top_wide.png | Bin 136 -> 0 bytes editor/icons/icon_control_align_top_wide.svg | 7 + editor/icons/icon_control_align_wide.png | Bin 123 -> 0 bytes editor/icons/icon_control_align_wide.svg | 7 + editor/icons/icon_control_hcenter_wide.png | Bin 142 -> 0 bytes editor/icons/icon_control_hcenter_wide.svg | 7 + editor/icons/icon_control_vcenter_wide.png | Bin 128 -> 0 bytes editor/icons/icon_control_vcenter_wide.svg | 7 + editor/icons/icon_convex_polygon_shape.png | Bin 404 -> 0 bytes editor/icons/icon_convex_polygon_shape.svg | 9 + editor/icons/icon_convex_polygon_shape_2d.png | Bin 297 -> 0 bytes editor/icons/icon_convex_polygon_shape_2d.svg | 5 + editor/icons/icon_copy_node_path.png | Bin 241 -> 0 bytes editor/icons/icon_copy_node_path.svg | 6 + editor/icons/icon_create_new_scene_from.png | Bin 349 -> 0 bytes editor/icons/icon_create_new_scene_from.svg | 8 + editor/icons/icon_cube_grid_map.png | Bin 607 -> 0 bytes editor/icons/icon_cube_map.png | Bin 134 -> 0 bytes editor/icons/icon_cube_map.svg | 10 + editor/icons/icon_cube_mesh.png | Bin 447 -> 0 bytes editor/icons/icon_cube_mesh.svg | 5 + editor/icons/icon_curve.png | Bin 339 -> 0 bytes editor/icons/icon_curve.svg | 6 + editor/icons/icon_curve_2d.png | Bin 342 -> 0 bytes editor/icons/icon_curve_2d.svg | 5 + editor/icons/icon_curve_3d.png | Bin 336 -> 0 bytes editor/icons/icon_curve_3d.svg | 5 + editor/icons/icon_curve_close.png | Bin 351 -> 0 bytes editor/icons/icon_curve_close.svg | 11 + editor/icons/icon_curve_constant.png | Bin 114 -> 0 bytes editor/icons/icon_curve_constant.svg | 5 + editor/icons/icon_curve_create.png | Bin 375 -> 0 bytes editor/icons/icon_curve_create.svg | 10 + editor/icons/icon_curve_curve.png | Bin 412 -> 0 bytes editor/icons/icon_curve_curve.svg | 9 + editor/icons/icon_curve_delete.png | Bin 457 -> 0 bytes editor/icons/icon_curve_delete.svg | 9 + editor/icons/icon_curve_edit.png | Bin 488 -> 0 bytes editor/icons/icon_curve_edit.svg | 9 + editor/icons/icon_curve_in.png | Bin 257 -> 0 bytes editor/icons/icon_curve_in.svg | 5 + editor/icons/icon_curve_in_out.png | Bin 282 -> 0 bytes editor/icons/icon_curve_in_out.svg | 5 + editor/icons/icon_curve_linear.png | Bin 219 -> 0 bytes editor/icons/icon_curve_linear.svg | 5 + editor/icons/icon_curve_out.png | Bin 263 -> 0 bytes editor/icons/icon_curve_out.svg | 5 + editor/icons/icon_curve_out_in.png | Bin 288 -> 0 bytes editor/icons/icon_curve_out_in.svg | 5 + editor/icons/icon_curve_texture.png | Bin 391 -> 0 bytes editor/icons/icon_curve_texture.svg | 5 + editor/icons/icon_cylinder_mesh.png | Bin 364 -> 0 bytes editor/icons/icon_cylinder_mesh.svg | 5 + editor/icons/icon_cylinder_shape.png | Bin 673 -> 0 bytes editor/icons/icon_d_o_f_blur_f_x.png | Bin 796 -> 0 bytes editor/icons/icon_damped_spring_joint_2d.png | Bin 316 -> 0 bytes editor/icons/icon_damped_spring_joint_2d.svg | 6 + editor/icons/icon_debug.png | Bin 455 -> 0 bytes editor/icons/icon_debug.svg | 14 + editor/icons/icon_debug_continue.png | Bin 302 -> 0 bytes editor/icons/icon_debug_continue.svg | 9 + editor/icons/icon_debug_next.png | Bin 220 -> 0 bytes editor/icons/icon_debug_next.svg | 12 + editor/icons/icon_debug_step.png | Bin 219 -> 0 bytes editor/icons/icon_debug_step.svg | 13 + editor/icons/icon_default_project_icon.png | Bin 3480 -> 0 bytes editor/icons/icon_del.png | Bin 398 -> 0 bytes editor/icons/icon_dependency_changed.png | Bin 392 -> 0 bytes editor/icons/icon_dependency_changed.svg | 6 + editor/icons/icon_dependency_changed_hl.png | Bin 330 -> 0 bytes editor/icons/icon_dependency_changed_hl.svg | 5 + .../icons/icon_dependency_local_changed.png | Bin 571 -> 0 bytes .../icons/icon_dependency_local_changed.svg | 6 + .../icon_dependency_local_changed_hl.png | Bin 460 -> 0 bytes .../icon_dependency_local_changed_hl.svg | 5 + editor/icons/icon_dependency_ok.png | Bin 518 -> 0 bytes editor/icons/icon_dependency_ok.svg | 6 + editor/icons/icon_dependency_ok_hl.png | Bin 413 -> 0 bytes editor/icons/icon_dependency_ok_hl.svg | 5 + editor/icons/icon_directional_light.png | Bin 426 -> 0 bytes editor/icons/icon_directional_light.svg | 5 + editor/icons/icon_distraction_free.png | Bin 397 -> 0 bytes editor/icons/icon_distraction_free.svg | 9 + editor/icons/icon_doc_code_font.png | Bin 8123 -> 0 bytes editor/icons/icon_doc_font.png | Bin 8213 -> 0 bytes editor/icons/icon_doc_title_font.png | Bin 10222 -> 0 bytes editor/icons/icon_down.png | Bin 186 -> 0 bytes editor/icons/icon_dropdown.png | Bin 179 -> 0 bytes editor/icons/icon_dummy.png | Bin 217 -> 0 bytes editor/icons/icon_duplicate.png | Bin 167 -> 0 bytes editor/icons/icon_duplicate.svg | 5 + editor/icons/icon_dynamic_character_body.png | Bin 559 -> 0 bytes editor/icons/icon_dynamic_custom_body.png | Bin 556 -> 0 bytes editor/icons/icon_dynamic_font.png | Bin 239 -> 0 bytes editor/icons/icon_dynamic_font.svg | 6 + editor/icons/icon_dynamic_font_data.png | Bin 246 -> 0 bytes editor/icons/icon_dynamic_font_data.svg | 6 + editor/icons/icon_dynamic_rigid_body.png | Bin 546 -> 0 bytes editor/icons/icon_edit.png | Bin 346 -> 0 bytes editor/icons/icon_edit.svg | 5 + editor/icons/icon_edit_key.png | Bin 405 -> 0 bytes editor/icons/icon_edit_key.svg | 6 + editor/icons/icon_edit_pivot.png | Bin 327 -> 0 bytes editor/icons/icon_edit_pivot.svg | 5 + editor/icons/icon_edit_resource.png | Bin 202 -> 0 bytes editor/icons/icon_edit_resource.svg | 5 + editor/icons/icon_edit_small.png | Bin 365 -> 0 bytes editor/icons/icon_editor_2d.png | Bin 197 -> 0 bytes editor/icons/icon_editor_3d_handle.png | Bin 350 -> 0 bytes editor/icons/icon_editor_3d_handle.svg | 6 + editor/icons/icon_editor_control_anchor.png | Bin 472 -> 0 bytes editor/icons/icon_editor_control_anchor.svg | 8 + editor/icons/icon_editor_focus.png | Bin 629 -> 0 bytes editor/icons/icon_editor_handle.png | Bin 214 -> 0 bytes editor/icons/icon_editor_handle.svg | 6 + editor/icons/icon_editor_node.png | Bin 311 -> 0 bytes editor/icons/icon_editor_pivot.png | Bin 177 -> 0 bytes editor/icons/icon_editor_pivot.svg | 6 + editor/icons/icon_editor_plugin.png | Bin 248 -> 0 bytes editor/icons/icon_editor_plugin.svg | 9 + editor/icons/icon_editor_rect_2d.png | Bin 222 -> 0 bytes editor/icons/icon_empty_control.png | Bin 233 -> 0 bytes editor/icons/icon_enum.png | Bin 123 -> 0 bytes editor/icons/icon_environment.png | Bin 506 -> 0 bytes editor/icons/icon_environment.svg | 8 + editor/icons/icon_error.png | Bin 195 -> 0 bytes editor/icons/icon_error.svg | 5 + editor/icons/icon_error_sign.png | Bin 255 -> 0 bytes editor/icons/icon_error_sign.svg | 7 + editor/icons/icon_event_player.png | Bin 142 -> 0 bytes editor/icons/icon_event_player.svg | 8 + editor/icons/icon_expand.png | Bin 322 -> 0 bytes editor/icons/icon_expand_hl.png | Bin 320 -> 0 bytes editor/icons/icon_favorites.png | Bin 385 -> 0 bytes editor/icons/icon_favorites.svg | 5 + editor/icons/icon_file.png | Bin 203 -> 0 bytes editor/icons/icon_file_big.png | Bin 509 -> 0 bytes editor/icons/icon_file_big.svg | 7 + editor/icons/icon_file_dialog.png | Bin 241 -> 0 bytes editor/icons/icon_file_dialog.svg | 5 + editor/icons/icon_file_list.png | Bin 123 -> 0 bytes editor/icons/icon_file_list.svg | 5 + editor/icons/icon_file_server.png | Bin 145 -> 0 bytes editor/icons/icon_file_server.svg | 7 + editor/icons/icon_file_server_active.png | Bin 145 -> 0 bytes editor/icons/icon_file_server_active.svg | 7 + editor/icons/icon_file_thumbnail.png | Bin 116 -> 0 bytes editor/icons/icon_file_thumbnail.svg | 5 + editor/icons/icon_filesystem.png | Bin 157 -> 0 bytes editor/icons/icon_fixed_material.png | Bin 377 -> 0 bytes editor/icons/icon_fixed_material.svg | 5 + editor/icons/icon_fixed_spatial_material.png | Bin 409 -> 0 bytes editor/icons/icon_fixed_spatial_material.svg | 11 + editor/icons/icon_fog_f_x.png | Bin 540 -> 0 bytes editor/icons/icon_folder.png | Bin 170 -> 0 bytes editor/icons/icon_folder.svg | 5 + editor/icons/icon_folder_big.png | Bin 482 -> 0 bytes editor/icons/icon_folder_big.svg | 5 + editor/icons/icon_folder_scene.png | Bin 644 -> 0 bytes editor/icons/icon_font.png | Bin 215 -> 0 bytes editor/icons/icon_font.svg | 13 + editor/icons/icon_forward.png | Bin 292 -> 0 bytes editor/icons/icon_forward.svg | 5 + editor/icons/icon_forward_no.png | Bin 217 -> 0 bytes editor/icons/icon_func.png | Bin 262 -> 0 bytes editor/icons/icon_g_d_native_library.png | Bin 360 -> 0 bytes editor/icons/icon_g_d_native_library.svg | 5 + editor/icons/icon_g_d_native_script.png | Bin 392 -> 0 bytes editor/icons/icon_g_d_script.png | Bin 392 -> 0 bytes editor/icons/icon_g_d_script.svg | 5 + editor/icons/icon_g_i_probe.png | Bin 341 -> 0 bytes editor/icons/icon_g_i_probe.svg | 5 + editor/icons/icon_g_i_probe_data.png | Bin 350 -> 0 bytes editor/icons/icon_g_i_probe_data.svg | 5 + editor/icons/icon_gamma_f_x.png | Bin 461 -> 0 bytes editor/icons/icon_generic_6_d_o_f_joint.png | Bin 390 -> 0 bytes editor/icons/icon_generic_6_d_o_f_joint.svg | 5 + editor/icons/icon_gizmo_directional_light.png | Bin 3628 -> 0 bytes editor/icons/icon_gizmo_directional_light.svg | 5 + editor/icons/icon_gizmo_light.png | Bin 3064 -> 0 bytes editor/icons/icon_gizmo_light.svg | 5 + editor/icons/icon_gizmo_listener.png | Bin 3613 -> 0 bytes editor/icons/icon_gizmo_listener.svg | 7 + .../icon_gizmo_spatial_sample_player.png | Bin 1297 -> 0 bytes .../icon_gizmo_spatial_sample_player.svg | 5 + .../icon_gizmo_spatial_stream_player.png | Bin 1720 -> 0 bytes .../icon_gizmo_spatial_stream_player.svg | 5 + editor/icons/icon_glow_f_x.png | Bin 676 -> 0 bytes editor/icons/icon_godot.png | Bin 739 -> 0 bytes editor/icons/icon_godot.svg | 33 ++ editor/icons/icon_godot_asset_default.png | Bin 4167 -> 0 bytes editor/icons/icon_godot_docs.png | Bin 722 -> 0 bytes editor/icons/icon_gradient.png | Bin 180 -> 0 bytes editor/icons/icon_gradient.svg | 11 + editor/icons/icon_gradient_texture.png | Bin 250 -> 0 bytes editor/icons/icon_gradient_texture.svg | 19 ++ editor/icons/icon_graph_color_ramp.png | Bin 222 -> 0 bytes editor/icons/icon_graph_comment.png | Bin 125 -> 0 bytes editor/icons/icon_graph_comment.svg | 5 + editor/icons/icon_graph_cube_uniform.png | Bin 445 -> 0 bytes editor/icons/icon_graph_cube_uniform.svg | 5 + editor/icons/icon_graph_curve_map.png | Bin 330 -> 0 bytes editor/icons/icon_graph_curve_map.svg | 6 + editor/icons/icon_graph_default_texture.png | Bin 196 -> 0 bytes editor/icons/icon_graph_default_texture.svg | 5 + editor/icons/icon_graph_edit.png | Bin 467 -> 0 bytes editor/icons/icon_graph_edit.svg | 6 + editor/icons/icon_graph_input.png | Bin 268 -> 0 bytes editor/icons/icon_graph_input.svg | 5 + editor/icons/icon_graph_node.png | Bin 397 -> 0 bytes editor/icons/icon_graph_node.svg | 6 + editor/icons/icon_graph_rgb.png | Bin 443 -> 0 bytes editor/icons/icon_graph_rgb.svg | 12 + editor/icons/icon_graph_rgb_op.png | Bin 165 -> 0 bytes editor/icons/icon_graph_rgb_op.svg | 11 + editor/icons/icon_graph_rgb_uniform.png | Bin 346 -> 0 bytes editor/icons/icon_graph_rgb_uniform.svg | 12 + editor/icons/icon_graph_scalar.png | Bin 269 -> 0 bytes editor/icons/icon_graph_scalar.svg | 5 + editor/icons/icon_graph_scalar_interp.png | Bin 236 -> 0 bytes editor/icons/icon_graph_scalar_interp.svg | 5 + editor/icons/icon_graph_scalar_op.png | Bin 266 -> 0 bytes editor/icons/icon_graph_scalar_op.svg | 8 + editor/icons/icon_graph_scalar_uniform.png | Bin 307 -> 0 bytes editor/icons/icon_graph_scalar_uniform.svg | 5 + editor/icons/icon_graph_scalars_to_vec.png | Bin 355 -> 0 bytes editor/icons/icon_graph_scalars_to_vec.svg | 11 + editor/icons/icon_graph_texscreen.png | Bin 151 -> 0 bytes editor/icons/icon_graph_texscreen.svg | 6 + editor/icons/icon_graph_texture_uniform.png | Bin 237 -> 0 bytes editor/icons/icon_graph_texture_uniform.svg | 5 + editor/icons/icon_graph_time.png | Bin 398 -> 0 bytes editor/icons/icon_graph_time.svg | 7 + editor/icons/icon_graph_vec_dp.png | Bin 258 -> 0 bytes editor/icons/icon_graph_vec_dp.svg | 7 + editor/icons/icon_graph_vec_interp.png | Bin 229 -> 0 bytes editor/icons/icon_graph_vec_interp.svg | 5 + editor/icons/icon_graph_vec_length.png | Bin 305 -> 0 bytes editor/icons/icon_graph_vec_length.svg | 7 + editor/icons/icon_graph_vec_op.png | Bin 266 -> 0 bytes editor/icons/icon_graph_vec_op.svg | 5 + editor/icons/icon_graph_vec_scalar_op.png | Bin 299 -> 0 bytes editor/icons/icon_graph_vec_scalar_op.svg | 6 + editor/icons/icon_graph_vec_to_scalars.png | Bin 358 -> 0 bytes editor/icons/icon_graph_vec_to_scalars.svg | 11 + editor/icons/icon_graph_vecs_to_xform.png | Bin 347 -> 0 bytes editor/icons/icon_graph_vecs_to_xform.svg | 11 + editor/icons/icon_graph_vector.png | Bin 345 -> 0 bytes editor/icons/icon_graph_vector.svg | 5 + editor/icons/icon_graph_vector_uniform.png | Bin 390 -> 0 bytes editor/icons/icon_graph_vector_uniform.svg | 6 + editor/icons/icon_graph_xform.png | Bin 241 -> 0 bytes editor/icons/icon_graph_xform.svg | 11 + editor/icons/icon_graph_xform_mult.png | Bin 223 -> 0 bytes editor/icons/icon_graph_xform_mult.svg | 7 + editor/icons/icon_graph_xform_scalar_func.png | Bin 275 -> 0 bytes editor/icons/icon_graph_xform_scalar_func.svg | 10 + editor/icons/icon_graph_xform_to_vecs.png | Bin 352 -> 0 bytes editor/icons/icon_graph_xform_to_vecs.svg | 11 + editor/icons/icon_graph_xform_uniform.png | Bin 310 -> 0 bytes editor/icons/icon_graph_xform_uniform.svg | 5 + editor/icons/icon_graph_xform_vec_func.png | Bin 277 -> 0 bytes editor/icons/icon_graph_xform_vec_func.svg | 10 + editor/icons/icon_graph_xform_vec_imult.png | Bin 327 -> 0 bytes editor/icons/icon_graph_xform_vec_imult.svg | 7 + editor/icons/icon_graph_xform_vec_mult.png | Bin 336 -> 0 bytes editor/icons/icon_graph_xform_vec_mult.svg | 7 + editor/icons/icon_grid.png | Bin 165 -> 0 bytes editor/icons/icon_grid.svg | 5 + editor/icons/icon_grid_container.png | Bin 216 -> 0 bytes editor/icons/icon_grid_container.svg | 5 + editor/icons/icon_grid_map.png | Bin 268 -> 0 bytes editor/icons/icon_grid_map.svg | 5 + editor/icons/icon_grid_map_floor.png | Bin 169 -> 0 bytes editor/icons/icon_groove_joint_2d.png | Bin 150 -> 0 bytes editor/icons/icon_groove_joint_2d.svg | 5 + editor/icons/icon_group.png | Bin 177 -> 0 bytes editor/icons/icon_group.svg | 9 + editor/icons/icon_groups.png | Bin 194 -> 0 bytes editor/icons/icon_groups.svg | 7 + editor/icons/icon_gui_close.svg | 5 + editor/icons/icon_gui_close_dark.png | Bin 171 -> 0 bytes editor/icons/icon_gui_close_dark.svg | 5 + editor/icons/icon_gui_close_light.png | Bin 216 -> 0 bytes editor/icons/icon_gui_close_light.svg | 5 + editor/icons/icon_h_box_container.png | Bin 201 -> 0 bytes editor/icons/icon_h_box_container.svg | 7 + editor/icons/icon_h_button_array.png | Bin 298 -> 0 bytes editor/icons/icon_h_button_array.svg | 5 + editor/icons/icon_h_scroll_bar.png | Bin 381 -> 0 bytes editor/icons/icon_h_scroll_bar.svg | 5 + editor/icons/icon_h_separator.png | Bin 131 -> 0 bytes editor/icons/icon_h_separator.svg | 7 + editor/icons/icon_h_slider.png | Bin 224 -> 0 bytes editor/icons/icon_h_slider.svg | 5 + editor/icons/icon_h_split_container.png | Bin 259 -> 0 bytes editor/icons/icon_h_split_container.svg | 8 + editor/icons/icon_h_t_t_p_request.png | Bin 301 -> 0 bytes editor/icons/icon_h_t_t_p_request.svg | 6 + editor/icons/icon_headphones.png | Bin 350 -> 0 bytes editor/icons/icon_headphones.svg | 11 + editor/icons/icon_help.png | Bin 353 -> 0 bytes editor/icons/icon_help.svg | 5 + editor/icons/icon_help_search.png | Bin 431 -> 0 bytes editor/icons/icon_help_search.svg | 7 + editor/icons/icon_hidden.png | Bin 345 -> 0 bytes editor/icons/icon_hidden.svg | 5 + editor/icons/icon_hinge_joint.png | Bin 353 -> 0 bytes editor/icons/icon_hinge_joint.svg | 5 + editor/icons/icon_history.png | Bin 437 -> 0 bytes editor/icons/icon_history.svg | 8 + editor/icons/icon_hsize.png | Bin 166 -> 0 bytes editor/icons/icon_hsize.svg | 5 + editor/icons/icon_hslider_bg.png | Bin 233 -> 0 bytes editor/icons/icon_hsplit_bg.png | Bin 96 -> 0 bytes editor/icons/icon_hsplitter.png | Bin 132 -> 0 bytes editor/icons/icon_iapi.png | Bin 277 -> 0 bytes editor/icons/icon_image.png | Bin 263 -> 0 bytes editor/icons/icon_image.svg | 5 + editor/icons/icon_image_sky_box.png | Bin 434 -> 0 bytes editor/icons/icon_image_texture.png | Bin 200 -> 0 bytes editor/icons/icon_image_texture.svg | 5 + editor/icons/icon_immediate_geometry.png | Bin 411 -> 0 bytes editor/icons/icon_immediate_geometry.svg | 5 + editor/icons/icon_import_check.png | Bin 266 -> 0 bytes editor/icons/icon_import_check.svg | 5 + editor/icons/icon_import_fail.png | Bin 346 -> 0 bytes editor/icons/icon_import_fail.svg | 5 + editor/icons/icon_influence_zone.png | Bin 303 -> 0 bytes editor/icons/icon_instance.png | Bin 442 -> 0 bytes editor/icons/icon_instance.svg | 6 + editor/icons/icon_instance_options.png | Bin 365 -> 0 bytes editor/icons/icon_instance_options.svg | 6 + editor/icons/icon_integer.png | Bin 126 -> 0 bytes editor/icons/icon_integer.svg | 7 + editor/icons/icon_interp_cubic.png | Bin 281 -> 0 bytes editor/icons/icon_interp_cubic.svg | 5 + editor/icons/icon_interp_linear.png | Bin 271 -> 0 bytes editor/icons/icon_interp_linear.svg | 5 + editor/icons/icon_interp_raw.png | Bin 156 -> 0 bytes editor/icons/icon_interp_raw.svg | 5 + editor/icons/icon_interp_wrap_clamp.png | Bin 233 -> 0 bytes editor/icons/icon_interp_wrap_clamp.svg | 9 + editor/icons/icon_interp_wrap_loop.png | Bin 309 -> 0 bytes editor/icons/icon_interp_wrap_loop.svg | 10 + editor/icons/icon_interpolated_camera.png | Bin 279 -> 0 bytes editor/icons/icon_interpolated_camera.svg | 5 + editor/icons/icon_invalid_key.png | Bin 205 -> 0 bytes editor/icons/icon_invalid_key.svg | 5 + editor/icons/icon_inverse_kinematics.png | Bin 262 -> 0 bytes editor/icons/icon_inverse_kinematics.svg | 12 + editor/icons/icon_item_list.png | Bin 216 -> 0 bytes editor/icons/icon_item_list.svg | 14 + editor/icons/icon_joy_axis.png | Bin 260 -> 0 bytes editor/icons/icon_joy_axis.svg | 7 + editor/icons/icon_joy_button.png | Bin 272 -> 0 bytes editor/icons/icon_joy_button.svg | 6 + editor/icons/icon_joypad.png | Bin 239 -> 0 bytes editor/icons/icon_joypad.svg | 5 + editor/icons/icon_key.png | Bin 285 -> 0 bytes editor/icons/icon_key.svg | 7 + editor/icons/icon_key_call.png | Bin 265 -> 0 bytes editor/icons/icon_key_hover.png | Bin 138 -> 0 bytes editor/icons/icon_key_hover.svg | 5 + editor/icons/icon_key_invalid.png | Bin 205 -> 0 bytes editor/icons/icon_key_invalid.svg | 5 + editor/icons/icon_key_invalid_hover.png | Bin 239 -> 0 bytes editor/icons/icon_key_next.png | Bin 321 -> 0 bytes editor/icons/icon_key_next.svg | 6 + editor/icons/icon_key_selected.png | Bin 181 -> 0 bytes editor/icons/icon_key_selected.svg | 5 + editor/icons/icon_key_value.png | Bin 182 -> 0 bytes editor/icons/icon_key_value.svg | 5 + editor/icons/icon_key_xform.png | Bin 192 -> 0 bytes editor/icons/icon_key_xform.svg | 5 + editor/icons/icon_keyboard.png | Bin 299 -> 0 bytes editor/icons/icon_keyboard.svg | 7 + editor/icons/icon_keying.png | Bin 1603 -> 0 bytes editor/icons/icon_kinematic_body.png | Bin 145 -> 0 bytes editor/icons/icon_kinematic_body.svg | 5 + editor/icons/icon_kinematic_body_2d.png | Bin 147 -> 0 bytes editor/icons/icon_kinematic_body_2d.svg | 5 + editor/icons/icon_label.png | Bin 240 -> 0 bytes editor/icons/icon_label.svg | 5 + editor/icons/icon_large_texture.png | Bin 156 -> 0 bytes editor/icons/icon_large_texture.svg | 5 + editor/icons/icon_light_2d.png | Bin 362 -> 0 bytes editor/icons/icon_light_2d.svg | 5 + editor/icons/icon_light_map.png | Bin 406 -> 0 bytes editor/icons/icon_light_occluder_2d.png | Bin 146 -> 0 bytes editor/icons/icon_light_occluder_2d.svg | 11 + editor/icons/icon_lightr.png | Bin 272 -> 0 bytes editor/icons/icon_line_2d.png | Bin 418 -> 0 bytes editor/icons/icon_line_2d.svg | 5 + editor/icons/icon_line_edit.png | Bin 152 -> 0 bytes editor/icons/icon_line_edit.svg | 6 + editor/icons/icon_line_shape_2d.png | Bin 379 -> 0 bytes editor/icons/icon_line_shape_2d.svg | 7 + editor/icons/icon_link_button.png | Bin 409 -> 0 bytes editor/icons/icon_link_button.svg | 6 + editor/icons/icon_list_select.png | Bin 349 -> 0 bytes editor/icons/icon_list_select.svg | 6 + editor/icons/icon_listener.png | Bin 448 -> 0 bytes editor/icons/icon_listener.svg | 8 + editor/icons/icon_live_debug.png | Bin 583 -> 0 bytes editor/icons/icon_load.png | Bin 271 -> 0 bytes editor/icons/icon_load.svg | 5 + editor/icons/icon_lock.png | Bin 271 -> 0 bytes editor/icons/icon_lock.svg | 8 + editor/icons/icon_logo.png | Bin 11594 -> 0 bytes editor/icons/icon_logo_small.png | Bin 1465 -> 0 bytes editor/icons/icon_loop.png | Bin 412 -> 0 bytes editor/icons/icon_loop.svg | 5 + editor/icons/icon_loop_interpolation.png | Bin 374 -> 0 bytes editor/icons/icon_loop_interpolation.svg | 10 + editor/icons/icon_main_play.png | Bin 234 -> 0 bytes editor/icons/icon_main_play.svg | 5 + editor/icons/icon_main_stop.png | Bin 144 -> 0 bytes editor/icons/icon_main_stop.svg | 5 + editor/icons/icon_margin_container.png | Bin 233 -> 0 bytes editor/icons/icon_margin_container.svg | 6 + editor/icons/icon_material_preview_cube.png | Bin 374 -> 0 bytes editor/icons/icon_material_preview_cube.svg | 8 + .../icons/icon_material_preview_cube_off.png | Bin 401 -> 0 bytes .../icons/icon_material_preview_cube_off.svg | 9 + .../icons/icon_material_preview_light_1.png | Bin 359 -> 0 bytes .../icons/icon_material_preview_light_1.svg | 5 + .../icon_material_preview_light_1_off.png | Bin 305 -> 0 bytes .../icon_material_preview_light_1_off.svg | 5 + .../icons/icon_material_preview_light_2.png | Bin 354 -> 0 bytes .../icons/icon_material_preview_light_2.svg | 5 + .../icon_material_preview_light_2_off.png | Bin 443 -> 0 bytes .../icon_material_preview_light_2_off.svg | 6 + editor/icons/icon_material_preview_sphere.png | Bin 359 -> 0 bytes editor/icons/icon_material_preview_sphere.svg | 5 + .../icon_material_preview_sphere_off.png | Bin 283 -> 0 bytes .../icon_material_preview_sphere_off.svg | 5 + editor/icons/icon_material_shader.png | Bin 254 -> 0 bytes editor/icons/icon_material_shader_graph.png | Bin 440 -> 0 bytes editor/icons/icon_matrix.png | Bin 138 -> 0 bytes editor/icons/icon_matrix.svg | 19 ++ editor/icons/icon_menu_button.png | Bin 213 -> 0 bytes editor/icons/icon_menu_button.svg | 6 + editor/icons/icon_mesh.png | Bin 343 -> 0 bytes editor/icons/icon_mesh.svg | 5 + editor/icons/icon_mesh_instance.png | Bin 314 -> 0 bytes editor/icons/icon_mesh_instance.svg | 13 + editor/icons/icon_mesh_library.png | Bin 349 -> 0 bytes editor/icons/icon_mesh_library.svg | 5 + editor/icons/icon_mesh_old.png | Bin 615 -> 0 bytes editor/icons/icon_meshr.png | Bin 744 -> 0 bytes editor/icons/icon_mini_aabb.png | Bin 360 -> 0 bytes editor/icons/icon_mini_aabb.svg | 10 + editor/icons/icon_mini_array.png | Bin 210 -> 0 bytes editor/icons/icon_mini_array.svg | 13 + editor/icons/icon_mini_basis.png | Bin 270 -> 0 bytes editor/icons/icon_mini_basis.svg | 19 ++ editor/icons/icon_mini_boolean.png | Bin 256 -> 0 bytes editor/icons/icon_mini_boolean.svg | 13 + editor/icons/icon_mini_color.png | Bin 253 -> 0 bytes editor/icons/icon_mini_color.svg | 7 + editor/icons/icon_mini_color_array.png | Bin 337 -> 0 bytes editor/icons/icon_mini_color_array.svg | 14 + editor/icons/icon_mini_dictionary.png | Bin 230 -> 0 bytes editor/icons/icon_mini_dictionary.svg | 16 + editor/icons/icon_mini_float.png | Bin 233 -> 0 bytes editor/icons/icon_mini_float.svg | 15 + editor/icons/icon_mini_float_array.png | Bin 275 -> 0 bytes editor/icons/icon_mini_float_array.svg | 13 + editor/icons/icon_mini_image.png | Bin 257 -> 0 bytes editor/icons/icon_mini_image.svg | 17 + editor/icons/icon_mini_input.png | Bin 236 -> 0 bytes editor/icons/icon_mini_input.svg | 15 + editor/icons/icon_mini_int_array.png | Bin 262 -> 0 bytes editor/icons/icon_mini_int_array.svg | 8 + editor/icons/icon_mini_integer.png | Bin 228 -> 0 bytes editor/icons/icon_mini_integer.svg | 14 + editor/icons/icon_mini_matrix3.png | Bin 270 -> 0 bytes editor/icons/icon_mini_matrix3.svg | 19 ++ editor/icons/icon_mini_matrix32.png | Bin 320 -> 0 bytes editor/icons/icon_mini_object.png | Bin 289 -> 0 bytes editor/icons/icon_mini_object.svg | 11 + editor/icons/icon_mini_path.png | Bin 254 -> 0 bytes editor/icons/icon_mini_path.svg | 14 + editor/icons/icon_mini_plane.png | Bin 249 -> 0 bytes editor/icons/icon_mini_plane.svg | 12 + editor/icons/icon_mini_quat.png | Bin 309 -> 0 bytes editor/icons/icon_mini_quat.svg | 12 + editor/icons/icon_mini_raw_array.png | Bin 248 -> 0 bytes editor/icons/icon_mini_raw_array.svg | 9 + editor/icons/icon_mini_rect2.png | Bin 267 -> 0 bytes editor/icons/icon_mini_rect2.svg | 19 ++ editor/icons/icon_mini_rid.png | Bin 222 -> 0 bytes editor/icons/icon_mini_rid.svg | 14 + editor/icons/icon_mini_string.png | Bin 258 -> 0 bytes editor/icons/icon_mini_string.svg | 12 + editor/icons/icon_mini_string_array.png | Bin 296 -> 0 bytes editor/icons/icon_mini_string_array.svg | 10 + editor/icons/icon_mini_transform.png | Bin 321 -> 0 bytes editor/icons/icon_mini_transform.svg | 7 + editor/icons/icon_mini_transform2D.png | Bin 330 -> 0 bytes editor/icons/icon_mini_transform2D.svg | 10 + editor/icons/icon_mini_variant.png | Bin 240 -> 0 bytes editor/icons/icon_mini_variant.svg | 14 + editor/icons/icon_mini_vector2.png | Bin 301 -> 0 bytes editor/icons/icon_mini_vector2.svg | 15 + editor/icons/icon_mini_vector2_array.png | Bin 284 -> 0 bytes editor/icons/icon_mini_vector2_array.svg | 12 + editor/icons/icon_mini_vector3.png | Bin 285 -> 0 bytes editor/icons/icon_mini_vector3.svg | 15 + editor/icons/icon_mini_vector3_array.png | Bin 264 -> 0 bytes editor/icons/icon_mini_vector3_array.svg | 12 + editor/icons/icon_mirror_x.png | Bin 247 -> 0 bytes editor/icons/icon_mirror_x.svg | 7 + editor/icons/icon_mirror_y.png | Bin 277 -> 0 bytes editor/icons/icon_mirror_y.svg | 5 + editor/icons/icon_mouse.png | Bin 256 -> 0 bytes editor/icons/icon_mouse.svg | 5 + editor/icons/icon_move_down.png | Bin 309 -> 0 bytes editor/icons/icon_move_down.svg | 6 + editor/icons/icon_move_down_hl.png | Bin 234 -> 0 bytes editor/icons/icon_move_point.png | Bin 542 -> 0 bytes editor/icons/icon_move_point.svg | 7 + editor/icons/icon_move_up.png | Bin 296 -> 0 bytes editor/icons/icon_move_up.svg | 6 + editor/icons/icon_move_up_hl.png | Bin 224 -> 0 bytes editor/icons/icon_multi_edit.png | Bin 358 -> 0 bytes editor/icons/icon_multi_edit.svg | 8 + editor/icons/icon_multi_line.png | Bin 140 -> 0 bytes editor/icons/icon_multi_line.svg | 10 + editor/icons/icon_multi_mesh.png | Bin 347 -> 0 bytes editor/icons/icon_multi_mesh.svg | 5 + editor/icons/icon_multi_mesh_instance.png | Bin 376 -> 0 bytes editor/icons/icon_multi_mesh_instance.svg | 6 + editor/icons/icon_multi_node_edit.png | Bin 358 -> 0 bytes editor/icons/icon_multi_script.png | Bin 318 -> 0 bytes editor/icons/icon_multi_script.svg | 6 + editor/icons/icon_native_script.png | Bin 392 -> 0 bytes editor/icons/icon_native_script.svg | 5 + editor/icons/icon_navigation.png | Bin 344 -> 0 bytes editor/icons/icon_navigation.svg | 5 + editor/icons/icon_navigation_2d.png | Bin 363 -> 0 bytes editor/icons/icon_navigation_2d.svg | 5 + editor/icons/icon_navigation_mesh.png | Bin 450 -> 0 bytes editor/icons/icon_navigation_mesh.svg | 5 + .../icons/icon_navigation_mesh_instance.png | Bin 480 -> 0 bytes .../icons/icon_navigation_mesh_instance.svg | 8 + editor/icons/icon_navigation_polygon.png | Bin 384 -> 0 bytes editor/icons/icon_navigation_polygon.svg | 8 + .../icon_navigation_polygon_instance.png | Bin 409 -> 0 bytes .../icon_navigation_polygon_instance.svg | 6 + editor/icons/icon_new.png | Bin 203 -> 0 bytes editor/icons/icon_new.svg | 8 + editor/icons/icon_nine_patch_rect.png | Bin 142 -> 0 bytes editor/icons/icon_nine_patch_rect.svg | 12 + editor/icons/icon_node.png | Bin 403 -> 0 bytes editor/icons/icon_node.svg | 5 + editor/icons/icon_node_2d.png | Bin 427 -> 0 bytes editor/icons/icon_node_2d.svg | 5 + editor/icons/icon_node_real_slot.png | Bin 239 -> 0 bytes editor/icons/icon_node_vec_slot.png | Bin 240 -> 0 bytes editor/icons/icon_node_warning.png | Bin 320 -> 0 bytes editor/icons/icon_node_warning.svg | 7 + editor/icons/icon_non_favorite.png | Bin 475 -> 0 bytes editor/icons/icon_non_favorite.svg | 5 + editor/icons/icon_object.png | Bin 354 -> 0 bytes editor/icons/icon_object.svg | 6 + editor/icons/icon_occluder_polygon_2d.png | Bin 274 -> 0 bytes editor/icons/icon_occluder_polygon_2d.svg | 6 + editor/icons/icon_omni_light.png | Bin 347 -> 0 bytes editor/icons/icon_omni_light.svg | 5 + editor/icons/icon_open.png | Bin 271 -> 0 bytes editor/icons/icon_option_arrow.png | Bin 205 -> 0 bytes editor/icons/icon_option_button.png | Bin 324 -> 0 bytes editor/icons/icon_option_button.svg | 6 + editor/icons/icon_override.png | Bin 281 -> 0 bytes editor/icons/icon_override.svg | 6 + editor/icons/icon_p_hash_translation.png | Bin 194 -> 0 bytes editor/icons/icon_packed_data_container.png | Bin 176 -> 0 bytes editor/icons/icon_packed_data_container.svg | 13 + editor/icons/icon_packed_scene.png | Bin 289 -> 0 bytes editor/icons/icon_packed_scene.svg | 8 + editor/icons/icon_pane_drag.png | Bin 620 -> 0 bytes editor/icons/icon_pane_drag_hover.png | Bin 637 -> 0 bytes editor/icons/icon_panel.png | Bin 175 -> 0 bytes editor/icons/icon_panel.svg | 5 + editor/icons/icon_panel_container.png | Bin 198 -> 0 bytes editor/icons/icon_panel_container.svg | 5 + editor/icons/icon_panel_top.png | Bin 195 -> 0 bytes editor/icons/icon_panels_1.png | Bin 100 -> 0 bytes editor/icons/icon_panels_1.svg | 5 + editor/icons/icon_panels_2.png | Bin 108 -> 0 bytes editor/icons/icon_panels_2.svg | 6 + editor/icons/icon_panels_2_alt.png | Bin 116 -> 0 bytes editor/icons/icon_panels_2_alt.svg | 6 + editor/icons/icon_panels_3.png | Bin 123 -> 0 bytes editor/icons/icon_panels_3.svg | 7 + editor/icons/icon_panels_3_alt.png | Bin 130 -> 0 bytes editor/icons/icon_panels_3_alt.svg | 7 + editor/icons/icon_panels_4.png | Bin 120 -> 0 bytes editor/icons/icon_panels_4.svg | 8 + editor/icons/icon_panorama_sky.png | Bin 354 -> 0 bytes editor/icons/icon_panorama_sky.svg | 14 + editor/icons/icon_parallax_background.png | Bin 218 -> 0 bytes editor/icons/icon_parallax_background.svg | 15 + editor/icons/icon_parallax_layer.png | Bin 282 -> 0 bytes editor/icons/icon_parallax_layer.svg | 8 + editor/icons/icon_particle_attractor_2d.png | Bin 629 -> 0 bytes editor/icons/icon_particle_attractor_2d.svg | 9 + editor/icons/icon_particles.png | Bin 370 -> 0 bytes editor/icons/icon_particles.svg | 11 + editor/icons/icon_particles_2d.png | Bin 391 -> 0 bytes editor/icons/icon_particles_2d.svg | 5 + editor/icons/icon_particles_frame.png | Bin 254 -> 0 bytes editor/icons/icon_particles_material.png | Bin 367 -> 0 bytes editor/icons/icon_particles_material.svg | 11 + editor/icons/icon_particles_shader.png | Bin 367 -> 0 bytes editor/icons/icon_patch_9_rect.png | Bin 128 -> 0 bytes editor/icons/icon_path.png | Bin 353 -> 0 bytes editor/icons/icon_path.svg | 7 + editor/icons/icon_path_2d.png | Bin 359 -> 0 bytes editor/icons/icon_path_2d.svg | 7 + editor/icons/icon_path_follow.png | Bin 387 -> 0 bytes editor/icons/icon_path_follow.svg | 7 + editor/icons/icon_path_follow_2d.png | Bin 392 -> 0 bytes editor/icons/icon_path_follow_2d.svg | 7 + editor/icons/icon_pause.png | Bin 147 -> 0 bytes editor/icons/icon_pause.svg | 5 + editor/icons/icon_pe_edit.png | Bin 403 -> 0 bytes editor/icons/icon_physics_joint_pin.png | Bin 454 -> 0 bytes editor/icons/icon_pin.png | Bin 227 -> 0 bytes editor/icons/icon_pin.svg | 8 + editor/icons/icon_pin_joint.png | Bin 418 -> 0 bytes editor/icons/icon_pin_joint.svg | 8 + editor/icons/icon_pin_joint_2d.png | Bin 428 -> 0 bytes editor/icons/icon_pin_joint_2d.svg | 5 + editor/icons/icon_pin_pressed.png | Bin 227 -> 0 bytes editor/icons/icon_pin_pressed.svg | 8 + editor/icons/icon_plane.png | Bin 235 -> 0 bytes editor/icons/icon_plane.svg | 5 + editor/icons/icon_plane_mesh.png | Bin 328 -> 0 bytes editor/icons/icon_plane_mesh.svg | 5 + editor/icons/icon_plane_shape.png | Bin 229 -> 0 bytes editor/icons/icon_plane_shape.svg | 5 + editor/icons/icon_play.png | Bin 237 -> 0 bytes editor/icons/icon_play.svg | 5 + editor/icons/icon_play_backwards.png | Bin 245 -> 0 bytes editor/icons/icon_play_backwards.svg | 5 + editor/icons/icon_play_button_group.png | Bin 427 -> 0 bytes editor/icons/icon_play_custom.png | Bin 282 -> 0 bytes editor/icons/icon_play_custom.svg | 6 + editor/icons/icon_play_scene.png | Bin 350 -> 0 bytes editor/icons/icon_play_scene.svg | 8 + editor/icons/icon_play_start.png | Bin 269 -> 0 bytes editor/icons/icon_play_start.svg | 8 + editor/icons/icon_play_start_backwards.png | Bin 279 -> 0 bytes editor/icons/icon_play_start_backwards.svg | 8 + editor/icons/icon_polygon_2_d.svg | 5 + editor/icons/icon_polygon_2d.png | Bin 281 -> 0 bytes editor/icons/icon_polygon_path_finder.png | Bin 307 -> 0 bytes editor/icons/icon_polygon_path_finder.svg | 5 + editor/icons/icon_popup.png | Bin 210 -> 0 bytes editor/icons/icon_popup.svg | 5 + editor/icons/icon_popup_dialog.png | Bin 221 -> 0 bytes editor/icons/icon_popup_dialog.svg | 5 + editor/icons/icon_popup_menu.png | Bin 216 -> 0 bytes editor/icons/icon_popup_menu.svg | 6 + editor/icons/icon_popup_panel.png | Bin 198 -> 0 bytes editor/icons/icon_popup_panel.svg | 6 + editor/icons/icon_portal.png | Bin 452 -> 0 bytes editor/icons/icon_portal.svg | 5 + editor/icons/icon_position_2d.png | Bin 132 -> 0 bytes editor/icons/icon_position_2d.svg | 5 + editor/icons/icon_position_3d.png | Bin 131 -> 0 bytes editor/icons/icon_position_3d.svg | 5 + editor/icons/icon_prev_scene.png | Bin 229 -> 0 bytes editor/icons/icon_prism_mesh.png | Bin 448 -> 0 bytes editor/icons/icon_prism_mesh.svg | 5 + editor/icons/icon_procedural_sky.png | Bin 339 -> 0 bytes editor/icons/icon_procedural_sky.svg | 14 + editor/icons/icon_progress_1.png | Bin 468 -> 0 bytes editor/icons/icon_progress_1.svg | 12 + editor/icons/icon_progress_2.png | Bin 455 -> 0 bytes editor/icons/icon_progress_2.svg | 12 + editor/icons/icon_progress_3.png | Bin 462 -> 0 bytes editor/icons/icon_progress_3.svg | 12 + editor/icons/icon_progress_4.png | Bin 475 -> 0 bytes editor/icons/icon_progress_4.svg | 12 + editor/icons/icon_progress_5.png | Bin 454 -> 0 bytes editor/icons/icon_progress_5.svg | 12 + editor/icons/icon_progress_6.png | Bin 465 -> 0 bytes editor/icons/icon_progress_6.svg | 12 + editor/icons/icon_progress_7.png | Bin 461 -> 0 bytes editor/icons/icon_progress_7.svg | 12 + editor/icons/icon_progress_8.png | Bin 463 -> 0 bytes editor/icons/icon_progress_8.svg | 12 + editor/icons/icon_progress_bar.png | Bin 208 -> 0 bytes editor/icons/icon_progress_bar.svg | 8 + editor/icons/icon_property_editor.png | Bin 248 -> 0 bytes editor/icons/icon_proximity_group.png | Bin 223 -> 0 bytes editor/icons/icon_proximity_group.svg | 11 + editor/icons/icon_quad.png | Bin 251 -> 0 bytes editor/icons/icon_quad.svg | 5 + editor/icons/icon_quad_mesh.png | Bin 244 -> 0 bytes editor/icons/icon_quad_mesh.svg | 5 + editor/icons/icon_quat.png | Bin 341 -> 0 bytes editor/icons/icon_quat.svg | 6 + editor/icons/icon_range.png | Bin 151 -> 0 bytes editor/icons/icon_range.svg | 9 + editor/icons/icon_rating_no_star.png | Bin 515 -> 0 bytes editor/icons/icon_rating_no_star.svg | 7 + editor/icons/icon_rating_star.png | Bin 383 -> 0 bytes editor/icons/icon_rating_star.svg | 5 + editor/icons/icon_ray_cast.png | Bin 216 -> 0 bytes editor/icons/icon_ray_cast.svg | 6 + editor/icons/icon_ray_cast_2d.png | Bin 214 -> 0 bytes editor/icons/icon_ray_cast_2d.svg | 5 + editor/icons/icon_ray_shape.png | Bin 363 -> 0 bytes editor/icons/icon_ray_shape.svg | 9 + editor/icons/icon_ray_shape_2d.png | Bin 233 -> 0 bytes editor/icons/icon_ray_shape_2d.svg | 6 + editor/icons/icon_rayito.png | Bin 300 -> 0 bytes editor/icons/icon_rayito.svg | 6 + editor/icons/icon_real.png | Bin 265 -> 0 bytes editor/icons/icon_real.svg | 11 + editor/icons/icon_rect2.png | Bin 193 -> 0 bytes editor/icons/icon_rect3.png | Bin 202 -> 0 bytes editor/icons/icon_rectangle_shape_2d.png | Bin 159 -> 0 bytes editor/icons/icon_rectangle_shape_2d.svg | 5 + editor/icons/icon_reference_rect.png | Bin 141 -> 0 bytes editor/icons/icon_reference_rect.svg | 12 + editor/icons/icon_reflection_probe.png | Bin 370 -> 0 bytes editor/icons/icon_reflection_probe.svg | 5 + editor/icons/icon_region_edit.png | Bin 141 -> 0 bytes editor/icons/icon_region_edit.svg | 13 + editor/icons/icon_reload.png | Bin 420 -> 0 bytes editor/icons/icon_reload_empty.png | Bin 251 -> 0 bytes editor/icons/icon_reload_small.png | Bin 409 -> 0 bytes editor/icons/icon_reload_small.svg | 6 + editor/icons/icon_remote.png | Bin 394 -> 0 bytes editor/icons/icon_remote.svg | 7 + editor/icons/icon_remote_transform.png | Bin 506 -> 0 bytes editor/icons/icon_remote_transform.svg | 8 + editor/icons/icon_remote_transform_2d.png | Bin 542 -> 0 bytes editor/icons/icon_remote_transform_2d.svg | 8 + editor/icons/icon_remove.png | Bin 184 -> 0 bytes editor/icons/icon_remove.svg | 7 + editor/icons/icon_remove_hl.png | Bin 385 -> 0 bytes editor/icons/icon_remove_small.png | Bin 297 -> 0 bytes editor/icons/icon_rename.png | Bin 160 -> 0 bytes editor/icons/icon_rename.svg | 5 + editor/icons/icon_reparent.png | Bin 390 -> 0 bytes editor/icons/icon_reparent.svg | 6 + editor/icons/icon_replace.png | Bin 435 -> 0 bytes editor/icons/icon_resource_preloader.png | Bin 391 -> 0 bytes editor/icons/icon_resource_preloader.svg | 8 + editor/icons/icon_rich_text_label.png | Bin 236 -> 0 bytes editor/icons/icon_rich_text_label.svg | 11 + editor/icons/icon_rid.png | Bin 468 -> 0 bytes editor/icons/icon_rigid_body.png | Bin 531 -> 0 bytes editor/icons/icon_rigid_body.svg | 6 + editor/icons/icon_rigid_body_2_d.png | Bin 501 -> 0 bytes editor/icons/icon_rigid_body_2d.png | Bin 559 -> 0 bytes editor/icons/icon_rigid_body_2d.svg | 13 + editor/icons/icon_room.png | Bin 375 -> 0 bytes editor/icons/icon_room.svg | 5 + editor/icons/icon_room_bounds.png | Bin 363 -> 0 bytes editor/icons/icon_room_bounds.svg | 5 + editor/icons/icon_room_instance.png | Bin 392 -> 0 bytes editor/icons/icon_rotate_0.png | Bin 436 -> 0 bytes editor/icons/icon_rotate_0.svg | 6 + editor/icons/icon_rotate_180.png | Bin 376 -> 0 bytes editor/icons/icon_rotate_180.svg | 9 + editor/icons/icon_rotate_270.png | Bin 357 -> 0 bytes editor/icons/icon_rotate_270.svg | 10 + editor/icons/icon_rotate_90.png | Bin 412 -> 0 bytes editor/icons/icon_rotate_90.svg | 8 + editor/icons/icon_run.png | Bin 800 -> 0 bytes editor/icons/icon_s_s_a_o_f_x.png | Bin 564 -> 0 bytes editor/icons/icon_sample.png | Bin 152 -> 0 bytes editor/icons/icon_sample_library.png | Bin 333 -> 0 bytes editor/icons/icon_sample_library.svg | 6 + editor/icons/icon_sample_player.png | Bin 234 -> 0 bytes editor/icons/icon_sample_player_2d.png | Bin 252 -> 0 bytes editor/icons/icon_save.png | Bin 252 -> 0 bytes editor/icons/icon_save.svg | 7 + editor/icons/icon_scene.png | Bin 476 -> 0 bytes editor/icons/icon_scene_instance.png | Bin 488 -> 0 bytes editor/icons/icon_scene_tree_editor.png | Bin 294 -> 0 bytes editor/icons/icon_script.png | Bin 262 -> 0 bytes editor/icons/icon_script.svg | 7 + editor/icons/icon_script_control.png | Bin 452 -> 0 bytes editor/icons/icon_script_create.png | Bin 288 -> 0 bytes editor/icons/icon_script_create.svg | 8 + editor/icons/icon_script_error.png | Bin 220 -> 0 bytes editor/icons/icon_script_list.png | Bin 213 -> 0 bytes editor/icons/icon_script_node.png | Bin 455 -> 0 bytes editor/icons/icon_script_remove.png | Bin 411 -> 0 bytes editor/icons/icon_script_remove.svg | 8 + editor/icons/icon_scroll_bar.png | Bin 205 -> 0 bytes editor/icons/icon_scroll_bar.svg | 7 + editor/icons/icon_scroll_bg.png | Bin 90 -> 0 bytes editor/icons/icon_scroll_container.png | Bin 304 -> 0 bytes editor/icons/icon_scroll_container.svg | 9 + editor/icons/icon_scroll_grabber.png | Bin 147 -> 0 bytes editor/icons/icon_scroll_grabber_hl.png | Bin 268 -> 0 bytes editor/icons/icon_search.png | Bin 404 -> 0 bytes editor/icons/icon_search.svg | 6 + editor/icons/icon_segment_shape_2d.png | Bin 241 -> 0 bytes editor/icons/icon_segment_shape_2d.svg | 5 + editor/icons/icon_shader.png | Bin 254 -> 0 bytes editor/icons/icon_shader.svg | 11 + editor/icons/icon_shader_material.png | Bin 254 -> 0 bytes editor/icons/icon_short_cut.png | Bin 272 -> 0 bytes editor/icons/icon_short_cut.svg | 6 + editor/icons/icon_signal.png | Bin 246 -> 0 bytes editor/icons/icon_signal.svg | 9 + editor/icons/icon_skeleton.png | Bin 346 -> 0 bytes editor/icons/icon_skeleton.svg | 8 + editor/icons/icon_skeletonr.png | Bin 362 -> 0 bytes editor/icons/icon_sky_box_f_x.png | Bin 740 -> 0 bytes editor/icons/icon_slider_grabber.png | Bin 384 -> 0 bytes editor/icons/icon_slider_grabber_hl.png | Bin 354 -> 0 bytes editor/icons/icon_slider_joint.png | Bin 247 -> 0 bytes editor/icons/icon_slider_joint.svg | 10 + editor/icons/icon_slot.png | Bin 246 -> 0 bytes editor/icons/icon_slot.svg | 7 + editor/icons/icon_small_next.png | Bin 191 -> 0 bytes editor/icons/icon_snap.png | Bin 269 -> 0 bytes editor/icons/icon_snap.svg | 10 + editor/icons/icon_sound_room_params.png | Bin 248 -> 0 bytes editor/icons/icon_sound_room_params.svg | 9 + editor/icons/icon_spatial.png | Bin 419 -> 0 bytes editor/icons/icon_spatial.svg | 5 + editor/icons/icon_spatial_add.png | Bin 429 -> 0 bytes editor/icons/icon_spatial_material.png | Bin 483 -> 0 bytes editor/icons/icon_spatial_material.svg | 11 + editor/icons/icon_spatial_sample_player.png | Bin 239 -> 0 bytes editor/icons/icon_spatial_sample_player.svg | 5 + editor/icons/icon_spatial_shader.png | Bin 483 -> 0 bytes editor/icons/icon_spatial_stream_player.png | Bin 183 -> 0 bytes editor/icons/icon_spatial_stream_player.svg | 5 + editor/icons/icon_sphere_mesh.png | Bin 495 -> 0 bytes editor/icons/icon_sphere_mesh.svg | 5 + editor/icons/icon_sphere_shape.png | Bin 362 -> 0 bytes editor/icons/icon_sphere_shape.svg | 6 + editor/icons/icon_spin_box.png | Bin 289 -> 0 bytes editor/icons/icon_spin_box.svg | 8 + editor/icons/icon_spinbox_updown.png | Bin 345 -> 0 bytes editor/icons/icon_spline.png | Bin 244 -> 0 bytes editor/icons/icon_spot_light.png | Bin 341 -> 0 bytes editor/icons/icon_spot_light.svg | 5 + editor/icons/icon_sprite.png | Bin 419 -> 0 bytes editor/icons/icon_sprite.svg | 5 + editor/icons/icon_sprite_3d.png | Bin 408 -> 0 bytes editor/icons/icon_sprite_3d.svg | 5 + editor/icons/icon_sprite_frames.png | Bin 332 -> 0 bytes editor/icons/icon_sprite_frames.svg | 11 + editor/icons/icon_squirrel_script.png | Bin 283 -> 0 bytes editor/icons/icon_static_body.png | Bin 229 -> 0 bytes editor/icons/icon_static_body.svg | 5 + editor/icons/icon_static_body_2_d.png | Bin 368 -> 0 bytes editor/icons/icon_static_body_2d.png | Bin 237 -> 0 bytes editor/icons/icon_static_body_2d.svg | 6 + editor/icons/icon_stop.png | Bin 236 -> 0 bytes editor/icons/icon_stream_player.png | Bin 183 -> 0 bytes editor/icons/icon_stream_player.svg | 5 + editor/icons/icon_stream_texture.png | Bin 180 -> 0 bytes editor/icons/icon_stream_texture.svg | 5 + editor/icons/icon_string.png | Bin 160 -> 0 bytes editor/icons/icon_string.svg | 5 + editor/icons/icon_style_box_empty.png | Bin 333 -> 0 bytes editor/icons/icon_style_box_empty.svg | 10 + editor/icons/icon_style_box_flat.png | Bin 398 -> 0 bytes editor/icons/icon_style_box_flat.svg | 11 + editor/icons/icon_style_box_texture.png | Bin 411 -> 0 bytes editor/icons/icon_style_box_texture.svg | 11 + editor/icons/icon_surface.png | Bin 212 -> 0 bytes editor/icons/icon_tab_container.png | Bin 214 -> 0 bytes editor/icons/icon_tab_container.svg | 5 + editor/icons/icon_tab_menu.png | Bin 146 -> 0 bytes editor/icons/icon_tabs.png | Bin 232 -> 0 bytes editor/icons/icon_tabs.svg | 5 + editor/icons/icon_test_cube.png | Bin 435 -> 0 bytes editor/icons/icon_test_cube.svg | 7 + editor/icons/icon_text_edit.png | Bin 207 -> 0 bytes editor/icons/icon_text_edit.svg | 6 + editor/icons/icon_texture.png | Bin 200 -> 0 bytes editor/icons/icon_texture_button.png | Bin 159 -> 0 bytes editor/icons/icon_texture_button.svg | 7 + editor/icons/icon_texture_progress.png | Bin 213 -> 0 bytes editor/icons/icon_texture_progress.svg | 8 + editor/icons/icon_texture_rect.png | Bin 166 -> 0 bytes editor/icons/icon_texture_rect.svg | 6 + editor/icons/icon_theme.png | Bin 451 -> 0 bytes editor/icons/icon_theme.svg | 11 + editor/icons/icon_thumbnail_wait.png | Bin 2616 -> 0 bytes editor/icons/icon_tile_map.png | Bin 113 -> 0 bytes editor/icons/icon_tile_map.svg | 5 + editor/icons/icon_tile_set.png | Bin 174 -> 0 bytes editor/icons/icon_tile_set.svg | 5 + editor/icons/icon_time.png | Bin 557 -> 0 bytes editor/icons/icon_timer.png | Bin 378 -> 0 bytes editor/icons/icon_timer.svg | 8 + editor/icons/icon_tool_button.png | Bin 400 -> 0 bytes editor/icons/icon_tool_button.svg | 11 + editor/icons/icon_tool_move.png | Bin 217 -> 0 bytes editor/icons/icon_tool_move.svg | 5 + editor/icons/icon_tool_pan.png | Bin 281 -> 0 bytes editor/icons/icon_tool_pan.svg | 13 + editor/icons/icon_tool_rotate.png | Bin 420 -> 0 bytes editor/icons/icon_tool_rotate.svg | 6 + editor/icons/icon_tool_scale.png | Bin 349 -> 0 bytes editor/icons/icon_tool_scale.svg | 5 + editor/icons/icon_tool_select.png | Bin 376 -> 0 bytes editor/icons/icon_tool_select.svg | 7 + editor/icons/icon_tools.png | Bin 298 -> 0 bytes editor/icons/icon_tools.svg | 5 + editor/icons/icon_touch_screen_button.png | Bin 313 -> 0 bytes editor/icons/icon_touch_screen_button.svg | 5 + editor/icons/icon_track_add_key.png | Bin 113 -> 0 bytes editor/icons/icon_track_add_key.svg | 5 + editor/icons/icon_track_add_key_hl.png | Bin 113 -> 0 bytes editor/icons/icon_track_add_key_hl.svg | 6 + editor/icons/icon_track_continuous.png | Bin 265 -> 0 bytes editor/icons/icon_track_continuous.svg | 5 + editor/icons/icon_track_discrete.png | Bin 125 -> 0 bytes editor/icons/icon_track_discrete.svg | 7 + editor/icons/icon_track_method.png | Bin 283 -> 0 bytes editor/icons/icon_track_prop.png | Bin 285 -> 0 bytes editor/icons/icon_track_trigger.png | Bin 158 -> 0 bytes editor/icons/icon_track_trigger.svg | 9 + editor/icons/icon_track_value.png | Bin 300 -> 0 bytes editor/icons/icon_translation.png | Bin 194 -> 0 bytes editor/icons/icon_translation.svg | 5 + editor/icons/icon_transparent.png | Bin 158 -> 0 bytes editor/icons/icon_transpose.png | Bin 165 -> 0 bytes editor/icons/icon_transpose.svg | 12 + editor/icons/icon_tree.png | Bin 151 -> 0 bytes editor/icons/icon_tree.svg | 13 + editor/icons/icon_tree_arrow_down.png | Bin 170 -> 0 bytes editor/icons/icon_tree_arrow_right.png | Bin 189 -> 0 bytes editor/icons/icon_tween.png | Bin 247 -> 0 bytes editor/icons/icon_tween.svg | 5 + editor/icons/icon_unbone.png | Bin 383 -> 0 bytes editor/icons/icon_unbone.svg | 5 + editor/icons/icon_unchecked.png | Bin 267 -> 0 bytes editor/icons/icon_ungroup.png | Bin 170 -> 0 bytes editor/icons/icon_ungroup.svg | 12 + editor/icons/icon_uninstance.png | Bin 525 -> 0 bytes editor/icons/icon_unlock.png | Bin 262 -> 0 bytes editor/icons/icon_unlock.svg | 7 + editor/icons/icon_up.png | Bin 185 -> 0 bytes editor/icons/icon_updown.png | Bin 180 -> 0 bytes editor/icons/icon_uv.png | Bin 282 -> 0 bytes editor/icons/icon_uv.svg | 5 + editor/icons/icon_v_box_container.png | Bin 207 -> 0 bytes editor/icons/icon_v_box_container.svg | 5 + editor/icons/icon_v_button_array.png | Bin 278 -> 0 bytes editor/icons/icon_v_button_array.svg | 6 + editor/icons/icon_v_scroll_bar.png | Bin 416 -> 0 bytes editor/icons/icon_v_scroll_bar.svg | 5 + editor/icons/icon_v_separator.png | Bin 130 -> 0 bytes editor/icons/icon_v_separator.svg | 5 + editor/icons/icon_v_slider.png | Bin 244 -> 0 bytes editor/icons/icon_v_slider.svg | 10 + editor/icons/icon_v_split_container.png | Bin 277 -> 0 bytes editor/icons/icon_v_split_container.svg | 8 + editor/icons/icon_variant.png | Bin 237 -> 0 bytes editor/icons/icon_variant.svg | 16 + editor/icons/icon_vector.png | Bin 208 -> 0 bytes editor/icons/icon_vector.svg | 6 + editor/icons/icon_vector2.png | Bin 122 -> 0 bytes editor/icons/icon_vector2.svg | 5 + editor/icons/icon_vehicle_body.png | Bin 236 -> 0 bytes editor/icons/icon_vehicle_body.svg | 7 + editor/icons/icon_vehicle_wheel.png | Bin 537 -> 0 bytes editor/icons/icon_vehicle_wheel.svg | 6 + editor/icons/icon_video_player.png | Bin 241 -> 0 bytes editor/icons/icon_video_player.svg | 7 + editor/icons/icon_video_stream_theora.png | Bin 925 -> 0 bytes editor/icons/icon_view.png | Bin 386 -> 0 bytes editor/icons/icon_viewport.png | Bin 198 -> 0 bytes editor/icons/icon_viewport.svg | 5 + editor/icons/icon_viewport_container.png | Bin 284 -> 0 bytes editor/icons/icon_viewport_container.svg | 5 + editor/icons/icon_viewport_sprite.png | Bin 239 -> 0 bytes editor/icons/icon_viewport_sprite.svg | 10 + editor/icons/icon_viewport_texture.png | Bin 227 -> 0 bytes editor/icons/icon_viewport_texture.svg | 5 + editor/icons/icon_visibility_area.png | Bin 422 -> 0 bytes editor/icons/icon_visibility_enabler.png | Bin 549 -> 0 bytes editor/icons/icon_visibility_enabler.svg | 9 + editor/icons/icon_visibility_enabler_2d.png | Bin 550 -> 0 bytes editor/icons/icon_visibility_enabler_2d.svg | 9 + editor/icons/icon_visibility_notifier.png | Bin 427 -> 0 bytes editor/icons/icon_visibility_notifier.svg | 7 + editor/icons/icon_visibility_notifier_2d.png | Bin 431 -> 0 bytes editor/icons/icon_visibility_notifier_2d.svg | 5 + editor/icons/icon_visible.png | Bin 497 -> 0 bytes editor/icons/icon_visible.svg | 6 + editor/icons/icon_visual_script.png | Bin 386 -> 0 bytes editor/icons/icon_visual_script.svg | 6 + editor/icons/icon_visual_shader_port.png | Bin 255 -> 0 bytes editor/icons/icon_visual_shader_port.svg | 5 + editor/icons/icon_volume.png | Bin 295 -> 0 bytes editor/icons/icon_vslider_bg.png | Bin 236 -> 0 bytes editor/icons/icon_vsplit_bg.png | Bin 96 -> 0 bytes editor/icons/icon_vsplitter.png | Bin 122 -> 0 bytes editor/icons/icon_vu_db.png | Bin 1015 -> 0 bytes editor/icons/icon_vu_empty.png | Bin 283 -> 0 bytes editor/icons/icon_vu_empty.svg | 13 + editor/icons/icon_vu_full.png | Bin 224 -> 0 bytes editor/icons/icon_vu_full.svg | 12 + editor/icons/icon_wait_no_preview.png | Bin 1041 -> 0 bytes editor/icons/icon_wait_preview_1.png | Bin 1208 -> 0 bytes editor/icons/icon_wait_preview_2.png | Bin 1270 -> 0 bytes editor/icons/icon_wait_preview_3.png | Bin 1190 -> 0 bytes editor/icons/icon_wait_preview_4.png | Bin 1269 -> 0 bytes editor/icons/icon_wait_preview_5.png | Bin 1191 -> 0 bytes editor/icons/icon_wait_preview_6.png | Bin 1278 -> 0 bytes editor/icons/icon_wait_preview_7.png | Bin 1192 -> 0 bytes editor/icons/icon_wait_preview_8.png | Bin 1341 -> 0 bytes editor/icons/icon_warning.png | Bin 204 -> 0 bytes editor/icons/icon_warning.svg | 5 + editor/icons/icon_window_dialog.png | Bin 200 -> 0 bytes editor/icons/icon_window_dialog.svg | 5 + editor/icons/icon_world.png | Bin 254 -> 0 bytes editor/icons/icon_world.svg | 6 + editor/icons/icon_world_2d.png | Bin 328 -> 0 bytes editor/icons/icon_world_2d.svg | 5 + editor/icons/icon_world_environment.png | Bin 534 -> 0 bytes editor/icons/icon_world_environment.svg | 8 + editor/icons/icon_y_sort.png | Bin 230 -> 0 bytes editor/icons/icon_y_sort.svg | 8 + editor/icons/icon_zoom.png | Bin 410 -> 0 bytes editor/icons/icon_zoom.svg | 5 + editor/icons/icon_zoom_less.png | Bin 149 -> 0 bytes editor/icons/icon_zoom_less.svg | 5 + editor/icons/icon_zoom_more.png | Bin 232 -> 0 bytes editor/icons/icon_zoom_more.svg | 12 + editor/icons/icon_zoom_reset.png | Bin 430 -> 0 bytes editor/icons/icon_zoom_reset.svg | 10 + editor/icons/source/icon_2_d.svg | 93 ------ editor/icons/source/icon_3_d.svg | 105 ------ editor/icons/source/icon_GUI_checked.svg | 79 ----- editor/icons/source/icon_GUI_dropdown.svg | 93 ------ editor/icons/source/icon_GUI_hslider_bg.svg | 83 ----- editor/icons/source/icon_GUI_hsplitter.svg | 79 ----- .../icons/source/icon_GUI_mini_tab_menu.svg | 93 ------ editor/icons/source/icon_GUI_option_arrow.svg | 80 ----- .../source/icon_GUI_play_button_group.svg | 78 ----- editor/icons/source/icon_GUI_progress_bar.svg | 81 ----- .../icons/source/icon_GUI_progress_fill.svg | 83 ----- .../icons/source/icon_GUI_radio_checked.svg | 87 ----- .../icons/source/icon_GUI_radio_unchecked.svg | 81 ----- editor/icons/source/icon_GUI_scroll_bg.svg | 71 ---- .../icons/source/icon_GUI_scroll_grabber.svg | 78 ----- .../source/icon_GUI_scroll_grabber_hl.svg | 82 ----- .../icon_GUI_scroll_grabber_pressed.svg | 83 ----- .../icons/source/icon_GUI_slider_grabber.svg | 81 ----- .../source/icon_GUI_slider_grabber_hl.svg | 86 ----- .../icons/source/icon_GUI_spinbox_updown.svg | 83 ----- editor/icons/source/icon_GUI_tab_menu.svg | 92 ----- editor/icons/source/icon_GUI_toggle_off.svg | 80 ----- editor/icons/source/icon_GUI_toggle_on.svg | 80 ----- .../icons/source/icon_GUI_tree_arrow_down.svg | 80 ----- .../source/icon_GUI_tree_arrow_right.svg | 80 ----- editor/icons/source/icon_GUI_unchecked.svg | 77 ----- editor/icons/source/icon_GUI_vslider_bg.svg | 83 ----- editor/icons/source/icon_GUI_vsplit_bg.svg | 79 ----- editor/icons/source/icon_GUI_vsplitter.svg | 79 ----- editor/icons/source/icon_accept_dialog.svg | 79 ----- editor/icons/source/icon_add_track.svg | 77 ----- editor/icons/source/icon_anchor.svg | 77 ----- editor/icons/source/icon_animated_sprite.svg | 87 ----- .../icons/source/icon_animated_sprite_3d.svg | 87 ----- editor/icons/source/icon_animation.svg | 77 ----- editor/icons/source/icon_animation_player.svg | 78 ----- .../source/icon_animation_tree_player.svg | 77 ----- editor/icons/source/icon_area.svg | 77 ----- editor/icons/source/icon_area_2d.svg | 77 ----- editor/icons/source/icon_arrow_left.svg | 84 ----- editor/icons/source/icon_arrow_right.svg | 84 ----- editor/icons/source/icon_arrow_up.svg | 77 ----- editor/icons/source/icon_asset_lib.svg | 80 ----- editor/icons/source/icon_atlas_texture.svg | 82 ----- editor/icons/source/icon_audio_bus_bypass.svg | 295 ---------------- editor/icons/source/icon_audio_bus_layout.svg | 107 ------ editor/icons/source/icon_audio_bus_mute.svg | 301 ----------------- editor/icons/source/icon_audio_bus_solo.svg | 315 ------------------ .../source/icon_audio_effect_amplify.svg | 110 ------ .../source/icon_audio_stream_gibberish.svg | 83 ----- .../icons/source/icon_audio_stream_player.svg | 113 ------- .../source/icon_audio_stream_player_2_d.svg | 114 ------- .../source/icon_audio_stream_player_3_d.svg | 114 ------- .../icons/source/icon_audio_stream_sample.svg | 108 ------ editor/icons/source/icon_auto_play.svg | 78 ----- editor/icons/source/icon_back.svg | 78 ----- editor/icons/source/icon_back_buffer_copy.svg | 77 ----- editor/icons/source/icon_bake.svg | 78 ----- editor/icons/source/icon_baked_light.svg | 78 ----- .../source/icon_baked_light_instance.svg | 78 ----- .../icons/source/icon_baked_light_sampler.svg | 78 ----- editor/icons/source/icon_bit_map.svg | 82 ----- editor/icons/source/icon_bitmap_font.svg | 78 ----- editor/icons/source/icon_blend.svg | 81 ----- editor/icons/source/icon_bone.svg | 78 ----- editor/icons/source/icon_bone_attachment.svg | 78 ----- editor/icons/source/icon_bone_track.svg | 78 ----- editor/icons/source/icon_bool.svg | 135 -------- editor/icons/source/icon_box_shape.svg | 99 ------ editor/icons/source/icon_bus_vu_db.svg | 111 ------ editor/icons/source/icon_bus_vu_empty.svg | 115 ------- editor/icons/source/icon_bus_vu_frozen.svg | 111 ------ editor/icons/source/icon_bus_vu_full.svg | 110 ------ editor/icons/source/icon_button.svg | 108 ------ editor/icons/source/icon_button_group.svg | 78 ----- editor/icons/source/icon_camera.svg | 119 ------- editor/icons/source/icon_camera_2d.svg | 119 ------- editor/icons/source/icon_canvas_item.svg | 83 ----- .../source/icon_canvas_item_material.svg | 150 --------- .../icons/source/icon_canvas_item_shader.svg | 143 -------- .../source/icon_canvas_item_shader_graph.svg | 143 -------- editor/icons/source/icon_canvas_layer.svg | 82 ----- editor/icons/source/icon_canvas_modulate.svg | 137 -------- editor/icons/source/icon_capsule_mesh.svg | 93 ------ editor/icons/source/icon_capsule_shape.svg | 101 ------ editor/icons/source/icon_capsule_shape_2d.svg | 81 ----- editor/icons/source/icon_center_container.svg | 85 ----- editor/icons/source/icon_check_box.svg | 84 ----- editor/icons/source/icon_check_button.svg | 84 ----- editor/icons/source/icon_circle_shape_2d.svg | 82 ----- editor/icons/source/icon_class_list.svg | 121 ------- editor/icons/source/icon_close.svg | 93 ------ editor/icons/source/icon_collapse.svg | 77 ----- editor/icons/source/icon_collision_2d.svg | 78 ----- .../icons/source/icon_collision_polygon.svg | 78 ----- editor/icons/source/icon_collision_shape.svg | 89 ----- .../icons/source/icon_collision_shape_2d.svg | 77 ----- editor/icons/source/icon_color.svg | 268 --------------- editor/icons/source/icon_color_pick.svg | 77 ----- editor/icons/source/icon_color_picker.svg | 77 ----- .../icons/source/icon_color_picker_button.svg | 92 ----- editor/icons/source/icon_color_ramp.svg | 102 ------ editor/icons/source/icon_color_rect.svg | 156 --------- .../source/icon_concave_polygon_shape.svg | 122 ------- .../source/icon_concave_polygon_shape_2d.svg | 83 ----- editor/icons/source/icon_cone_twist_joint.svg | 93 ------ .../icons/source/icon_confirmation_dialog.svg | 77 ----- editor/icons/source/icon_connect.svg | 105 ------ .../source/icon_connection_and_groups.svg | 77 ----- editor/icons/source/icon_container.svg | 77 ----- editor/icons/source/icon_control.svg | 78 ----- .../icon_control_align_bottom_center.svg | 94 ------ .../source/icon_control_align_bottom_left.svg | 94 ------ .../icon_control_align_bottom_right.svg | 94 ------ .../source/icon_control_align_bottom_wide.svg | 94 ------ .../source/icon_control_align_center.svg | 94 ------ .../source/icon_control_align_center_left.svg | 80 ----- .../icon_control_align_center_right.svg | 80 ----- .../source/icon_control_align_left_center.svg | 94 ------ .../source/icon_control_align_left_wide.svg | 94 ------ .../icon_control_align_right_center.svg | 94 ------ .../source/icon_control_align_right_wide.svg | 94 ------ .../source/icon_control_align_top_center.svg | 94 ------ .../source/icon_control_align_top_left.svg | 94 ------ .../source/icon_control_align_top_right.svg | 94 ------ .../source/icon_control_align_top_wide.svg | 94 ------ .../icons/source/icon_control_align_wide.svg | 94 ------ .../source/icon_control_hcenter_wide.svg | 94 ------ .../source/icon_control_vcenter_wide.svg | 95 ------ .../source/icon_convex_polygon_shape.svg | 98 ------ .../source/icon_convex_polygon_shape_2d.svg | 83 ----- editor/icons/source/icon_copy_node_path.svg | 98 ------ .../source/icon_create_new_scene_from.svg | 101 ------ editor/icons/source/icon_cube_map.svg | 120 ------- editor/icons/source/icon_cube_mesh.svg | 87 ----- editor/icons/source/icon_curve.svg | 85 ----- editor/icons/source/icon_curve_2d.svg | 82 ----- editor/icons/source/icon_curve_3d.svg | 82 ----- editor/icons/source/icon_curve_close.svg | 123 ------- editor/icons/source/icon_curve_constant.svg | 81 ----- editor/icons/source/icon_curve_create.svg | 117 ------- editor/icons/source/icon_curve_curve.svg | 107 ------ editor/icons/source/icon_curve_delete.svg | 107 ------ editor/icons/source/icon_curve_edit.svg | 108 ------ editor/icons/source/icon_curve_in.svg | 79 ----- editor/icons/source/icon_curve_in_out.svg | 79 ----- editor/icons/source/icon_curve_linear.svg | 79 ----- editor/icons/source/icon_curve_out.svg | 79 ----- editor/icons/source/icon_curve_out_in.svg | 79 ----- editor/icons/source/icon_curve_texture.svg | 81 ----- editor/icons/source/icon_cylinder_mesh.svg | 89 ----- .../source/icon_damped_spring_joint_2d.svg | 86 ----- editor/icons/source/icon_debug.svg | 143 -------- editor/icons/source/icon_debug_continue.svg | 109 ------ editor/icons/source/icon_debug_next.svg | 132 -------- editor/icons/source/icon_debug_step.svg | 140 -------- .../icons/source/icon_dependency_changed.svg | 82 ----- .../source/icon_dependency_changed_hl.svg | 92 ----- .../source/icon_dependency_local_changed.svg | 82 ----- .../icon_dependency_local_changed_hl.svg | 77 ----- editor/icons/source/icon_dependency_ok.svg | 82 ----- editor/icons/source/icon_dependency_ok_hl.svg | 77 ----- .../icons/source/icon_directional_light.svg | 157 --------- editor/icons/source/icon_distraction_free.svg | 104 ------ editor/icons/source/icon_duplicate.svg | 104 ------ editor/icons/source/icon_dynamic_font.svg | 82 ----- .../icons/source/icon_dynamic_font_data.svg | 82 ----- editor/icons/source/icon_edit.svg | 78 ----- editor/icons/source/icon_edit_key.svg | 85 ----- editor/icons/source/icon_edit_pivot.svg | 89 ----- editor/icons/source/icon_edit_resource.svg | 81 ----- editor/icons/source/icon_editor_3d_handle.svg | 84 ----- .../source/icon_editor_control_anchor.svg | 98 ------ editor/icons/source/icon_editor_handle.svg | 86 ----- editor/icons/source/icon_editor_pivot.svg | 82 ----- editor/icons/source/icon_editor_plugin.svg | 109 ------ editor/icons/source/icon_environment.svg | 101 ------ editor/icons/source/icon_error.svg | 81 ----- editor/icons/source/icon_error_sign.svg | 92 ----- editor/icons/source/icon_event_player.svg | 96 ------ editor/icons/source/icon_favorites.svg | 82 ----- editor/icons/source/icon_file_big.svg | 87 ----- editor/icons/source/icon_file_dialog.svg | 79 ----- editor/icons/source/icon_file_list.svg | 114 ------- editor/icons/source/icon_file_server.svg | 91 ----- .../icons/source/icon_file_server_active.svg | 91 ----- editor/icons/source/icon_file_thumbnail.svg | 100 ------ editor/icons/source/icon_fixed_material.svg | 92 ----- .../source/icon_fixed_spatial_material.svg | 169 ---------- editor/icons/source/icon_folder.svg | 114 ------- editor/icons/source/icon_folder_big.svg | 147 -------- editor/icons/source/icon_font.svg | 130 -------- editor/icons/source/icon_forward.svg | 78 ----- .../icons/source/icon_g_d_native_library.svg | 83 ----- editor/icons/source/icon_g_d_script.svg | 77 ----- editor/icons/source/icon_g_i_probe.svg | 110 ------ editor/icons/source/icon_g_i_probe_data.svg | 108 ------ .../source/icon_generic_6_d_o_f_joint.svg | 92 ----- .../source/icon_gizmo_directional_light.svg | 132 -------- editor/icons/source/icon_gizmo_light.svg | 90 ----- editor/icons/source/icon_gizmo_listener.svg | 100 ------ .../icon_gizmo_spatial_sample_player.svg | 120 ------- .../icon_gizmo_spatial_stream_player.svg | 81 ----- editor/icons/source/icon_godot.svg | 176 ---------- editor/icons/source/icon_gradient.svg | 107 ------ editor/icons/source/icon_gradient_texture.svg | 160 --------- editor/icons/source/icon_graph_comment.svg | 100 ------ .../icons/source/icon_graph_cube_uniform.svg | 77 ----- editor/icons/source/icon_graph_curve_map.svg | 86 ----- .../source/icon_graph_default_texture.svg | 80 ----- editor/icons/source/icon_graph_edit.svg | 95 ------ editor/icons/source/icon_graph_input.svg | 81 ----- editor/icons/source/icon_graph_node.svg | 89 ----- editor/icons/source/icon_graph_rgb.svg | 118 ------- editor/icons/source/icon_graph_rgb_op.svg | 119 ------- .../icons/source/icon_graph_rgb_uniform.svg | 119 ------- editor/icons/source/icon_graph_scalar.svg | 78 ----- .../icons/source/icon_graph_scalar_interp.svg | 78 ----- editor/icons/source/icon_graph_scalar_op.svg | 103 ------ .../source/icon_graph_scalar_uniform.svg | 78 ----- .../source/icon_graph_scalars_to_vec.svg | 104 ------ editor/icons/source/icon_graph_texscreen.svg | 86 ----- .../source/icon_graph_texture_uniform.svg | 80 ----- editor/icons/source/icon_graph_time.svg | 96 ------ editor/icons/source/icon_graph_vec_dp.svg | 94 ------ editor/icons/source/icon_graph_vec_interp.svg | 78 ----- editor/icons/source/icon_graph_vec_length.svg | 96 ------ editor/icons/source/icon_graph_vec_op.svg | 80 ----- .../icons/source/icon_graph_vec_scalar_op.svg | 85 ----- .../source/icon_graph_vec_to_scalars.svg | 105 ------ .../icons/source/icon_graph_vecs_to_xform.svg | 105 ------ editor/icons/source/icon_graph_vector.svg | 82 ----- .../source/icon_graph_vector_uniform.svg | 90 ----- editor/icons/source/icon_graph_xform.svg | 123 ------- editor/icons/source/icon_graph_xform_mult.svg | 93 ------ .../source/icon_graph_xform_scalar_func.svg | 112 ------- .../icons/source/icon_graph_xform_to_vecs.svg | 105 ------ .../icons/source/icon_graph_xform_uniform.svg | 80 ----- .../source/icon_graph_xform_vec_func.svg | 112 ------- .../source/icon_graph_xform_vec_imult.svg | 94 ------ .../source/icon_graph_xform_vec_mult.svg | 94 ------ editor/icons/source/icon_grid.svg | 134 -------- editor/icons/source/icon_grid_container.svg | 107 ------ editor/icons/source/icon_grid_map.svg | 77 ----- editor/icons/source/icon_groove_joint_2d.svg | 77 ----- editor/icons/source/icon_group.svg | 118 ------- editor/icons/source/icon_groups.svg | 93 ------ editor/icons/source/icon_gui_close_dark.svg | 79 ----- editor/icons/source/icon_gui_close_light.svg | 79 ----- editor/icons/source/icon_h_box_container.svg | 93 ------ editor/icons/source/icon_h_button_array.svg | 93 ------ editor/icons/source/icon_h_scroll_bar.svg | 81 ----- editor/icons/source/icon_h_separator.svg | 94 ------ editor/icons/source/icon_h_slider.svg | 110 ------ .../icons/source/icon_h_split_container.svg | 96 ------ editor/icons/source/icon_h_t_t_p_request.svg | 173 ---------- editor/icons/source/icon_headphones.svg | 119 ------- editor/icons/source/icon_help.svg | 78 ----- editor/icons/source/icon_help_search.svg | 91 ----- editor/icons/source/icon_hidden.svg | 109 ------ editor/icons/source/icon_hinge_joint.svg | 91 ----- editor/icons/source/icon_history.svg | 109 ------ editor/icons/source/icon_hsize.svg | 79 ----- editor/icons/source/icon_image.svg | 86 ----- editor/icons/source/icon_image_texture.svg | 137 -------- .../icons/source/icon_immediate_geometry.svg | 83 ----- editor/icons/source/icon_import_check.svg | 82 ----- editor/icons/source/icon_import_fail.svg | 81 ----- editor/icons/source/icon_instance.svg | 84 ----- editor/icons/source/icon_instance_options.svg | 84 ----- editor/icons/source/icon_integer.svg | 94 ------ editor/icons/source/icon_interp_cubic.svg | 83 ----- editor/icons/source/icon_interp_linear.svg | 83 ----- editor/icons/source/icon_interp_raw.svg | 83 ----- .../icons/source/icon_interp_wrap_clamp.svg | 110 ------ editor/icons/source/icon_interp_wrap_loop.svg | 121 ------- .../icons/source/icon_interpolated_camera.svg | 259 -------------- editor/icons/source/icon_invalid_key.svg | 78 ----- .../icons/source/icon_inverse_kinematics.svg | 123 ------- editor/icons/source/icon_item_list.svg | 142 -------- editor/icons/source/icon_joy_axis.svg | 94 ------ editor/icons/source/icon_joy_button.svg | 88 ----- editor/icons/source/icon_joypad.svg | 81 ----- editor/icons/source/icon_key.svg | 91 ----- editor/icons/source/icon_key_hover.svg | 81 ----- editor/icons/source/icon_key_invalid.svg | 78 ----- editor/icons/source/icon_key_next.svg | 82 ----- editor/icons/source/icon_key_selected.svg | 81 ----- editor/icons/source/icon_key_value.svg | 81 ----- editor/icons/source/icon_key_xform.svg | 81 ----- editor/icons/source/icon_keyboard.svg | 93 ------ editor/icons/source/icon_kinematic_body.svg | 77 ----- .../icons/source/icon_kinematic_body_2d.svg | 77 ----- editor/icons/source/icon_label.svg | 81 ----- editor/icons/source/icon_large_texture.svg | 80 ----- editor/icons/source/icon_light_2d.svg | 78 ----- .../icons/source/icon_light_occluder_2d.svg | 122 ------- editor/icons/source/icon_line_2d.svg | 82 ----- editor/icons/source/icon_line_edit.svg | 88 ----- editor/icons/source/icon_line_shape_2d.svg | 95 ------ editor/icons/source/icon_link_button.svg | 86 ----- editor/icons/source/icon_list_select.svg | 88 ----- editor/icons/source/icon_listener.svg | 101 ------ editor/icons/source/icon_load.svg | 147 -------- editor/icons/source/icon_lock.svg | 102 ------ editor/icons/source/icon_loop.svg | 81 ----- .../icons/source/icon_loop_interpolation.svg | 111 ------ editor/icons/source/icon_main_play.svg | 81 ----- editor/icons/source/icon_main_stop.svg | 81 ----- editor/icons/source/icon_margin_container.svg | 85 ----- .../source/icon_material_preview_cube.svg | 99 ------ .../source/icon_material_preview_cube_off.svg | 104 ------ .../source/icon_material_preview_light_1.svg | 82 ----- .../icon_material_preview_light_1_off.svg | 82 ----- .../source/icon_material_preview_light_2.svg | 82 ----- .../icon_material_preview_light_2_off.svg | 87 ----- .../source/icon_material_preview_sphere.svg | 82 ----- .../icon_material_preview_sphere_off.svg | 82 ----- editor/icons/source/icon_matrix.svg | 180 ---------- editor/icons/source/icon_menu_button.svg | 83 ----- editor/icons/source/icon_mesh.svg | 78 ----- editor/icons/source/icon_mesh_instance.svg | 132 -------- editor/icons/source/icon_mesh_library.svg | 78 ----- editor/icons/source/icon_mini_aabb.svg | 107 ------ editor/icons/source/icon_mini_array.svg | 130 -------- editor/icons/source/icon_mini_basis.svg | 204 ------------ editor/icons/source/icon_mini_boolean.svg | 131 -------- editor/icons/source/icon_mini_color.svg | 126 ------- editor/icons/source/icon_mini_color_array.svg | 250 -------------- editor/icons/source/icon_mini_dictionary.svg | 150 --------- editor/icons/source/icon_mini_float.svg | 147 -------- editor/icons/source/icon_mini_float_array.svg | 133 -------- editor/icons/source/icon_mini_image.svg | 156 --------- editor/icons/source/icon_mini_input.svg | 146 -------- editor/icons/source/icon_mini_int_array.svg | 94 ------ editor/icons/source/icon_mini_integer.svg | 143 -------- editor/icons/source/icon_mini_matrix3.svg | 204 ------------ editor/icons/source/icon_mini_object.svg | 111 ------ editor/icons/source/icon_mini_path.svg | 142 -------- editor/icons/source/icon_mini_plane.svg | 124 ------- editor/icons/source/icon_mini_quat.svg | 123 ------- editor/icons/source/icon_mini_raw_array.svg | 103 ------ editor/icons/source/icon_mini_rect2.svg | 170 ---------- editor/icons/source/icon_mini_rid.svg | 140 -------- editor/icons/source/icon_mini_string.svg | 236 ------------- .../icons/source/icon_mini_string_array.svg | 289 ---------------- editor/icons/source/icon_mini_transform.svg | 90 ----- editor/icons/source/icon_mini_transform2D.svg | 117 ------- editor/icons/source/icon_mini_variant.svg | 138 -------- editor/icons/source/icon_mini_vector2.svg | 149 --------- .../icons/source/icon_mini_vector2_array.svg | 129 ------- editor/icons/source/icon_mini_vector3.svg | 142 -------- .../icons/source/icon_mini_vector3_array.svg | 129 ------- editor/icons/source/icon_mirror_x.svg | 89 ----- editor/icons/source/icon_mirror_y.svg | 77 ----- editor/icons/source/icon_mouse.svg | 77 ----- editor/icons/source/icon_move_down.svg | 85 ----- editor/icons/source/icon_move_point.svg | 94 ------ editor/icons/source/icon_move_up.svg | 85 ----- editor/icons/source/icon_multi_edit.svg | 99 ------ editor/icons/source/icon_multi_line.svg | 115 ------- editor/icons/source/icon_multi_mesh.svg | 78 ----- .../icons/source/icon_multi_mesh_instance.svg | 83 ----- editor/icons/source/icon_multi_script.svg | 83 ----- editor/icons/source/icon_native_script.svg | 77 ----- editor/icons/source/icon_navigation.svg | 78 ----- editor/icons/source/icon_navigation_2d.svg | 78 ----- editor/icons/source/icon_navigation_mesh.svg | 78 ----- .../source/icon_navigation_mesh_instance.svg | 97 ------ .../icons/source/icon_navigation_polygon.svg | 88 ----- .../icon_navigation_polygon_instance.svg | 82 ----- editor/icons/source/icon_new.svg | 92 ----- editor/icons/source/icon_nine_patch_rect.svg | 130 -------- editor/icons/source/icon_node.svg | 78 ----- editor/icons/source/icon_node_2d.svg | 78 ----- editor/icons/source/icon_node_warning.svg | 86 ----- editor/icons/source/icon_non_favorite.svg | 82 ----- editor/icons/source/icon_object.svg | 87 ----- .../icons/source/icon_occluder_polygon_2d.svg | 87 ----- editor/icons/source/icon_omni_light.svg | 78 ----- editor/icons/source/icon_option_button.svg | 88 ----- editor/icons/source/icon_override.svg | 91 ----- .../source/icon_packed_data_container.svg | 138 -------- editor/icons/source/icon_packed_scene.svg | 96 ------ editor/icons/source/icon_panel.svg | 79 ----- editor/icons/source/icon_panel_container.svg | 79 ----- editor/icons/source/icon_panels_1.svg | 80 ----- editor/icons/source/icon_panels_2.svg | 87 ----- editor/icons/source/icon_panels_2_alt.svg | 87 ----- editor/icons/source/icon_panels_3.svg | 94 ------ editor/icons/source/icon_panels_3_alt.svg | 94 ------ editor/icons/source/icon_panels_4.svg | 101 ------ editor/icons/source/icon_panorama_sky.svg | 131 -------- .../icons/source/icon_parallax_background.svg | 167 ---------- editor/icons/source/icon_parallax_layer.svg | 99 ------ .../source/icon_particle_attractor_2d.svg | 103 ------ editor/icons/source/icon_particles.svg | 120 ------- editor/icons/source/icon_particles_2d.svg | 120 ------- .../icons/source/icon_particles_material.svg | 159 --------- editor/icons/source/icon_path.svg | 91 ----- editor/icons/source/icon_path_2d.svg | 90 ----- editor/icons/source/icon_path_follow.svg | 89 ----- editor/icons/source/icon_path_follow_2d.svg | 89 ----- editor/icons/source/icon_pause.svg | 104 ------ editor/icons/source/icon_pin.svg | 99 ------ editor/icons/source/icon_pin_joint.svg | 100 ------ editor/icons/source/icon_pin_joint_2d.svg | 100 ------ editor/icons/source/icon_pin_pressed.svg | 99 ------ editor/icons/source/icon_plane.svg | 82 ----- editor/icons/source/icon_plane_mesh.svg | 79 ----- editor/icons/source/icon_plane_shape.svg | 82 ----- editor/icons/source/icon_play.svg | 81 ----- editor/icons/source/icon_play_backwards.svg | 81 ----- editor/icons/source/icon_play_custom.svg | 87 ----- editor/icons/source/icon_play_scene.svg | 99 ------ editor/icons/source/icon_play_start.svg | 101 ------ .../source/icon_play_start_backwards.svg | 99 ------ .../icons/source/icon_polygon_path_finder.svg | 77 ----- editor/icons/source/icon_popup.svg | 77 ----- editor/icons/source/icon_popup_dialog.svg | 77 ----- editor/icons/source/icon_popup_menu.svg | 83 ----- editor/icons/source/icon_popup_panel.svg | 85 ----- editor/icons/source/icon_portal.svg | 78 ----- editor/icons/source/icon_position_2d.svg | 101 ------ editor/icons/source/icon_position_3d.svg | 78 ----- editor/icons/source/icon_prism_mesh.svg | 79 ----- editor/icons/source/icon_procedural_sky.svg | 129 ------- editor/icons/source/icon_progress_1.svg | 104 ------ editor/icons/source/icon_progress_2.svg | 104 ------ editor/icons/source/icon_progress_3.svg | 104 ------ editor/icons/source/icon_progress_4.svg | 104 ------ editor/icons/source/icon_progress_5.svg | 104 ------ editor/icons/source/icon_progress_6.svg | 104 ------ editor/icons/source/icon_progress_7.svg | 104 ------ editor/icons/source/icon_progress_8.svg | 104 ------ editor/icons/source/icon_progress_bar.svg | 104 ------ editor/icons/source/icon_proximity_group.svg | 121 ------- editor/icons/source/icon_quad.svg | 78 ----- editor/icons/source/icon_quad_mesh.svg | 79 ----- editor/icons/source/icon_quat.svg | 82 ----- editor/icons/source/icon_range.svg | 107 ------ editor/icons/source/icon_rating_no_star.svg | 88 ----- editor/icons/source/icon_rating_star.svg | 82 ----- editor/icons/source/icon_ray_cast.svg | 85 ----- editor/icons/source/icon_ray_cast_2d.svg | 85 ----- editor/icons/source/icon_ray_shape.svg | 107 ------ editor/icons/source/icon_ray_shape_2d.svg | 89 ----- editor/icons/source/icon_rayito.svg | 90 ----- editor/icons/source/icon_real.svg | 120 ------- .../icons/source/icon_rectangle_shape_2d.svg | 86 ----- editor/icons/source/icon_reference_rect.svg | 130 -------- editor/icons/source/icon_reflection_probe.svg | 82 ----- editor/icons/source/icon_region_edit.svg | 135 -------- editor/icons/source/icon_reload_small.svg | 95 ------ editor/icons/source/icon_remote.svg | 93 ------ editor/icons/source/icon_remote_transform.svg | 126 ------- .../icons/source/icon_remote_transform_2d.svg | 120 ------- editor/icons/source/icon_remove.svg | 91 ----- editor/icons/source/icon_rename.svg | 77 ----- editor/icons/source/icon_reparent.svg | 85 ----- .../icons/source/icon_resource_preloader.svg | 89 ----- editor/icons/source/icon_rich_text_label.svg | 120 ------- editor/icons/source/icon_rigid_body.svg | 87 ----- editor/icons/source/icon_rigid_body_2d.svg | 124 ------- editor/icons/source/icon_room.svg | 78 ----- editor/icons/source/icon_room_bounds.svg | 78 ----- editor/icons/source/icon_rotate_0.svg | 84 ----- editor/icons/source/icon_rotate_180.svg | 106 ------ editor/icons/source/icon_rotate_270.svg | 113 ------- editor/icons/source/icon_rotate_90.svg | 99 ------ editor/icons/source/icon_sample_library.svg | 87 ----- editor/icons/source/icon_save.svg | 94 ------ editor/icons/source/icon_script.svg | 90 ----- editor/icons/source/icon_script_create.svg | 99 ------ editor/icons/source/icon_script_remove.svg | 99 ------ editor/icons/source/icon_scroll_bar.svg | 97 ------ editor/icons/source/icon_scroll_container.svg | 103 ------ editor/icons/source/icon_search.svg | 87 ----- editor/icons/source/icon_segment_shape_2d.svg | 82 ----- editor/icons/source/icon_shader.svg | 152 --------- editor/icons/source/icon_short_cut.svg | 89 ----- editor/icons/source/icon_signal.svg | 118 ------- editor/icons/source/icon_skeleton.svg | 105 ------ editor/icons/source/icon_slider_joint.svg | 104 ------ editor/icons/source/icon_slot.svg | 102 ------ editor/icons/source/icon_snap.svg | 111 ------ .../icons/source/icon_sound_room_params.svg | 100 ------ editor/icons/source/icon_spatial.svg | 78 ----- editor/icons/source/icon_spatial_material.svg | 165 --------- .../source/icon_spatial_sample_player.svg | 78 ----- .../source/icon_spatial_stream_player.svg | 83 ----- editor/icons/source/icon_sphere_mesh.svg | 79 ----- editor/icons/source/icon_sphere_shape.svg | 89 ----- editor/icons/source/icon_spin_box.svg | 100 ------ editor/icons/source/icon_spot_light.svg | 78 ----- editor/icons/source/icon_sprite.svg | 77 ----- editor/icons/source/icon_sprite_3d.svg | 77 ----- editor/icons/source/icon_sprite_frames.svg | 119 ------- editor/icons/source/icon_static_body.svg | 80 ----- editor/icons/source/icon_static_body_2d.svg | 87 ----- editor/icons/source/icon_stream_player.svg | 83 ----- editor/icons/source/icon_stream_texture.svg | 81 ----- editor/icons/source/icon_string.svg | 77 ----- editor/icons/source/icon_style_box_empty.svg | 140 -------- editor/icons/source/icon_style_box_flat.svg | 149 --------- .../icons/source/icon_style_box_texture.svg | 140 -------- editor/icons/source/icon_tab_container.svg | 80 ----- editor/icons/source/icon_tabs.svg | 80 ----- editor/icons/source/icon_test_cube.svg | 88 ----- editor/icons/source/icon_text_edit.svg | 87 ----- editor/icons/source/icon_texture_button.svg | 94 ------ editor/icons/source/icon_texture_progress.svg | 104 ------ editor/icons/source/icon_texture_rect.svg | 84 ----- editor/icons/source/icon_theme.svg | 144 -------- editor/icons/source/icon_tile_map.svg | 250 -------------- editor/icons/source/icon_tile_set.svg | 80 ----- editor/icons/source/icon_timer.svg | 103 ------ editor/icons/source/icon_tool_button.svg | 112 ------- editor/icons/source/icon_tool_move.svg | 77 ----- editor/icons/source/icon_tool_pan.svg | 136 -------- editor/icons/source/icon_tool_rotate.svg | 95 ------ editor/icons/source/icon_tool_scale.svg | 77 ----- editor/icons/source/icon_tool_select.svg | 88 ----- editor/icons/source/icon_tools.svg | 77 ----- .../icons/source/icon_touch_screen_button.svg | 174 ---------- editor/icons/source/icon_track_add_key.svg | 77 ----- editor/icons/source/icon_track_add_key_hl.svg | 82 ----- editor/icons/source/icon_track_continuous.svg | 83 ----- editor/icons/source/icon_track_discrete.svg | 95 ------ editor/icons/source/icon_track_trigger.svg | 109 ------ editor/icons/source/icon_translation.svg | 78 ----- editor/icons/source/icon_transpose.svg | 127 ------- editor/icons/source/icon_tree.svg | 132 -------- editor/icons/source/icon_tween.svg | 95 ------ editor/icons/source/icon_unbone.svg | 78 ----- editor/icons/source/icon_ungroup.svg | 141 -------- editor/icons/source/icon_unlock.svg | 97 ------ editor/icons/source/icon_uv.svg | 80 ----- editor/icons/source/icon_v_box_container.svg | 77 ----- editor/icons/source/icon_v_button_array.svg | 91 ----- editor/icons/source/icon_v_scroll_bar.svg | 81 ----- editor/icons/source/icon_v_separator.svg | 77 ----- editor/icons/source/icon_v_slider.svg | 111 ------ .../icons/source/icon_v_split_container.svg | 97 ------ editor/icons/source/icon_variant.svg | 146 -------- editor/icons/source/icon_vector.svg | 87 ----- editor/icons/source/icon_vector2.svg | 81 ----- editor/icons/source/icon_vehicle_body.svg | 90 ----- editor/icons/source/icon_vehicle_wheel.svg | 83 ----- editor/icons/source/icon_video_player.svg | 97 ------ editor/icons/source/icon_viewport.svg | 82 ----- .../icons/source/icon_viewport_container.svg | 82 ----- editor/icons/source/icon_viewport_sprite.svg | 117 ------- editor/icons/source/icon_viewport_texture.svg | 80 ----- .../icons/source/icon_visibility_enabler.svg | 99 ------ .../source/icon_visibility_enabler_2d.svg | 99 ------ .../icons/source/icon_visibility_notifier.svg | 96 ------ .../source/icon_visibility_notifier_2d.svg | 96 ------ editor/icons/source/icon_visible.svg | 87 ----- editor/icons/source/icon_visual_script.svg | 85 ----- .../icons/source/icon_visual_shader_port.svg | 80 ----- editor/icons/source/icon_vu_empty.svg | 115 ------- editor/icons/source/icon_vu_full.svg | 110 ------ editor/icons/source/icon_warning.svg | 81 ----- editor/icons/source/icon_window_dialog.svg | 77 ----- editor/icons/source/icon_world.svg | 89 ----- editor/icons/source/icon_world_2d.svg | 82 ----- .../icons/source/icon_world_environment.svg | 101 ------ editor/icons/source/icon_y_sort.svg | 99 ------ editor/icons/source/icon_zoom.svg | 77 ----- editor/icons/source/icon_zoom_less.svg | 79 ----- editor/icons/source/icon_zoom_more.svg | 104 ------ editor/icons/source/icon_zoom_reset.svg | 112 ------- editor/icons/xpmfix.sh | 2 - 3099 files changed, 8470 insertions(+), 57185 deletions(-) delete mode 100644 editor/editor_icons.h delete mode 100644 editor/icons/2x/icon_2_d.png delete mode 100644 editor/icons/2x/icon_3_d.png delete mode 100644 editor/icons/2x/icon_GUI_checked.png delete mode 100644 editor/icons/2x/icon_GUI_dropdown.png delete mode 100644 editor/icons/2x/icon_GUI_hslider_bg.png delete mode 100644 editor/icons/2x/icon_GUI_hsplitter.png delete mode 100644 editor/icons/2x/icon_GUI_mini_tab_menu.png delete mode 100644 editor/icons/2x/icon_GUI_option_arrow.png delete mode 100644 editor/icons/2x/icon_GUI_play_button_group.png delete mode 100644 editor/icons/2x/icon_GUI_progress_bar.png delete mode 100644 editor/icons/2x/icon_GUI_progress_fill.png delete mode 100644 editor/icons/2x/icon_GUI_radio_checked.png delete mode 100644 editor/icons/2x/icon_GUI_radio_unchecked.png delete mode 100644 editor/icons/2x/icon_GUI_scroll_bg.png delete mode 100644 editor/icons/2x/icon_GUI_scroll_grabber.png delete mode 100644 editor/icons/2x/icon_GUI_scroll_grabber_hl.png delete mode 100644 editor/icons/2x/icon_GUI_slider_grabber.png delete mode 100644 editor/icons/2x/icon_GUI_slider_grabber_hl.png delete mode 100644 editor/icons/2x/icon_GUI_spinbox_updown.png delete mode 100644 editor/icons/2x/icon_GUI_tab_menu.png delete mode 100644 editor/icons/2x/icon_GUI_toggle_off.png delete mode 100644 editor/icons/2x/icon_GUI_toggle_on.png delete mode 100644 editor/icons/2x/icon_GUI_tree_arrow_down.png delete mode 100644 editor/icons/2x/icon_GUI_tree_arrow_right.png delete mode 100644 editor/icons/2x/icon_GUI_unchecked.png delete mode 100644 editor/icons/2x/icon_GUI_vslider_bg.png delete mode 100644 editor/icons/2x/icon_GUI_vsplit_bg.png delete mode 100644 editor/icons/2x/icon_GUI_vsplitter.png delete mode 100644 editor/icons/2x/icon_accept_dialog.png delete mode 100644 editor/icons/2x/icon_add.png delete mode 100644 editor/icons/2x/icon_add_track.png delete mode 100644 editor/icons/2x/icon_anchor.png delete mode 100644 editor/icons/2x/icon_animated_sprite.png delete mode 100644 editor/icons/2x/icon_animated_sprite_3d.png delete mode 100644 editor/icons/2x/icon_animation.png delete mode 100644 editor/icons/2x/icon_animation_player.png delete mode 100644 editor/icons/2x/icon_animation_tree.png delete mode 100644 editor/icons/2x/icon_animation_tree_player.png delete mode 100644 editor/icons/2x/icon_area.png delete mode 100644 editor/icons/2x/icon_area_2d.png delete mode 100644 editor/icons/2x/icon_arrow_left.png delete mode 100644 editor/icons/2x/icon_arrow_right.png delete mode 100644 editor/icons/2x/icon_arrow_up.png delete mode 100644 editor/icons/2x/icon_asset_lib.png delete mode 100644 editor/icons/2x/icon_atlas_texture.png delete mode 100644 editor/icons/2x/icon_audio_bus_bypass.png delete mode 100644 editor/icons/2x/icon_audio_bus_layout.png delete mode 100644 editor/icons/2x/icon_audio_bus_mute.png delete mode 100644 editor/icons/2x/icon_audio_bus_solo.png delete mode 100644 editor/icons/2x/icon_audio_effect_amplify.png delete mode 100644 editor/icons/2x/icon_audio_stream_gibberish.png delete mode 100644 editor/icons/2x/icon_audio_stream_player.png delete mode 100644 editor/icons/2x/icon_audio_stream_player_2_d.png delete mode 100644 editor/icons/2x/icon_audio_stream_player_3_d.png delete mode 100644 editor/icons/2x/icon_audio_stream_sample.png delete mode 100644 editor/icons/2x/icon_auto_play.png delete mode 100644 editor/icons/2x/icon_back.png delete mode 100644 editor/icons/2x/icon_back_buffer_copy.png delete mode 100644 editor/icons/2x/icon_bake.png delete mode 100644 editor/icons/2x/icon_baked_light.png delete mode 100644 editor/icons/2x/icon_baked_light_instance.png delete mode 100644 editor/icons/2x/icon_baked_light_sampler.png delete mode 100644 editor/icons/2x/icon_bit_map.png delete mode 100644 editor/icons/2x/icon_bitmap_font.png delete mode 100644 editor/icons/2x/icon_blend.png delete mode 100644 editor/icons/2x/icon_bone.png delete mode 100644 editor/icons/2x/icon_bone_attachment.png delete mode 100644 editor/icons/2x/icon_bone_track.png delete mode 100644 editor/icons/2x/icon_bool.png delete mode 100644 editor/icons/2x/icon_box_shape.png delete mode 100644 editor/icons/2x/icon_bus_vu_db.png delete mode 100644 editor/icons/2x/icon_bus_vu_empty.png delete mode 100644 editor/icons/2x/icon_bus_vu_frozen.png delete mode 100644 editor/icons/2x/icon_bus_vu_full.png delete mode 100644 editor/icons/2x/icon_button.png delete mode 100644 editor/icons/2x/icon_button_group.png delete mode 100644 editor/icons/2x/icon_camera.png delete mode 100644 editor/icons/2x/icon_camera_2d.png delete mode 100644 editor/icons/2x/icon_canvas_item.png delete mode 100644 editor/icons/2x/icon_canvas_item_material.png delete mode 100644 editor/icons/2x/icon_canvas_item_shader.png delete mode 100644 editor/icons/2x/icon_canvas_item_shader_graph.png delete mode 100644 editor/icons/2x/icon_canvas_layer.png delete mode 100644 editor/icons/2x/icon_canvas_modulate.png delete mode 100644 editor/icons/2x/icon_capsule_mesh.png delete mode 100644 editor/icons/2x/icon_capsule_shape.png delete mode 100644 editor/icons/2x/icon_capsule_shape_2d.png delete mode 100644 editor/icons/2x/icon_center_container.png delete mode 100644 editor/icons/2x/icon_check_box.png delete mode 100644 editor/icons/2x/icon_check_button.png delete mode 100644 editor/icons/2x/icon_checked.png delete mode 100644 editor/icons/2x/icon_circle_shape_2d.png delete mode 100644 editor/icons/2x/icon_class_list.png delete mode 100644 editor/icons/2x/icon_close.png delete mode 100644 editor/icons/2x/icon_collapse.png delete mode 100644 editor/icons/2x/icon_collision_2d.png delete mode 100644 editor/icons/2x/icon_collision_polygon.png delete mode 100644 editor/icons/2x/icon_collision_polygon_2d.png delete mode 100644 editor/icons/2x/icon_collision_shape.png delete mode 100644 editor/icons/2x/icon_collision_shape_2d.png delete mode 100644 editor/icons/2x/icon_color.png delete mode 100644 editor/icons/2x/icon_color_pick.png delete mode 100644 editor/icons/2x/icon_color_picker.png delete mode 100644 editor/icons/2x/icon_color_picker_button.png delete mode 100644 editor/icons/2x/icon_color_ramp.png delete mode 100644 editor/icons/2x/icon_color_rect.png delete mode 100644 editor/icons/2x/icon_concave_polygon_shape.png delete mode 100644 editor/icons/2x/icon_concave_polygon_shape_2d.png delete mode 100644 editor/icons/2x/icon_cone_twist_joint.png delete mode 100644 editor/icons/2x/icon_confirmation_dialog.png delete mode 100644 editor/icons/2x/icon_connect.png delete mode 100644 editor/icons/2x/icon_connection_and_groups.png delete mode 100644 editor/icons/2x/icon_container.png delete mode 100644 editor/icons/2x/icon_control.png delete mode 100644 editor/icons/2x/icon_control_align_bottom_center.png delete mode 100644 editor/icons/2x/icon_control_align_bottom_left.png delete mode 100644 editor/icons/2x/icon_control_align_bottom_right.png delete mode 100644 editor/icons/2x/icon_control_align_bottom_wide.png delete mode 100644 editor/icons/2x/icon_control_align_center.png delete mode 100644 editor/icons/2x/icon_control_align_center_left.png delete mode 100644 editor/icons/2x/icon_control_align_center_right.png delete mode 100644 editor/icons/2x/icon_control_align_left_center.png delete mode 100644 editor/icons/2x/icon_control_align_left_wide.png delete mode 100644 editor/icons/2x/icon_control_align_right_center.png delete mode 100644 editor/icons/2x/icon_control_align_right_wide.png delete mode 100644 editor/icons/2x/icon_control_align_top_center.png delete mode 100644 editor/icons/2x/icon_control_align_top_left.png delete mode 100644 editor/icons/2x/icon_control_align_top_right.png delete mode 100644 editor/icons/2x/icon_control_align_top_wide.png delete mode 100644 editor/icons/2x/icon_control_align_wide.png delete mode 100644 editor/icons/2x/icon_control_hcenter_wide.png delete mode 100644 editor/icons/2x/icon_control_vcenter_wide.png delete mode 100644 editor/icons/2x/icon_convex_polygon_shape.png delete mode 100644 editor/icons/2x/icon_convex_polygon_shape_2d.png delete mode 100644 editor/icons/2x/icon_copy_node_path.png delete mode 100644 editor/icons/2x/icon_create_new_scene_from.png delete mode 100644 editor/icons/2x/icon_cube_map.png delete mode 100644 editor/icons/2x/icon_cube_mesh.png delete mode 100644 editor/icons/2x/icon_curve.png delete mode 100644 editor/icons/2x/icon_curve_2d.png delete mode 100644 editor/icons/2x/icon_curve_3d.png delete mode 100644 editor/icons/2x/icon_curve_close.png delete mode 100644 editor/icons/2x/icon_curve_constant.png delete mode 100644 editor/icons/2x/icon_curve_create.png delete mode 100644 editor/icons/2x/icon_curve_curve.png delete mode 100644 editor/icons/2x/icon_curve_delete.png delete mode 100644 editor/icons/2x/icon_curve_edit.png delete mode 100644 editor/icons/2x/icon_curve_in.png delete mode 100644 editor/icons/2x/icon_curve_in_out.png delete mode 100644 editor/icons/2x/icon_curve_linear.png delete mode 100644 editor/icons/2x/icon_curve_out.png delete mode 100644 editor/icons/2x/icon_curve_out_in.png delete mode 100644 editor/icons/2x/icon_curve_texture.png delete mode 100644 editor/icons/2x/icon_cylinder_mesh.png delete mode 100644 editor/icons/2x/icon_damped_spring_joint_2d.png delete mode 100644 editor/icons/2x/icon_debug.png delete mode 100644 editor/icons/2x/icon_debug_continue.png delete mode 100644 editor/icons/2x/icon_debug_next.png delete mode 100644 editor/icons/2x/icon_debug_step.png delete mode 100644 editor/icons/2x/icon_dependency_changed.png delete mode 100644 editor/icons/2x/icon_dependency_changed_hl.png delete mode 100644 editor/icons/2x/icon_dependency_local_changed.png delete mode 100644 editor/icons/2x/icon_dependency_local_changed_hl.png delete mode 100644 editor/icons/2x/icon_dependency_ok.png delete mode 100644 editor/icons/2x/icon_dependency_ok_hl.png delete mode 100644 editor/icons/2x/icon_directional_light.png delete mode 100644 editor/icons/2x/icon_distraction_free.png delete mode 100644 editor/icons/2x/icon_dropdown.png delete mode 100644 editor/icons/2x/icon_duplicate.png delete mode 100644 editor/icons/2x/icon_dynamic_font.png delete mode 100644 editor/icons/2x/icon_dynamic_font_data.png delete mode 100644 editor/icons/2x/icon_edit.png delete mode 100644 editor/icons/2x/icon_edit_key.png delete mode 100644 editor/icons/2x/icon_edit_pivot.png delete mode 100644 editor/icons/2x/icon_edit_resource.png delete mode 100644 editor/icons/2x/icon_editor_3d_handle.png delete mode 100644 editor/icons/2x/icon_editor_control_anchor.png delete mode 100644 editor/icons/2x/icon_editor_handle.png delete mode 100644 editor/icons/2x/icon_editor_pivot.png delete mode 100644 editor/icons/2x/icon_editor_plugin.png delete mode 100644 editor/icons/2x/icon_enum.png delete mode 100644 editor/icons/2x/icon_environment.png delete mode 100644 editor/icons/2x/icon_error.png delete mode 100644 editor/icons/2x/icon_error_sign.png delete mode 100644 editor/icons/2x/icon_event_player.png delete mode 100644 editor/icons/2x/icon_favorites.png delete mode 100644 editor/icons/2x/icon_file.png delete mode 100644 editor/icons/2x/icon_file_big.png delete mode 100644 editor/icons/2x/icon_file_dialog.png delete mode 100644 editor/icons/2x/icon_file_list.png delete mode 100644 editor/icons/2x/icon_file_server.png delete mode 100644 editor/icons/2x/icon_file_server_active.png delete mode 100644 editor/icons/2x/icon_file_thumbnail.png delete mode 100644 editor/icons/2x/icon_filesystem.png delete mode 100644 editor/icons/2x/icon_fixed_material.png delete mode 100644 editor/icons/2x/icon_fixed_spatial_material.png delete mode 100644 editor/icons/2x/icon_folder.png delete mode 100644 editor/icons/2x/icon_folder_big.png delete mode 100644 editor/icons/2x/icon_font.png delete mode 100644 editor/icons/2x/icon_forward.png delete mode 100644 editor/icons/2x/icon_g_d_native_library.png delete mode 100644 editor/icons/2x/icon_g_d_native_script.png delete mode 100644 editor/icons/2x/icon_g_d_script.png delete mode 100644 editor/icons/2x/icon_g_i_probe.png delete mode 100644 editor/icons/2x/icon_g_i_probe_data.png delete mode 100644 editor/icons/2x/icon_generic_6_d_o_f_joint.png delete mode 100644 editor/icons/2x/icon_gizmo_directional_light.png delete mode 100644 editor/icons/2x/icon_gizmo_light.png delete mode 100644 editor/icons/2x/icon_gizmo_listener.png delete mode 100644 editor/icons/2x/icon_gizmo_spatial_sample_player.png delete mode 100644 editor/icons/2x/icon_gizmo_spatial_stream_player.png delete mode 100644 editor/icons/2x/icon_godot.png delete mode 100644 editor/icons/2x/icon_godot_docs.png delete mode 100644 editor/icons/2x/icon_gradient.png delete mode 100644 editor/icons/2x/icon_gradient_texture.png delete mode 100644 editor/icons/2x/icon_graph_color_ramp.png delete mode 100644 editor/icons/2x/icon_graph_comment.png delete mode 100644 editor/icons/2x/icon_graph_cube_uniform.png delete mode 100644 editor/icons/2x/icon_graph_curve_map.png delete mode 100644 editor/icons/2x/icon_graph_default_texture.png delete mode 100644 editor/icons/2x/icon_graph_edit.png delete mode 100644 editor/icons/2x/icon_graph_input.png delete mode 100644 editor/icons/2x/icon_graph_node.png delete mode 100644 editor/icons/2x/icon_graph_rgb.png delete mode 100644 editor/icons/2x/icon_graph_rgb_op.png delete mode 100644 editor/icons/2x/icon_graph_rgb_uniform.png delete mode 100644 editor/icons/2x/icon_graph_scalar.png delete mode 100644 editor/icons/2x/icon_graph_scalar_interp.png delete mode 100644 editor/icons/2x/icon_graph_scalar_op.png delete mode 100644 editor/icons/2x/icon_graph_scalar_uniform.png delete mode 100644 editor/icons/2x/icon_graph_scalars_to_vec.png delete mode 100644 editor/icons/2x/icon_graph_texscreen.png delete mode 100644 editor/icons/2x/icon_graph_texture_uniform.png delete mode 100644 editor/icons/2x/icon_graph_time.png delete mode 100644 editor/icons/2x/icon_graph_vec_dp.png delete mode 100644 editor/icons/2x/icon_graph_vec_interp.png delete mode 100644 editor/icons/2x/icon_graph_vec_length.png delete mode 100644 editor/icons/2x/icon_graph_vec_op.png delete mode 100644 editor/icons/2x/icon_graph_vec_scalar_op.png delete mode 100644 editor/icons/2x/icon_graph_vec_to_scalars.png delete mode 100644 editor/icons/2x/icon_graph_vecs_to_xform.png delete mode 100644 editor/icons/2x/icon_graph_vector.png delete mode 100644 editor/icons/2x/icon_graph_vector_uniform.png delete mode 100644 editor/icons/2x/icon_graph_xform.png delete mode 100644 editor/icons/2x/icon_graph_xform_mult.png delete mode 100644 editor/icons/2x/icon_graph_xform_scalar_func.png delete mode 100644 editor/icons/2x/icon_graph_xform_to_vecs.png delete mode 100644 editor/icons/2x/icon_graph_xform_uniform.png delete mode 100644 editor/icons/2x/icon_graph_xform_vec_func.png delete mode 100644 editor/icons/2x/icon_graph_xform_vec_imult.png delete mode 100644 editor/icons/2x/icon_graph_xform_vec_mult.png delete mode 100644 editor/icons/2x/icon_grid.png delete mode 100644 editor/icons/2x/icon_grid_container.png delete mode 100644 editor/icons/2x/icon_grid_map.png delete mode 100644 editor/icons/2x/icon_groove_joint_2d.png delete mode 100644 editor/icons/2x/icon_group.png delete mode 100644 editor/icons/2x/icon_groups.png delete mode 100644 editor/icons/2x/icon_gui_close_dark.png delete mode 100644 editor/icons/2x/icon_gui_close_light.png delete mode 100644 editor/icons/2x/icon_h_box_container.png delete mode 100644 editor/icons/2x/icon_h_button_array.png delete mode 100644 editor/icons/2x/icon_h_scroll_bar.png delete mode 100644 editor/icons/2x/icon_h_separator.png delete mode 100644 editor/icons/2x/icon_h_slider.png delete mode 100644 editor/icons/2x/icon_h_split_container.png delete mode 100644 editor/icons/2x/icon_h_t_t_p_request.png delete mode 100644 editor/icons/2x/icon_headphones.png delete mode 100644 editor/icons/2x/icon_help.png delete mode 100644 editor/icons/2x/icon_help_search.png delete mode 100644 editor/icons/2x/icon_hidden.png delete mode 100644 editor/icons/2x/icon_hinge_joint.png delete mode 100644 editor/icons/2x/icon_history.png delete mode 100644 editor/icons/2x/icon_hsize.png delete mode 100644 editor/icons/2x/icon_hslider_bg.png delete mode 100644 editor/icons/2x/icon_image.png delete mode 100644 editor/icons/2x/icon_image_sky_box.png delete mode 100644 editor/icons/2x/icon_image_texture.png delete mode 100644 editor/icons/2x/icon_immediate_geometry.png delete mode 100644 editor/icons/2x/icon_import_check.png delete mode 100644 editor/icons/2x/icon_import_fail.png delete mode 100644 editor/icons/2x/icon_instance.png delete mode 100644 editor/icons/2x/icon_instance_options.png delete mode 100644 editor/icons/2x/icon_integer.png delete mode 100644 editor/icons/2x/icon_interp_cubic.png delete mode 100644 editor/icons/2x/icon_interp_linear.png delete mode 100644 editor/icons/2x/icon_interp_raw.png delete mode 100644 editor/icons/2x/icon_interp_wrap_clamp.png delete mode 100644 editor/icons/2x/icon_interp_wrap_loop.png delete mode 100644 editor/icons/2x/icon_interpolated_camera.png delete mode 100644 editor/icons/2x/icon_invalid_key.png delete mode 100644 editor/icons/2x/icon_inverse_kinematics.png delete mode 100644 editor/icons/2x/icon_item_list.png delete mode 100644 editor/icons/2x/icon_joy_axis.png delete mode 100644 editor/icons/2x/icon_joy_button.png delete mode 100644 editor/icons/2x/icon_joypad.png delete mode 100644 editor/icons/2x/icon_key.png delete mode 100644 editor/icons/2x/icon_key_hover.png delete mode 100644 editor/icons/2x/icon_key_invalid.png delete mode 100644 editor/icons/2x/icon_key_next.png delete mode 100644 editor/icons/2x/icon_key_selected.png delete mode 100644 editor/icons/2x/icon_key_value.png delete mode 100644 editor/icons/2x/icon_key_xform.png delete mode 100644 editor/icons/2x/icon_keyboard.png delete mode 100644 editor/icons/2x/icon_kinematic_body.png delete mode 100644 editor/icons/2x/icon_kinematic_body_2d.png delete mode 100644 editor/icons/2x/icon_label.png delete mode 100644 editor/icons/2x/icon_large_texture.png delete mode 100644 editor/icons/2x/icon_light_2d.png delete mode 100644 editor/icons/2x/icon_light_occluder_2d.png delete mode 100644 editor/icons/2x/icon_line_2d.png delete mode 100644 editor/icons/2x/icon_line_edit.png delete mode 100644 editor/icons/2x/icon_line_shape_2d.png delete mode 100644 editor/icons/2x/icon_link_button.png delete mode 100644 editor/icons/2x/icon_list_select.png delete mode 100644 editor/icons/2x/icon_listener.png delete mode 100644 editor/icons/2x/icon_load.png delete mode 100644 editor/icons/2x/icon_lock.png delete mode 100644 editor/icons/2x/icon_loop.png delete mode 100644 editor/icons/2x/icon_loop_interpolation.png delete mode 100644 editor/icons/2x/icon_main_play.png delete mode 100644 editor/icons/2x/icon_main_stop.png delete mode 100644 editor/icons/2x/icon_margin_container.png delete mode 100644 editor/icons/2x/icon_material_preview_cube.png delete mode 100644 editor/icons/2x/icon_material_preview_cube_off.png delete mode 100644 editor/icons/2x/icon_material_preview_light_1.png delete mode 100644 editor/icons/2x/icon_material_preview_light_1_off.png delete mode 100644 editor/icons/2x/icon_material_preview_light_2.png delete mode 100644 editor/icons/2x/icon_material_preview_light_2_off.png delete mode 100644 editor/icons/2x/icon_material_preview_sphere.png delete mode 100644 editor/icons/2x/icon_material_preview_sphere_off.png delete mode 100644 editor/icons/2x/icon_material_shader.png delete mode 100644 editor/icons/2x/icon_material_shader_graph.png delete mode 100644 editor/icons/2x/icon_matrix.png delete mode 100644 editor/icons/2x/icon_menu_button.png delete mode 100644 editor/icons/2x/icon_mesh.png delete mode 100644 editor/icons/2x/icon_mesh_instance.png delete mode 100644 editor/icons/2x/icon_mesh_library.png delete mode 100644 editor/icons/2x/icon_mini_aabb.png delete mode 100644 editor/icons/2x/icon_mini_array.png delete mode 100644 editor/icons/2x/icon_mini_basis.png delete mode 100644 editor/icons/2x/icon_mini_boolean.png delete mode 100644 editor/icons/2x/icon_mini_color.png delete mode 100644 editor/icons/2x/icon_mini_color_array.png delete mode 100644 editor/icons/2x/icon_mini_dictionary.png delete mode 100644 editor/icons/2x/icon_mini_float.png delete mode 100644 editor/icons/2x/icon_mini_float_array.png delete mode 100644 editor/icons/2x/icon_mini_image.png delete mode 100644 editor/icons/2x/icon_mini_input.png delete mode 100644 editor/icons/2x/icon_mini_int_array.png delete mode 100644 editor/icons/2x/icon_mini_integer.png delete mode 100644 editor/icons/2x/icon_mini_matrix3.png delete mode 100644 editor/icons/2x/icon_mini_matrix32.png delete mode 100644 editor/icons/2x/icon_mini_object.png delete mode 100644 editor/icons/2x/icon_mini_path.png delete mode 100644 editor/icons/2x/icon_mini_plane.png delete mode 100644 editor/icons/2x/icon_mini_quat.png delete mode 100644 editor/icons/2x/icon_mini_raw_array.png delete mode 100644 editor/icons/2x/icon_mini_rect2.png delete mode 100644 editor/icons/2x/icon_mini_rid.png delete mode 100644 editor/icons/2x/icon_mini_string.png delete mode 100644 editor/icons/2x/icon_mini_string_array.png delete mode 100644 editor/icons/2x/icon_mini_transform.png delete mode 100644 editor/icons/2x/icon_mini_transform2D.png delete mode 100644 editor/icons/2x/icon_mini_variant.png delete mode 100644 editor/icons/2x/icon_mini_vector2.png delete mode 100644 editor/icons/2x/icon_mini_vector2_array.png delete mode 100644 editor/icons/2x/icon_mini_vector3.png delete mode 100644 editor/icons/2x/icon_mini_vector3_array.png delete mode 100644 editor/icons/2x/icon_mirror_x.png delete mode 100644 editor/icons/2x/icon_mirror_y.png delete mode 100644 editor/icons/2x/icon_mouse.png delete mode 100644 editor/icons/2x/icon_move_down.png delete mode 100644 editor/icons/2x/icon_move_point.png delete mode 100644 editor/icons/2x/icon_move_up.png delete mode 100644 editor/icons/2x/icon_multi_edit.png delete mode 100644 editor/icons/2x/icon_multi_line.png delete mode 100644 editor/icons/2x/icon_multi_mesh.png delete mode 100644 editor/icons/2x/icon_multi_mesh_instance.png delete mode 100644 editor/icons/2x/icon_multi_node_edit.png delete mode 100644 editor/icons/2x/icon_multi_script.png delete mode 100644 editor/icons/2x/icon_native_script.png delete mode 100644 editor/icons/2x/icon_navigation.png delete mode 100644 editor/icons/2x/icon_navigation_2d.png delete mode 100644 editor/icons/2x/icon_navigation_mesh.png delete mode 100644 editor/icons/2x/icon_navigation_mesh_instance.png delete mode 100644 editor/icons/2x/icon_navigation_polygon.png delete mode 100644 editor/icons/2x/icon_navigation_polygon_instance.png delete mode 100644 editor/icons/2x/icon_new.png delete mode 100644 editor/icons/2x/icon_nine_patch_rect.png delete mode 100644 editor/icons/2x/icon_node.png delete mode 100644 editor/icons/2x/icon_node_2d.png delete mode 100644 editor/icons/2x/icon_node_warning.png delete mode 100644 editor/icons/2x/icon_non_favorite.png delete mode 100644 editor/icons/2x/icon_object.png delete mode 100644 editor/icons/2x/icon_occluder_polygon_2d.png delete mode 100644 editor/icons/2x/icon_omni_light.png delete mode 100644 editor/icons/2x/icon_open.png delete mode 100644 editor/icons/2x/icon_option_arrow.png delete mode 100644 editor/icons/2x/icon_option_button.png delete mode 100644 editor/icons/2x/icon_override.png delete mode 100644 editor/icons/2x/icon_p_hash_translation.png delete mode 100644 editor/icons/2x/icon_packed_data_container.png delete mode 100644 editor/icons/2x/icon_packed_scene.png delete mode 100644 editor/icons/2x/icon_panel.png delete mode 100644 editor/icons/2x/icon_panel_container.png delete mode 100644 editor/icons/2x/icon_panels_1.png delete mode 100644 editor/icons/2x/icon_panels_2.png delete mode 100644 editor/icons/2x/icon_panels_2_alt.png delete mode 100644 editor/icons/2x/icon_panels_3.png delete mode 100644 editor/icons/2x/icon_panels_3_alt.png delete mode 100644 editor/icons/2x/icon_panels_4.png delete mode 100644 editor/icons/2x/icon_panorama_sky.png delete mode 100644 editor/icons/2x/icon_parallax_background.png delete mode 100644 editor/icons/2x/icon_parallax_layer.png delete mode 100644 editor/icons/2x/icon_particle_attractor_2d.png delete mode 100644 editor/icons/2x/icon_particles.png delete mode 100644 editor/icons/2x/icon_particles_2d.png delete mode 100644 editor/icons/2x/icon_particles_material.png delete mode 100644 editor/icons/2x/icon_particles_shader.png delete mode 100644 editor/icons/2x/icon_patch_9_rect.png delete mode 100644 editor/icons/2x/icon_path.png delete mode 100644 editor/icons/2x/icon_path_2d.png delete mode 100644 editor/icons/2x/icon_path_follow.png delete mode 100644 editor/icons/2x/icon_path_follow_2d.png delete mode 100644 editor/icons/2x/icon_pause.png delete mode 100644 editor/icons/2x/icon_pin.png delete mode 100644 editor/icons/2x/icon_pin_joint.png delete mode 100644 editor/icons/2x/icon_pin_joint_2d.png delete mode 100644 editor/icons/2x/icon_pin_pressed.png delete mode 100644 editor/icons/2x/icon_plane.png delete mode 100644 editor/icons/2x/icon_plane_mesh.png delete mode 100644 editor/icons/2x/icon_plane_shape.png delete mode 100644 editor/icons/2x/icon_play.png delete mode 100644 editor/icons/2x/icon_play_backwards.png delete mode 100644 editor/icons/2x/icon_play_button_group.png delete mode 100644 editor/icons/2x/icon_play_custom.png delete mode 100644 editor/icons/2x/icon_play_scene.png delete mode 100644 editor/icons/2x/icon_play_start.png delete mode 100644 editor/icons/2x/icon_play_start_backwards.png delete mode 100644 editor/icons/2x/icon_polygon_2d.png delete mode 100644 editor/icons/2x/icon_polygon_path_finder.png delete mode 100644 editor/icons/2x/icon_popup.png delete mode 100644 editor/icons/2x/icon_popup_dialog.png delete mode 100644 editor/icons/2x/icon_popup_menu.png delete mode 100644 editor/icons/2x/icon_popup_panel.png delete mode 100644 editor/icons/2x/icon_portal.png delete mode 100644 editor/icons/2x/icon_position_2d.png delete mode 100644 editor/icons/2x/icon_position_3d.png delete mode 100644 editor/icons/2x/icon_prism_mesh.png delete mode 100644 editor/icons/2x/icon_procedural_sky.png delete mode 100644 editor/icons/2x/icon_progress_1.png delete mode 100644 editor/icons/2x/icon_progress_2.png delete mode 100644 editor/icons/2x/icon_progress_3.png delete mode 100644 editor/icons/2x/icon_progress_4.png delete mode 100644 editor/icons/2x/icon_progress_5.png delete mode 100644 editor/icons/2x/icon_progress_6.png delete mode 100644 editor/icons/2x/icon_progress_7.png delete mode 100644 editor/icons/2x/icon_progress_8.png delete mode 100644 editor/icons/2x/icon_progress_bar.png delete mode 100644 editor/icons/2x/icon_proximity_group.png delete mode 100644 editor/icons/2x/icon_quad.png delete mode 100644 editor/icons/2x/icon_quad_mesh.png delete mode 100644 editor/icons/2x/icon_quat.png delete mode 100644 editor/icons/2x/icon_range.png delete mode 100644 editor/icons/2x/icon_rating_no_star.png delete mode 100644 editor/icons/2x/icon_rating_star.png delete mode 100644 editor/icons/2x/icon_ray_cast.png delete mode 100644 editor/icons/2x/icon_ray_cast_2d.png delete mode 100644 editor/icons/2x/icon_ray_shape.png delete mode 100644 editor/icons/2x/icon_ray_shape_2d.png delete mode 100644 editor/icons/2x/icon_rayito.png delete mode 100644 editor/icons/2x/icon_real.png delete mode 100644 editor/icons/2x/icon_rectangle_shape_2d.png delete mode 100644 editor/icons/2x/icon_reference_rect.png delete mode 100644 editor/icons/2x/icon_reflection_probe.png delete mode 100644 editor/icons/2x/icon_region_edit.png delete mode 100644 editor/icons/2x/icon_reload.png delete mode 100644 editor/icons/2x/icon_reload_small.png delete mode 100644 editor/icons/2x/icon_remote.png delete mode 100644 editor/icons/2x/icon_remote_transform.png delete mode 100644 editor/icons/2x/icon_remote_transform_2d.png delete mode 100644 editor/icons/2x/icon_remove.png delete mode 100644 editor/icons/2x/icon_rename.png delete mode 100644 editor/icons/2x/icon_reparent.png delete mode 100644 editor/icons/2x/icon_resource_preloader.png delete mode 100644 editor/icons/2x/icon_rich_text_label.png delete mode 100644 editor/icons/2x/icon_rigid_body.png delete mode 100644 editor/icons/2x/icon_rigid_body_2d.png delete mode 100644 editor/icons/2x/icon_room.png delete mode 100644 editor/icons/2x/icon_room_bounds.png delete mode 100644 editor/icons/2x/icon_rotate_0.png delete mode 100644 editor/icons/2x/icon_rotate_180.png delete mode 100644 editor/icons/2x/icon_rotate_270.png delete mode 100644 editor/icons/2x/icon_rotate_90.png delete mode 100644 editor/icons/2x/icon_sample.png delete mode 100644 editor/icons/2x/icon_sample_library.png delete mode 100644 editor/icons/2x/icon_sample_player.png delete mode 100644 editor/icons/2x/icon_sample_player_2d.png delete mode 100644 editor/icons/2x/icon_save.png delete mode 100644 editor/icons/2x/icon_script.png delete mode 100644 editor/icons/2x/icon_script_create.png delete mode 100644 editor/icons/2x/icon_script_remove.png delete mode 100644 editor/icons/2x/icon_scroll_bar.png delete mode 100644 editor/icons/2x/icon_scroll_container.png delete mode 100644 editor/icons/2x/icon_search.png delete mode 100644 editor/icons/2x/icon_segment_shape_2d.png delete mode 100644 editor/icons/2x/icon_shader.png delete mode 100644 editor/icons/2x/icon_shader_material.png delete mode 100644 editor/icons/2x/icon_short_cut.png delete mode 100644 editor/icons/2x/icon_signal.png delete mode 100644 editor/icons/2x/icon_skeleton.png delete mode 100644 editor/icons/2x/icon_slider_grabber.png delete mode 100644 editor/icons/2x/icon_slider_grabber_hl.png delete mode 100644 editor/icons/2x/icon_slider_joint.png delete mode 100644 editor/icons/2x/icon_slot.png delete mode 100644 editor/icons/2x/icon_snap.png delete mode 100644 editor/icons/2x/icon_sound_room_params.png delete mode 100644 editor/icons/2x/icon_spatial.png delete mode 100644 editor/icons/2x/icon_spatial_material.png delete mode 100644 editor/icons/2x/icon_spatial_sample_player.png delete mode 100644 editor/icons/2x/icon_spatial_shader.png delete mode 100644 editor/icons/2x/icon_spatial_stream_player.png delete mode 100644 editor/icons/2x/icon_sphere_mesh.png delete mode 100644 editor/icons/2x/icon_sphere_shape.png delete mode 100644 editor/icons/2x/icon_spin_box.png delete mode 100644 editor/icons/2x/icon_spinbox_updown.png delete mode 100644 editor/icons/2x/icon_spot_light.png delete mode 100644 editor/icons/2x/icon_sprite.png delete mode 100644 editor/icons/2x/icon_sprite_3d.png delete mode 100644 editor/icons/2x/icon_sprite_frames.png delete mode 100644 editor/icons/2x/icon_static_body.png delete mode 100644 editor/icons/2x/icon_static_body_2d.png delete mode 100644 editor/icons/2x/icon_stream_player.png delete mode 100644 editor/icons/2x/icon_stream_texture.png delete mode 100644 editor/icons/2x/icon_string.png delete mode 100644 editor/icons/2x/icon_style_box_empty.png delete mode 100644 editor/icons/2x/icon_style_box_flat.png delete mode 100644 editor/icons/2x/icon_style_box_texture.png delete mode 100644 editor/icons/2x/icon_tab_container.png delete mode 100644 editor/icons/2x/icon_tab_menu.png delete mode 100644 editor/icons/2x/icon_tabs.png delete mode 100644 editor/icons/2x/icon_test_cube.png delete mode 100644 editor/icons/2x/icon_text_edit.png delete mode 100644 editor/icons/2x/icon_texture.png delete mode 100644 editor/icons/2x/icon_texture_button.png delete mode 100644 editor/icons/2x/icon_texture_progress.png delete mode 100644 editor/icons/2x/icon_texture_rect.png delete mode 100644 editor/icons/2x/icon_theme.png delete mode 100644 editor/icons/2x/icon_tile_map.png delete mode 100644 editor/icons/2x/icon_tile_set.png delete mode 100644 editor/icons/2x/icon_timer.png delete mode 100644 editor/icons/2x/icon_tool_button.png delete mode 100644 editor/icons/2x/icon_tool_move.png delete mode 100644 editor/icons/2x/icon_tool_pan.png delete mode 100644 editor/icons/2x/icon_tool_rotate.png delete mode 100644 editor/icons/2x/icon_tool_scale.png delete mode 100644 editor/icons/2x/icon_tool_select.png delete mode 100644 editor/icons/2x/icon_tools.png delete mode 100644 editor/icons/2x/icon_touch_screen_button.png delete mode 100644 editor/icons/2x/icon_track_add_key.png delete mode 100644 editor/icons/2x/icon_track_add_key_hl.png delete mode 100644 editor/icons/2x/icon_track_continuous.png delete mode 100644 editor/icons/2x/icon_track_discrete.png delete mode 100644 editor/icons/2x/icon_track_trigger.png delete mode 100644 editor/icons/2x/icon_translation.png delete mode 100644 editor/icons/2x/icon_transparent.png delete mode 100644 editor/icons/2x/icon_transpose.png delete mode 100644 editor/icons/2x/icon_tree.png delete mode 100644 editor/icons/2x/icon_tree_arrow_down.png delete mode 100644 editor/icons/2x/icon_tree_arrow_right.png delete mode 100644 editor/icons/2x/icon_tween.png delete mode 100644 editor/icons/2x/icon_unbone.png delete mode 100644 editor/icons/2x/icon_unchecked.png delete mode 100644 editor/icons/2x/icon_ungroup.png delete mode 100644 editor/icons/2x/icon_uninstance.png delete mode 100644 editor/icons/2x/icon_unlock.png delete mode 100644 editor/icons/2x/icon_uv.png delete mode 100644 editor/icons/2x/icon_v_box_container.png delete mode 100644 editor/icons/2x/icon_v_button_array.png delete mode 100644 editor/icons/2x/icon_v_scroll_bar.png delete mode 100644 editor/icons/2x/icon_v_separator.png delete mode 100644 editor/icons/2x/icon_v_slider.png delete mode 100644 editor/icons/2x/icon_v_split_container.png delete mode 100644 editor/icons/2x/icon_variant.png delete mode 100644 editor/icons/2x/icon_vector.png delete mode 100644 editor/icons/2x/icon_vector2.png delete mode 100644 editor/icons/2x/icon_vehicle_body.png delete mode 100644 editor/icons/2x/icon_vehicle_wheel.png delete mode 100644 editor/icons/2x/icon_video_player.png delete mode 100644 editor/icons/2x/icon_viewport.png delete mode 100644 editor/icons/2x/icon_viewport_container.png delete mode 100644 editor/icons/2x/icon_viewport_sprite.png delete mode 100644 editor/icons/2x/icon_viewport_texture.png delete mode 100644 editor/icons/2x/icon_visibility_enabler.png delete mode 100644 editor/icons/2x/icon_visibility_enabler_2d.png delete mode 100644 editor/icons/2x/icon_visibility_notifier.png delete mode 100644 editor/icons/2x/icon_visibility_notifier_2d.png delete mode 100644 editor/icons/2x/icon_visible.png delete mode 100644 editor/icons/2x/icon_visual_script.png delete mode 100644 editor/icons/2x/icon_visual_shader_port.png delete mode 100644 editor/icons/2x/icon_vslider_bg.png delete mode 100644 editor/icons/2x/icon_vu_empty.png delete mode 100644 editor/icons/2x/icon_vu_full.png delete mode 100644 editor/icons/2x/icon_warning.png delete mode 100644 editor/icons/2x/icon_window_dialog.png delete mode 100644 editor/icons/2x/icon_world.png delete mode 100644 editor/icons/2x/icon_world_2d.png delete mode 100644 editor/icons/2x/icon_world_environment.png delete mode 100644 editor/icons/2x/icon_y_sort.png delete mode 100644 editor/icons/2x/icon_zoom.png delete mode 100644 editor/icons/2x/icon_zoom_less.png delete mode 100644 editor/icons/2x/icon_zoom_more.png delete mode 100644 editor/icons/2x/icon_zoom_reset.png create mode 100644 editor/icons/dark/icon_2_d.svg create mode 100644 editor/icons/dark/icon_3_d.svg create mode 100644 editor/icons/dark/icon_GUI_checked.svg create mode 100644 editor/icons/dark/icon_GUI_dropdown.svg create mode 100644 editor/icons/dark/icon_GUI_hslider_bg.svg create mode 100644 editor/icons/dark/icon_GUI_hsplitter.svg create mode 100644 editor/icons/dark/icon_GUI_mini_tab_menu.svg create mode 100644 editor/icons/dark/icon_GUI_option_arrow.svg create mode 100644 editor/icons/dark/icon_GUI_play_button_group.svg create mode 100644 editor/icons/dark/icon_GUI_progress_bar.svg create mode 100644 editor/icons/dark/icon_GUI_progress_fill.svg create mode 100644 editor/icons/dark/icon_GUI_radio_checked.svg create mode 100644 editor/icons/dark/icon_GUI_radio_unchecked.svg create mode 100644 editor/icons/dark/icon_GUI_scroll_bg.svg create mode 100644 editor/icons/dark/icon_GUI_scroll_grabber.svg create mode 100644 editor/icons/dark/icon_GUI_scroll_grabber_hl.svg create mode 100644 editor/icons/dark/icon_GUI_scroll_grabber_pressed.svg create mode 100644 editor/icons/dark/icon_GUI_slider_grabber.svg create mode 100644 editor/icons/dark/icon_GUI_slider_grabber_hl.svg create mode 100644 editor/icons/dark/icon_GUI_spinbox_updown.svg create mode 100644 editor/icons/dark/icon_GUI_tab_menu.svg create mode 100644 editor/icons/dark/icon_GUI_toggle_off.svg create mode 100644 editor/icons/dark/icon_GUI_toggle_on.svg create mode 100644 editor/icons/dark/icon_GUI_tree_arrow_down.svg create mode 100644 editor/icons/dark/icon_GUI_tree_arrow_right.svg create mode 100644 editor/icons/dark/icon_GUI_unchecked.svg create mode 100644 editor/icons/dark/icon_GUI_vslider_bg.svg create mode 100644 editor/icons/dark/icon_GUI_vsplit_bg.svg create mode 100644 editor/icons/dark/icon_GUI_vsplitter.svg create mode 100644 editor/icons/dark/icon_accept_dialog.svg create mode 100644 editor/icons/dark/icon_add.svg create mode 100644 editor/icons/dark/icon_anchor.svg create mode 100644 editor/icons/dark/icon_animated_sprite.svg create mode 100644 editor/icons/dark/icon_animated_sprite_3d.svg create mode 100644 editor/icons/dark/icon_animation.svg create mode 100644 editor/icons/dark/icon_animation_player.svg create mode 100644 editor/icons/dark/icon_animation_tree_player.svg create mode 100644 editor/icons/dark/icon_area.svg create mode 100644 editor/icons/dark/icon_area_2d.svg create mode 100644 editor/icons/dark/icon_arrow_left.svg create mode 100644 editor/icons/dark/icon_arrow_right.svg create mode 100644 editor/icons/dark/icon_arrow_up.svg create mode 100644 editor/icons/dark/icon_asset_lib.svg create mode 100644 editor/icons/dark/icon_atlas_texture.svg create mode 100644 editor/icons/dark/icon_audio_bus_bypass.svg create mode 100644 editor/icons/dark/icon_audio_bus_layout.svg create mode 100644 editor/icons/dark/icon_audio_bus_mute.svg create mode 100644 editor/icons/dark/icon_audio_bus_solo.svg create mode 100644 editor/icons/dark/icon_audio_effect_amplify.svg create mode 100644 editor/icons/dark/icon_audio_stream_gibberish.svg create mode 100644 editor/icons/dark/icon_audio_stream_player.svg create mode 100644 editor/icons/dark/icon_audio_stream_player_2_d.svg create mode 100644 editor/icons/dark/icon_audio_stream_player_3_d.svg create mode 100644 editor/icons/dark/icon_audio_stream_sample.svg create mode 100644 editor/icons/dark/icon_auto_play.svg create mode 100644 editor/icons/dark/icon_back.svg create mode 100644 editor/icons/dark/icon_back_buffer_copy.svg create mode 100644 editor/icons/dark/icon_bake.svg create mode 100644 editor/icons/dark/icon_baked_light.svg create mode 100644 editor/icons/dark/icon_baked_light_instance.svg create mode 100644 editor/icons/dark/icon_baked_light_sampler.svg create mode 100644 editor/icons/dark/icon_bit_map.svg create mode 100644 editor/icons/dark/icon_bitmap_font.svg create mode 100644 editor/icons/dark/icon_blend.svg create mode 100644 editor/icons/dark/icon_bone.svg create mode 100644 editor/icons/dark/icon_bone_attachment.svg create mode 100644 editor/icons/dark/icon_bone_track.svg create mode 100644 editor/icons/dark/icon_bool.svg create mode 100644 editor/icons/dark/icon_box_shape.svg create mode 100644 editor/icons/dark/icon_bus_vu_db.svg create mode 100644 editor/icons/dark/icon_bus_vu_empty.svg create mode 100644 editor/icons/dark/icon_bus_vu_frozen.svg create mode 100644 editor/icons/dark/icon_bus_vu_full.svg create mode 100644 editor/icons/dark/icon_button.svg create mode 100644 editor/icons/dark/icon_button_group.svg create mode 100644 editor/icons/dark/icon_camera.svg create mode 100644 editor/icons/dark/icon_camera_2d.svg create mode 100644 editor/icons/dark/icon_canvas_item.svg create mode 100644 editor/icons/dark/icon_canvas_item_material.svg create mode 100644 editor/icons/dark/icon_canvas_item_shader.svg create mode 100644 editor/icons/dark/icon_canvas_item_shader_graph.svg create mode 100644 editor/icons/dark/icon_canvas_layer.svg create mode 100644 editor/icons/dark/icon_canvas_modulate.svg create mode 100644 editor/icons/dark/icon_capsule_mesh.svg create mode 100644 editor/icons/dark/icon_capsule_shape.svg create mode 100644 editor/icons/dark/icon_capsule_shape_2d.svg create mode 100644 editor/icons/dark/icon_center_container.svg create mode 100644 editor/icons/dark/icon_check_box.svg create mode 100644 editor/icons/dark/icon_check_button.svg create mode 100644 editor/icons/dark/icon_circle_shape_2d.svg create mode 100644 editor/icons/dark/icon_class_list.svg create mode 100644 editor/icons/dark/icon_close.svg create mode 100644 editor/icons/dark/icon_collapse.svg create mode 100644 editor/icons/dark/icon_collision_2d.svg create mode 100644 editor/icons/dark/icon_collision_polygon.svg create mode 100644 editor/icons/dark/icon_collision_shape.svg create mode 100644 editor/icons/dark/icon_collision_shape_2d.svg create mode 100644 editor/icons/dark/icon_color.svg create mode 100644 editor/icons/dark/icon_color_pick.svg create mode 100644 editor/icons/dark/icon_color_picker.svg create mode 100644 editor/icons/dark/icon_color_picker_button.svg create mode 100644 editor/icons/dark/icon_color_ramp.svg create mode 100644 editor/icons/dark/icon_color_rect.svg create mode 100644 editor/icons/dark/icon_concave_polygon_shape.svg create mode 100644 editor/icons/dark/icon_concave_polygon_shape_2d.svg create mode 100644 editor/icons/dark/icon_cone_twist_joint.svg create mode 100644 editor/icons/dark/icon_confirmation_dialog.svg create mode 100644 editor/icons/dark/icon_connect.svg create mode 100644 editor/icons/dark/icon_connection_and_groups.svg create mode 100644 editor/icons/dark/icon_container.svg create mode 100644 editor/icons/dark/icon_control.svg create mode 100644 editor/icons/dark/icon_control_align_bottom_center.svg create mode 100644 editor/icons/dark/icon_control_align_bottom_left.svg create mode 100644 editor/icons/dark/icon_control_align_bottom_right.svg create mode 100644 editor/icons/dark/icon_control_align_bottom_wide.svg create mode 100644 editor/icons/dark/icon_control_align_center.svg create mode 100644 editor/icons/dark/icon_control_align_center_left.svg create mode 100644 editor/icons/dark/icon_control_align_center_right.svg create mode 100644 editor/icons/dark/icon_control_align_left_center.svg create mode 100644 editor/icons/dark/icon_control_align_left_wide.svg create mode 100644 editor/icons/dark/icon_control_align_right_center.svg create mode 100644 editor/icons/dark/icon_control_align_right_wide.svg create mode 100644 editor/icons/dark/icon_control_align_top_center.svg create mode 100644 editor/icons/dark/icon_control_align_top_left.svg create mode 100644 editor/icons/dark/icon_control_align_top_right.svg create mode 100644 editor/icons/dark/icon_control_align_top_wide.svg create mode 100644 editor/icons/dark/icon_control_align_wide.svg create mode 100644 editor/icons/dark/icon_control_hcenter_wide.svg create mode 100644 editor/icons/dark/icon_control_vcenter_wide.svg create mode 100644 editor/icons/dark/icon_convex_polygon_shape.svg create mode 100644 editor/icons/dark/icon_convex_polygon_shape_2d.svg create mode 100644 editor/icons/dark/icon_copy_node_path.svg create mode 100644 editor/icons/dark/icon_create_new_scene_from.svg create mode 100644 editor/icons/dark/icon_cube_map.svg create mode 100644 editor/icons/dark/icon_cube_mesh.svg create mode 100644 editor/icons/dark/icon_curve.svg create mode 100644 editor/icons/dark/icon_curve_2d.svg create mode 100644 editor/icons/dark/icon_curve_3d.svg create mode 100644 editor/icons/dark/icon_curve_close.svg create mode 100644 editor/icons/dark/icon_curve_constant.svg create mode 100644 editor/icons/dark/icon_curve_create.svg create mode 100644 editor/icons/dark/icon_curve_curve.svg create mode 100644 editor/icons/dark/icon_curve_delete.svg create mode 100644 editor/icons/dark/icon_curve_edit.svg create mode 100644 editor/icons/dark/icon_curve_in.svg create mode 100644 editor/icons/dark/icon_curve_in_out.svg create mode 100644 editor/icons/dark/icon_curve_linear.svg create mode 100644 editor/icons/dark/icon_curve_out.svg create mode 100644 editor/icons/dark/icon_curve_out_in.svg create mode 100644 editor/icons/dark/icon_curve_texture.svg create mode 100644 editor/icons/dark/icon_cylinder_mesh.svg create mode 100644 editor/icons/dark/icon_damped_spring_joint_2d.svg create mode 100644 editor/icons/dark/icon_debug.svg create mode 100644 editor/icons/dark/icon_debug_continue.svg create mode 100644 editor/icons/dark/icon_debug_next.svg create mode 100644 editor/icons/dark/icon_debug_step.svg create mode 100644 editor/icons/dark/icon_dependency_changed.svg create mode 100644 editor/icons/dark/icon_dependency_changed_hl.svg create mode 100644 editor/icons/dark/icon_dependency_local_changed.svg create mode 100644 editor/icons/dark/icon_dependency_local_changed_hl.svg create mode 100644 editor/icons/dark/icon_dependency_ok.svg create mode 100644 editor/icons/dark/icon_dependency_ok_hl.svg create mode 100644 editor/icons/dark/icon_directional_light.svg create mode 100644 editor/icons/dark/icon_distraction_free.svg create mode 100644 editor/icons/dark/icon_duplicate.svg create mode 100644 editor/icons/dark/icon_dynamic_font.svg create mode 100644 editor/icons/dark/icon_dynamic_font_data.svg create mode 100644 editor/icons/dark/icon_edit.svg create mode 100644 editor/icons/dark/icon_edit_key.svg create mode 100644 editor/icons/dark/icon_edit_pivot.svg create mode 100644 editor/icons/dark/icon_edit_resource.svg create mode 100644 editor/icons/dark/icon_editor_3d_handle.svg create mode 100644 editor/icons/dark/icon_editor_control_anchor.svg create mode 100644 editor/icons/dark/icon_editor_handle.svg create mode 100644 editor/icons/dark/icon_editor_pivot.svg create mode 100644 editor/icons/dark/icon_editor_plugin.svg create mode 100644 editor/icons/dark/icon_environment.svg create mode 100644 editor/icons/dark/icon_error.svg create mode 100644 editor/icons/dark/icon_error_sign.svg create mode 100644 editor/icons/dark/icon_event_player.svg create mode 100644 editor/icons/dark/icon_favorites.svg create mode 100644 editor/icons/dark/icon_file_big.svg create mode 100644 editor/icons/dark/icon_file_dialog.svg create mode 100644 editor/icons/dark/icon_file_list.svg create mode 100644 editor/icons/dark/icon_file_server.svg create mode 100644 editor/icons/dark/icon_file_server_active.svg create mode 100644 editor/icons/dark/icon_file_thumbnail.svg create mode 100644 editor/icons/dark/icon_fixed_material.svg create mode 100644 editor/icons/dark/icon_fixed_spatial_material.svg create mode 100644 editor/icons/dark/icon_folder.svg create mode 100644 editor/icons/dark/icon_folder_big.svg create mode 100644 editor/icons/dark/icon_font.svg create mode 100644 editor/icons/dark/icon_forward.svg create mode 100644 editor/icons/dark/icon_g_d_native_library.svg create mode 100644 editor/icons/dark/icon_g_d_script.svg create mode 100644 editor/icons/dark/icon_g_i_probe.svg create mode 100644 editor/icons/dark/icon_g_i_probe_data.svg create mode 100644 editor/icons/dark/icon_generic_6_d_o_f_joint.svg create mode 100644 editor/icons/dark/icon_gizmo_directional_light.svg create mode 100644 editor/icons/dark/icon_gizmo_light.svg create mode 100644 editor/icons/dark/icon_gizmo_listener.svg create mode 100644 editor/icons/dark/icon_gizmo_spatial_sample_player.svg create mode 100644 editor/icons/dark/icon_gizmo_spatial_stream_player.svg create mode 100644 editor/icons/dark/icon_godot.svg create mode 100644 editor/icons/dark/icon_gradient.svg create mode 100644 editor/icons/dark/icon_gradient_texture.svg create mode 100644 editor/icons/dark/icon_graph_comment.svg create mode 100644 editor/icons/dark/icon_graph_cube_uniform.svg create mode 100644 editor/icons/dark/icon_graph_curve_map.svg create mode 100644 editor/icons/dark/icon_graph_default_texture.svg create mode 100644 editor/icons/dark/icon_graph_edit.svg create mode 100644 editor/icons/dark/icon_graph_input.svg create mode 100644 editor/icons/dark/icon_graph_node.svg create mode 100644 editor/icons/dark/icon_graph_rgb.svg create mode 100644 editor/icons/dark/icon_graph_rgb_op.svg create mode 100644 editor/icons/dark/icon_graph_rgb_uniform.svg create mode 100644 editor/icons/dark/icon_graph_scalar.svg create mode 100644 editor/icons/dark/icon_graph_scalar_interp.svg create mode 100644 editor/icons/dark/icon_graph_scalar_op.svg create mode 100644 editor/icons/dark/icon_graph_scalar_uniform.svg create mode 100644 editor/icons/dark/icon_graph_scalars_to_vec.svg create mode 100644 editor/icons/dark/icon_graph_texscreen.svg create mode 100644 editor/icons/dark/icon_graph_texture_uniform.svg create mode 100644 editor/icons/dark/icon_graph_time.svg create mode 100644 editor/icons/dark/icon_graph_vec_dp.svg create mode 100644 editor/icons/dark/icon_graph_vec_interp.svg create mode 100644 editor/icons/dark/icon_graph_vec_length.svg create mode 100644 editor/icons/dark/icon_graph_vec_op.svg create mode 100644 editor/icons/dark/icon_graph_vec_scalar_op.svg create mode 100644 editor/icons/dark/icon_graph_vec_to_scalars.svg create mode 100644 editor/icons/dark/icon_graph_vecs_to_xform.svg create mode 100644 editor/icons/dark/icon_graph_vector.svg create mode 100644 editor/icons/dark/icon_graph_vector_uniform.svg create mode 100644 editor/icons/dark/icon_graph_xform.svg create mode 100644 editor/icons/dark/icon_graph_xform_mult.svg create mode 100644 editor/icons/dark/icon_graph_xform_scalar_func.svg create mode 100644 editor/icons/dark/icon_graph_xform_to_vecs.svg create mode 100644 editor/icons/dark/icon_graph_xform_uniform.svg create mode 100644 editor/icons/dark/icon_graph_xform_vec_func.svg create mode 100644 editor/icons/dark/icon_graph_xform_vec_imult.svg create mode 100644 editor/icons/dark/icon_graph_xform_vec_mult.svg create mode 100644 editor/icons/dark/icon_grid.svg create mode 100644 editor/icons/dark/icon_grid_container.svg create mode 100644 editor/icons/dark/icon_grid_map.svg create mode 100644 editor/icons/dark/icon_groove_joint_2d.svg create mode 100644 editor/icons/dark/icon_group.svg create mode 100644 editor/icons/dark/icon_groups.svg create mode 100644 editor/icons/dark/icon_gui_close.svg create mode 100644 editor/icons/dark/icon_h_box_container.svg create mode 100644 editor/icons/dark/icon_h_button_array.svg create mode 100644 editor/icons/dark/icon_h_scroll_bar.svg create mode 100644 editor/icons/dark/icon_h_separator.svg create mode 100644 editor/icons/dark/icon_h_slider.svg create mode 100644 editor/icons/dark/icon_h_split_container.svg create mode 100644 editor/icons/dark/icon_h_t_t_p_request.svg create mode 100644 editor/icons/dark/icon_headphones.svg create mode 100644 editor/icons/dark/icon_help.svg create mode 100644 editor/icons/dark/icon_help_search.svg create mode 100644 editor/icons/dark/icon_hidden.svg create mode 100644 editor/icons/dark/icon_hinge_joint.svg create mode 100644 editor/icons/dark/icon_history.svg create mode 100644 editor/icons/dark/icon_hsize.svg create mode 100644 editor/icons/dark/icon_image.svg create mode 100644 editor/icons/dark/icon_image_texture.svg create mode 100644 editor/icons/dark/icon_immediate_geometry.svg create mode 100644 editor/icons/dark/icon_import_check.svg create mode 100644 editor/icons/dark/icon_import_fail.svg create mode 100644 editor/icons/dark/icon_instance.svg create mode 100644 editor/icons/dark/icon_instance_options.svg create mode 100644 editor/icons/dark/icon_integer.svg create mode 100644 editor/icons/dark/icon_interp_cubic.svg create mode 100644 editor/icons/dark/icon_interp_linear.svg create mode 100644 editor/icons/dark/icon_interp_raw.svg create mode 100644 editor/icons/dark/icon_interp_wrap_clamp.svg create mode 100644 editor/icons/dark/icon_interp_wrap_loop.svg create mode 100644 editor/icons/dark/icon_interpolated_camera.svg create mode 100644 editor/icons/dark/icon_invalid_key.svg create mode 100644 editor/icons/dark/icon_inverse_kinematics.svg create mode 100644 editor/icons/dark/icon_item_list.svg create mode 100644 editor/icons/dark/icon_joy_axis.svg create mode 100644 editor/icons/dark/icon_joy_button.svg create mode 100644 editor/icons/dark/icon_joypad.svg create mode 100644 editor/icons/dark/icon_key.svg create mode 100644 editor/icons/dark/icon_key_hover.svg create mode 100644 editor/icons/dark/icon_key_invalid.svg create mode 100644 editor/icons/dark/icon_key_next.svg create mode 100644 editor/icons/dark/icon_key_selected.svg create mode 100644 editor/icons/dark/icon_key_value.svg create mode 100644 editor/icons/dark/icon_key_xform.svg create mode 100644 editor/icons/dark/icon_keyboard.svg create mode 100644 editor/icons/dark/icon_kinematic_body.svg create mode 100644 editor/icons/dark/icon_kinematic_body_2d.svg create mode 100644 editor/icons/dark/icon_label.svg create mode 100644 editor/icons/dark/icon_large_texture.svg create mode 100644 editor/icons/dark/icon_light_2d.svg create mode 100644 editor/icons/dark/icon_light_occluder_2d.svg create mode 100644 editor/icons/dark/icon_line_2d.svg create mode 100644 editor/icons/dark/icon_line_edit.svg create mode 100644 editor/icons/dark/icon_line_shape_2d.svg create mode 100644 editor/icons/dark/icon_link_button.svg create mode 100644 editor/icons/dark/icon_list_select.svg create mode 100644 editor/icons/dark/icon_listener.svg create mode 100644 editor/icons/dark/icon_load.svg create mode 100644 editor/icons/dark/icon_lock.svg create mode 100644 editor/icons/dark/icon_loop.svg create mode 100644 editor/icons/dark/icon_loop_interpolation.svg create mode 100644 editor/icons/dark/icon_main_play.svg create mode 100644 editor/icons/dark/icon_main_stop.svg create mode 100644 editor/icons/dark/icon_margin_container.svg create mode 100644 editor/icons/dark/icon_material_preview_cube.svg create mode 100644 editor/icons/dark/icon_material_preview_cube_off.svg create mode 100644 editor/icons/dark/icon_material_preview_light_1.svg create mode 100644 editor/icons/dark/icon_material_preview_light_1_off.svg create mode 100644 editor/icons/dark/icon_material_preview_light_2.svg create mode 100644 editor/icons/dark/icon_material_preview_light_2_off.svg create mode 100644 editor/icons/dark/icon_material_preview_sphere.svg create mode 100644 editor/icons/dark/icon_material_preview_sphere_off.svg create mode 100644 editor/icons/dark/icon_matrix.svg create mode 100644 editor/icons/dark/icon_menu_button.svg create mode 100644 editor/icons/dark/icon_mesh.svg create mode 100644 editor/icons/dark/icon_mesh_instance.svg create mode 100644 editor/icons/dark/icon_mesh_library.svg create mode 100644 editor/icons/dark/icon_mini_aabb.svg create mode 100644 editor/icons/dark/icon_mini_array.svg create mode 100644 editor/icons/dark/icon_mini_basis.svg create mode 100644 editor/icons/dark/icon_mini_boolean.svg create mode 100644 editor/icons/dark/icon_mini_color.svg create mode 100644 editor/icons/dark/icon_mini_color_array.svg create mode 100644 editor/icons/dark/icon_mini_dictionary.svg create mode 100644 editor/icons/dark/icon_mini_float.svg create mode 100644 editor/icons/dark/icon_mini_float_array.svg create mode 100644 editor/icons/dark/icon_mini_image.svg create mode 100644 editor/icons/dark/icon_mini_input.svg create mode 100644 editor/icons/dark/icon_mini_int_array.svg create mode 100644 editor/icons/dark/icon_mini_integer.svg create mode 100644 editor/icons/dark/icon_mini_matrix3.svg create mode 100644 editor/icons/dark/icon_mini_object.svg create mode 100644 editor/icons/dark/icon_mini_path.svg create mode 100644 editor/icons/dark/icon_mini_plane.svg create mode 100644 editor/icons/dark/icon_mini_quat.svg create mode 100644 editor/icons/dark/icon_mini_raw_array.svg create mode 100644 editor/icons/dark/icon_mini_rect2.svg create mode 100644 editor/icons/dark/icon_mini_rid.svg create mode 100644 editor/icons/dark/icon_mini_string.svg create mode 100644 editor/icons/dark/icon_mini_string_array.svg create mode 100644 editor/icons/dark/icon_mini_transform.svg create mode 100644 editor/icons/dark/icon_mini_transform2D.svg create mode 100644 editor/icons/dark/icon_mini_variant.svg create mode 100644 editor/icons/dark/icon_mini_vector2.svg create mode 100644 editor/icons/dark/icon_mini_vector2_array.svg create mode 100644 editor/icons/dark/icon_mini_vector3.svg create mode 100644 editor/icons/dark/icon_mini_vector3_array.svg create mode 100644 editor/icons/dark/icon_mirror_x.svg create mode 100644 editor/icons/dark/icon_mirror_y.svg create mode 100644 editor/icons/dark/icon_mouse.svg create mode 100644 editor/icons/dark/icon_move_down.svg create mode 100644 editor/icons/dark/icon_move_point.svg create mode 100644 editor/icons/dark/icon_move_up.svg create mode 100644 editor/icons/dark/icon_multi_edit.svg create mode 100644 editor/icons/dark/icon_multi_line.svg create mode 100644 editor/icons/dark/icon_multi_mesh.svg create mode 100644 editor/icons/dark/icon_multi_mesh_instance.svg create mode 100644 editor/icons/dark/icon_multi_script.svg create mode 100644 editor/icons/dark/icon_native_script.svg create mode 100644 editor/icons/dark/icon_navigation.svg create mode 100644 editor/icons/dark/icon_navigation_2d.svg create mode 100644 editor/icons/dark/icon_navigation_mesh.svg create mode 100644 editor/icons/dark/icon_navigation_mesh_instance.svg create mode 100644 editor/icons/dark/icon_navigation_polygon.svg create mode 100644 editor/icons/dark/icon_navigation_polygon_instance.svg create mode 100644 editor/icons/dark/icon_new.svg create mode 100644 editor/icons/dark/icon_nine_patch_rect.svg create mode 100644 editor/icons/dark/icon_node.svg create mode 100644 editor/icons/dark/icon_node_2d.svg create mode 100644 editor/icons/dark/icon_node_warning.svg create mode 100644 editor/icons/dark/icon_non_favorite.svg create mode 100644 editor/icons/dark/icon_object.svg create mode 100644 editor/icons/dark/icon_occluder_polygon_2d.svg create mode 100644 editor/icons/dark/icon_omni_light.svg create mode 100644 editor/icons/dark/icon_option_button.svg create mode 100644 editor/icons/dark/icon_override.svg create mode 100644 editor/icons/dark/icon_packed_data_container.svg create mode 100644 editor/icons/dark/icon_packed_scene.svg create mode 100644 editor/icons/dark/icon_panel.svg create mode 100644 editor/icons/dark/icon_panel_container.svg create mode 100644 editor/icons/dark/icon_panels_1.svg create mode 100644 editor/icons/dark/icon_panels_2.svg create mode 100644 editor/icons/dark/icon_panels_2_alt.svg create mode 100644 editor/icons/dark/icon_panels_3.svg create mode 100644 editor/icons/dark/icon_panels_3_alt.svg create mode 100644 editor/icons/dark/icon_panels_4.svg create mode 100644 editor/icons/dark/icon_panorama_sky.svg create mode 100644 editor/icons/dark/icon_parallax_background.svg create mode 100644 editor/icons/dark/icon_parallax_layer.svg create mode 100644 editor/icons/dark/icon_particle_attractor_2d.svg create mode 100644 editor/icons/dark/icon_particles.svg create mode 100644 editor/icons/dark/icon_particles_2d.svg create mode 100644 editor/icons/dark/icon_particles_material.svg create mode 100644 editor/icons/dark/icon_path.svg create mode 100644 editor/icons/dark/icon_path_2d.svg create mode 100644 editor/icons/dark/icon_path_follow.svg create mode 100644 editor/icons/dark/icon_path_follow_2d.svg create mode 100644 editor/icons/dark/icon_pause.svg create mode 100644 editor/icons/dark/icon_pin.svg create mode 100644 editor/icons/dark/icon_pin_joint.svg create mode 100644 editor/icons/dark/icon_pin_joint_2d.svg create mode 100644 editor/icons/dark/icon_pin_pressed.svg create mode 100644 editor/icons/dark/icon_plane.svg create mode 100644 editor/icons/dark/icon_plane_mesh.svg create mode 100644 editor/icons/dark/icon_plane_shape.svg create mode 100644 editor/icons/dark/icon_play.svg create mode 100644 editor/icons/dark/icon_play_backwards.svg create mode 100644 editor/icons/dark/icon_play_custom.svg create mode 100644 editor/icons/dark/icon_play_scene.svg create mode 100644 editor/icons/dark/icon_play_start.svg create mode 100644 editor/icons/dark/icon_play_start_backwards.svg create mode 100644 editor/icons/dark/icon_polygon_2_d.svg create mode 100644 editor/icons/dark/icon_polygon_path_finder.svg create mode 100644 editor/icons/dark/icon_popup.svg create mode 100644 editor/icons/dark/icon_popup_dialog.svg create mode 100644 editor/icons/dark/icon_popup_menu.svg create mode 100644 editor/icons/dark/icon_popup_panel.svg create mode 100644 editor/icons/dark/icon_portal.svg create mode 100644 editor/icons/dark/icon_position_2d.svg create mode 100644 editor/icons/dark/icon_position_3d.svg create mode 100644 editor/icons/dark/icon_prism_mesh.svg create mode 100644 editor/icons/dark/icon_procedural_sky.svg create mode 100644 editor/icons/dark/icon_progress_1.svg create mode 100644 editor/icons/dark/icon_progress_2.svg create mode 100644 editor/icons/dark/icon_progress_3.svg create mode 100644 editor/icons/dark/icon_progress_4.svg create mode 100644 editor/icons/dark/icon_progress_5.svg create mode 100644 editor/icons/dark/icon_progress_6.svg create mode 100644 editor/icons/dark/icon_progress_7.svg create mode 100644 editor/icons/dark/icon_progress_8.svg create mode 100644 editor/icons/dark/icon_progress_bar.svg create mode 100644 editor/icons/dark/icon_proximity_group.svg create mode 100644 editor/icons/dark/icon_quad.svg create mode 100644 editor/icons/dark/icon_quad_mesh.svg create mode 100644 editor/icons/dark/icon_quat.svg create mode 100644 editor/icons/dark/icon_range.svg create mode 100644 editor/icons/dark/icon_rating_no_star.svg create mode 100644 editor/icons/dark/icon_rating_star.svg create mode 100644 editor/icons/dark/icon_ray_cast.svg create mode 100644 editor/icons/dark/icon_ray_cast_2d.svg create mode 100644 editor/icons/dark/icon_ray_shape.svg create mode 100644 editor/icons/dark/icon_ray_shape_2d.svg create mode 100644 editor/icons/dark/icon_rayito.svg create mode 100644 editor/icons/dark/icon_real.svg create mode 100644 editor/icons/dark/icon_rectangle_shape_2d.svg create mode 100644 editor/icons/dark/icon_reference_rect.svg create mode 100644 editor/icons/dark/icon_reflection_probe.svg create mode 100644 editor/icons/dark/icon_region_edit.svg create mode 100644 editor/icons/dark/icon_reload_small.svg create mode 100644 editor/icons/dark/icon_remote.svg create mode 100644 editor/icons/dark/icon_remote_transform.svg create mode 100644 editor/icons/dark/icon_remote_transform_2d.svg create mode 100644 editor/icons/dark/icon_remove.svg create mode 100644 editor/icons/dark/icon_rename.svg create mode 100644 editor/icons/dark/icon_reparent.svg create mode 100644 editor/icons/dark/icon_resource_preloader.svg create mode 100644 editor/icons/dark/icon_rich_text_label.svg create mode 100644 editor/icons/dark/icon_rigid_body.svg create mode 100644 editor/icons/dark/icon_rigid_body_2d.svg create mode 100644 editor/icons/dark/icon_room.svg create mode 100644 editor/icons/dark/icon_room_bounds.svg create mode 100644 editor/icons/dark/icon_rotate_0.svg create mode 100644 editor/icons/dark/icon_rotate_180.svg create mode 100644 editor/icons/dark/icon_rotate_270.svg create mode 100644 editor/icons/dark/icon_rotate_90.svg create mode 100644 editor/icons/dark/icon_sample_library.svg create mode 100644 editor/icons/dark/icon_save.svg create mode 100644 editor/icons/dark/icon_script.svg create mode 100644 editor/icons/dark/icon_script_create.svg create mode 100644 editor/icons/dark/icon_script_remove.svg create mode 100644 editor/icons/dark/icon_scroll_bar.svg create mode 100644 editor/icons/dark/icon_scroll_container.svg create mode 100644 editor/icons/dark/icon_search.svg create mode 100644 editor/icons/dark/icon_segment_shape_2d.svg create mode 100644 editor/icons/dark/icon_shader.svg create mode 100644 editor/icons/dark/icon_short_cut.svg create mode 100644 editor/icons/dark/icon_signal.svg create mode 100644 editor/icons/dark/icon_skeleton.svg create mode 100644 editor/icons/dark/icon_slider_joint.svg create mode 100644 editor/icons/dark/icon_slot.svg create mode 100644 editor/icons/dark/icon_snap.svg create mode 100644 editor/icons/dark/icon_sound_room_params.svg create mode 100644 editor/icons/dark/icon_spatial.svg create mode 100644 editor/icons/dark/icon_spatial_material.svg create mode 100644 editor/icons/dark/icon_spatial_sample_player.svg create mode 100644 editor/icons/dark/icon_spatial_stream_player.svg create mode 100644 editor/icons/dark/icon_sphere_mesh.svg create mode 100644 editor/icons/dark/icon_sphere_shape.svg create mode 100644 editor/icons/dark/icon_spin_box.svg create mode 100644 editor/icons/dark/icon_spot_light.svg create mode 100644 editor/icons/dark/icon_sprite.svg create mode 100644 editor/icons/dark/icon_sprite_3d.svg create mode 100644 editor/icons/dark/icon_sprite_frames.svg create mode 100644 editor/icons/dark/icon_static_body.svg create mode 100644 editor/icons/dark/icon_static_body_2d.svg create mode 100644 editor/icons/dark/icon_stream_player.svg create mode 100644 editor/icons/dark/icon_stream_texture.svg create mode 100644 editor/icons/dark/icon_string.svg create mode 100644 editor/icons/dark/icon_style_box_empty.svg create mode 100644 editor/icons/dark/icon_style_box_flat.svg create mode 100644 editor/icons/dark/icon_style_box_texture.svg create mode 100644 editor/icons/dark/icon_tab_container.svg create mode 100644 editor/icons/dark/icon_tabs.svg create mode 100644 editor/icons/dark/icon_test_cube.svg create mode 100644 editor/icons/dark/icon_text_edit.svg create mode 100644 editor/icons/dark/icon_texture_button.svg create mode 100644 editor/icons/dark/icon_texture_progress.svg create mode 100644 editor/icons/dark/icon_texture_rect.svg create mode 100644 editor/icons/dark/icon_theme.svg create mode 100644 editor/icons/dark/icon_tile_map.svg create mode 100644 editor/icons/dark/icon_tile_set.svg create mode 100644 editor/icons/dark/icon_timer.svg create mode 100644 editor/icons/dark/icon_tool_button.svg create mode 100644 editor/icons/dark/icon_tool_move.svg create mode 100644 editor/icons/dark/icon_tool_pan.svg create mode 100644 editor/icons/dark/icon_tool_rotate.svg create mode 100644 editor/icons/dark/icon_tool_scale.svg create mode 100644 editor/icons/dark/icon_tool_select.svg create mode 100644 editor/icons/dark/icon_tools.svg create mode 100644 editor/icons/dark/icon_touch_screen_button.svg create mode 100644 editor/icons/dark/icon_track_add_key.svg create mode 100644 editor/icons/dark/icon_track_add_key_hl.svg create mode 100644 editor/icons/dark/icon_track_continuous.svg create mode 100644 editor/icons/dark/icon_track_discrete.svg create mode 100644 editor/icons/dark/icon_track_trigger.svg create mode 100644 editor/icons/dark/icon_translation.svg create mode 100644 editor/icons/dark/icon_transpose.svg create mode 100644 editor/icons/dark/icon_tree.svg create mode 100644 editor/icons/dark/icon_tween.svg create mode 100644 editor/icons/dark/icon_unbone.svg create mode 100644 editor/icons/dark/icon_ungroup.svg create mode 100644 editor/icons/dark/icon_unlock.svg create mode 100644 editor/icons/dark/icon_uv.svg create mode 100644 editor/icons/dark/icon_v_box_container.svg create mode 100644 editor/icons/dark/icon_v_button_array.svg create mode 100644 editor/icons/dark/icon_v_scroll_bar.svg create mode 100644 editor/icons/dark/icon_v_separator.svg create mode 100644 editor/icons/dark/icon_v_slider.svg create mode 100644 editor/icons/dark/icon_v_split_container.svg create mode 100644 editor/icons/dark/icon_variant.svg create mode 100644 editor/icons/dark/icon_vector.svg create mode 100644 editor/icons/dark/icon_vector2.svg create mode 100644 editor/icons/dark/icon_vehicle_body.svg create mode 100644 editor/icons/dark/icon_vehicle_wheel.svg create mode 100644 editor/icons/dark/icon_video_player.svg create mode 100644 editor/icons/dark/icon_viewport.svg create mode 100644 editor/icons/dark/icon_viewport_container.svg create mode 100644 editor/icons/dark/icon_viewport_sprite.svg create mode 100644 editor/icons/dark/icon_viewport_texture.svg create mode 100644 editor/icons/dark/icon_visibility_enabler.svg create mode 100644 editor/icons/dark/icon_visibility_enabler_2d.svg create mode 100644 editor/icons/dark/icon_visibility_notifier.svg create mode 100644 editor/icons/dark/icon_visibility_notifier_2d.svg create mode 100644 editor/icons/dark/icon_visible.svg create mode 100644 editor/icons/dark/icon_visual_script.svg create mode 100644 editor/icons/dark/icon_visual_shader_port.svg create mode 100644 editor/icons/dark/icon_vu_empty.svg create mode 100644 editor/icons/dark/icon_vu_full.svg create mode 100644 editor/icons/dark/icon_warning.svg create mode 100644 editor/icons/dark/icon_window_dialog.svg create mode 100644 editor/icons/dark/icon_world.svg create mode 100644 editor/icons/dark/icon_world_2d.svg create mode 100644 editor/icons/dark/icon_world_environment.svg create mode 100644 editor/icons/dark/icon_y_sort.svg create mode 100644 editor/icons/dark/icon_zoom.svg create mode 100644 editor/icons/dark/icon_zoom_less.svg create mode 100644 editor/icons/dark/icon_zoom_more.svg create mode 100644 editor/icons/dark/icon_zoom_reset.svg delete mode 100644 editor/icons/icon_2_d.png create mode 100644 editor/icons/icon_2_d.svg delete mode 100644 editor/icons/icon_3_d.png create mode 100644 editor/icons/icon_3_d.svg delete mode 100644 editor/icons/icon_GUI_checked.png create mode 100644 editor/icons/icon_GUI_checked.svg delete mode 100644 editor/icons/icon_GUI_dropdown.png create mode 100644 editor/icons/icon_GUI_dropdown.svg delete mode 100644 editor/icons/icon_GUI_hslider_bg.png create mode 100644 editor/icons/icon_GUI_hslider_bg.svg delete mode 100644 editor/icons/icon_GUI_hsplitter.png create mode 100644 editor/icons/icon_GUI_hsplitter.svg delete mode 100644 editor/icons/icon_GUI_mini_tab_menu.png create mode 100644 editor/icons/icon_GUI_mini_tab_menu.svg delete mode 100644 editor/icons/icon_GUI_option_arrow.png create mode 100644 editor/icons/icon_GUI_option_arrow.svg delete mode 100644 editor/icons/icon_GUI_play_button_group.png create mode 100644 editor/icons/icon_GUI_play_button_group.svg delete mode 100644 editor/icons/icon_GUI_progress_bar.png create mode 100644 editor/icons/icon_GUI_progress_bar.svg delete mode 100644 editor/icons/icon_GUI_progress_fill.png create mode 100644 editor/icons/icon_GUI_progress_fill.svg delete mode 100644 editor/icons/icon_GUI_radio_checked.png create mode 100644 editor/icons/icon_GUI_radio_checked.svg delete mode 100644 editor/icons/icon_GUI_radio_unchecked.png create mode 100644 editor/icons/icon_GUI_radio_unchecked.svg delete mode 100644 editor/icons/icon_GUI_scroll_bg.png create mode 100644 editor/icons/icon_GUI_scroll_bg.svg delete mode 100644 editor/icons/icon_GUI_scroll_grabber.png create mode 100644 editor/icons/icon_GUI_scroll_grabber.svg delete mode 100644 editor/icons/icon_GUI_scroll_grabber_hl.png create mode 100644 editor/icons/icon_GUI_scroll_grabber_hl.svg delete mode 100644 editor/icons/icon_GUI_scroll_grabber_pressed.png create mode 100644 editor/icons/icon_GUI_scroll_grabber_pressed.svg delete mode 100644 editor/icons/icon_GUI_slider_grabber.png create mode 100644 editor/icons/icon_GUI_slider_grabber.svg delete mode 100644 editor/icons/icon_GUI_slider_grabber_hl.png create mode 100644 editor/icons/icon_GUI_slider_grabber_hl.svg delete mode 100644 editor/icons/icon_GUI_spinbox_updown.png create mode 100644 editor/icons/icon_GUI_spinbox_updown.svg delete mode 100644 editor/icons/icon_GUI_tab_menu.png create mode 100644 editor/icons/icon_GUI_tab_menu.svg delete mode 100644 editor/icons/icon_GUI_toggle_off.png create mode 100644 editor/icons/icon_GUI_toggle_off.svg delete mode 100644 editor/icons/icon_GUI_toggle_on.png create mode 100644 editor/icons/icon_GUI_toggle_on.svg delete mode 100644 editor/icons/icon_GUI_tree_arrow_down.png create mode 100644 editor/icons/icon_GUI_tree_arrow_down.svg delete mode 100644 editor/icons/icon_GUI_tree_arrow_right.png create mode 100644 editor/icons/icon_GUI_tree_arrow_right.svg delete mode 100644 editor/icons/icon_GUI_unchecked.png create mode 100644 editor/icons/icon_GUI_unchecked.svg delete mode 100644 editor/icons/icon_GUI_vslider_bg.png create mode 100644 editor/icons/icon_GUI_vslider_bg.svg delete mode 100644 editor/icons/icon_GUI_vsplit_bg.png create mode 100644 editor/icons/icon_GUI_vsplit_bg.svg delete mode 100644 editor/icons/icon_GUI_vsplitter.png create mode 100644 editor/icons/icon_GUI_vsplitter.svg delete mode 100644 editor/icons/icon_accept_dialog.png create mode 100644 editor/icons/icon_accept_dialog.svg delete mode 100644 editor/icons/icon_add.png create mode 100644 editor/icons/icon_add.svg delete mode 100644 editor/icons/icon_add_track.png delete mode 100644 editor/icons/icon_anchor.png create mode 100644 editor/icons/icon_anchor.svg delete mode 100644 editor/icons/icon_anim_export.png delete mode 100644 editor/icons/icon_anim_export_all.png delete mode 100644 editor/icons/icon_anim_get.png delete mode 100644 editor/icons/icon_anim_get_hl.png delete mode 100644 editor/icons/icon_anim_import.png delete mode 100644 editor/icons/icon_anim_import_all.png delete mode 100644 editor/icons/icon_anim_set.png delete mode 100644 editor/icons/icon_anim_set_hl.png delete mode 100644 editor/icons/icon_animated_sprite.png create mode 100644 editor/icons/icon_animated_sprite.svg delete mode 100644 editor/icons/icon_animated_sprite_3d.png create mode 100644 editor/icons/icon_animated_sprite_3d.svg delete mode 100644 editor/icons/icon_animation.png create mode 100644 editor/icons/icon_animation.svg delete mode 100644 editor/icons/icon_animation_node.png delete mode 100644 editor/icons/icon_animation_play.png delete mode 100644 editor/icons/icon_animation_player.png create mode 100644 editor/icons/icon_animation_player.svg delete mode 100644 editor/icons/icon_animation_set.png delete mode 100644 editor/icons/icon_animation_tree.png delete mode 100644 editor/icons/icon_animation_tree_player.png create mode 100644 editor/icons/icon_animation_tree_player.svg delete mode 100644 editor/icons/icon_area.png create mode 100644 editor/icons/icon_area.svg delete mode 100644 editor/icons/icon_area_2d.png create mode 100644 editor/icons/icon_area_2d.svg delete mode 100644 editor/icons/icon_array_data.png delete mode 100644 editor/icons/icon_array_float.png delete mode 100644 editor/icons/icon_array_int.png delete mode 100644 editor/icons/icon_array_string.png delete mode 100644 editor/icons/icon_array_variant.png delete mode 100644 editor/icons/icon_arrow_left.png create mode 100644 editor/icons/icon_arrow_left.svg delete mode 100644 editor/icons/icon_arrow_left_disabled.png delete mode 100644 editor/icons/icon_arrow_right.png create mode 100644 editor/icons/icon_arrow_right.svg delete mode 100644 editor/icons/icon_arrow_right_disabled.png delete mode 100644 editor/icons/icon_arrow_up.png create mode 100644 editor/icons/icon_arrow_up.svg delete mode 100644 editor/icons/icon_arrow_up_disabled.png delete mode 100644 editor/icons/icon_asset_lib.png create mode 100644 editor/icons/icon_asset_lib.svg delete mode 100644 editor/icons/icon_atlas_texture.png create mode 100644 editor/icons/icon_atlas_texture.svg delete mode 100644 editor/icons/icon_audio_bus_bypass.png create mode 100644 editor/icons/icon_audio_bus_bypass.svg delete mode 100644 editor/icons/icon_audio_bus_layout.png create mode 100644 editor/icons/icon_audio_bus_layout.svg delete mode 100644 editor/icons/icon_audio_bus_mute.png create mode 100644 editor/icons/icon_audio_bus_mute.svg delete mode 100644 editor/icons/icon_audio_bus_solo.png create mode 100644 editor/icons/icon_audio_bus_solo.svg delete mode 100644 editor/icons/icon_audio_effect_amplify.png create mode 100644 editor/icons/icon_audio_effect_amplify.svg delete mode 100644 editor/icons/icon_audio_stream_gibberish.png create mode 100644 editor/icons/icon_audio_stream_gibberish.svg delete mode 100644 editor/icons/icon_audio_stream_m_p_c.png delete mode 100644 editor/icons/icon_audio_stream_o_g_g_vorbis.png delete mode 100644 editor/icons/icon_audio_stream_opus.png delete mode 100644 editor/icons/icon_audio_stream_player.png create mode 100644 editor/icons/icon_audio_stream_player.svg delete mode 100644 editor/icons/icon_audio_stream_player_2_d.png create mode 100644 editor/icons/icon_audio_stream_player_2_d.svg delete mode 100644 editor/icons/icon_audio_stream_player_3_d.png create mode 100644 editor/icons/icon_audio_stream_player_3_d.svg delete mode 100644 editor/icons/icon_audio_stream_sample.png create mode 100644 editor/icons/icon_audio_stream_sample.svg delete mode 100644 editor/icons/icon_audio_stream_speex.png delete mode 100644 editor/icons/icon_auto_play.png create mode 100644 editor/icons/icon_auto_play.svg delete mode 100644 editor/icons/icon_b_c_s_f_x.png delete mode 100644 editor/icons/icon_b_g_color_f_x.png delete mode 100644 editor/icons/icon_b_g_image_f_x.png delete mode 100644 editor/icons/icon_back.png create mode 100644 editor/icons/icon_back.svg delete mode 100644 editor/icons/icon_back_buffer_copy.png create mode 100644 editor/icons/icon_back_buffer_copy.svg delete mode 100644 editor/icons/icon_back_disabled.png delete mode 100644 editor/icons/icon_back_no.png delete mode 100644 editor/icons/icon_bake.png create mode 100644 editor/icons/icon_bake.svg delete mode 100644 editor/icons/icon_baked_light.png create mode 100644 editor/icons/icon_baked_light.svg delete mode 100644 editor/icons/icon_baked_light_instance.png create mode 100644 editor/icons/icon_baked_light_instance.svg delete mode 100644 editor/icons/icon_baked_light_sampler.png create mode 100644 editor/icons/icon_baked_light_sampler.svg delete mode 100644 editor/icons/icon_bit_map.png create mode 100644 editor/icons/icon_bit_map.svg delete mode 100644 editor/icons/icon_bitmap_font.png create mode 100644 editor/icons/icon_bitmap_font.svg delete mode 100644 editor/icons/icon_blend.png create mode 100644 editor/icons/icon_blend.svg delete mode 100644 editor/icons/icon_bone.png create mode 100644 editor/icons/icon_bone.svg delete mode 100644 editor/icons/icon_bone_attachment.png create mode 100644 editor/icons/icon_bone_attachment.svg delete mode 100644 editor/icons/icon_bone_track.png create mode 100644 editor/icons/icon_bone_track.svg delete mode 100644 editor/icons/icon_bool.png create mode 100644 editor/icons/icon_bool.svg delete mode 100644 editor/icons/icon_box_shape.png create mode 100644 editor/icons/icon_box_shape.svg delete mode 100644 editor/icons/icon_bus_vu_db.png create mode 100644 editor/icons/icon_bus_vu_db.svg delete mode 100644 editor/icons/icon_bus_vu_empty.png create mode 100644 editor/icons/icon_bus_vu_empty.svg delete mode 100644 editor/icons/icon_bus_vu_frozen.png create mode 100644 editor/icons/icon_bus_vu_frozen.svg delete mode 100644 editor/icons/icon_bus_vu_full.png create mode 100644 editor/icons/icon_bus_vu_full.svg delete mode 100644 editor/icons/icon_button.png create mode 100644 editor/icons/icon_button.svg delete mode 100644 editor/icons/icon_button_group.png create mode 100644 editor/icons/icon_button_group.svg delete mode 100644 editor/icons/icon_camera.png create mode 100644 editor/icons/icon_camera.svg delete mode 100644 editor/icons/icon_camera_2d.png create mode 100644 editor/icons/icon_camera_2d.svg delete mode 100644 editor/icons/icon_canvas_item.png create mode 100644 editor/icons/icon_canvas_item.svg delete mode 100644 editor/icons/icon_canvas_item_material.png create mode 100644 editor/icons/icon_canvas_item_material.svg delete mode 100644 editor/icons/icon_canvas_item_shader.png create mode 100644 editor/icons/icon_canvas_item_shader.svg delete mode 100644 editor/icons/icon_canvas_item_shader_graph.png create mode 100644 editor/icons/icon_canvas_item_shader_graph.svg delete mode 100644 editor/icons/icon_canvas_layer.png create mode 100644 editor/icons/icon_canvas_layer.svg delete mode 100644 editor/icons/icon_canvas_modulate.png create mode 100644 editor/icons/icon_canvas_modulate.svg delete mode 100644 editor/icons/icon_capsule_mesh.png create mode 100644 editor/icons/icon_capsule_mesh.svg delete mode 100644 editor/icons/icon_capsule_shape.png create mode 100644 editor/icons/icon_capsule_shape.svg delete mode 100644 editor/icons/icon_capsule_shape_2d.png create mode 100644 editor/icons/icon_capsule_shape_2d.svg delete mode 100644 editor/icons/icon_center_container.png create mode 100644 editor/icons/icon_center_container.svg delete mode 100644 editor/icons/icon_character_body.png delete mode 100644 editor/icons/icon_character_camera.png delete mode 100644 editor/icons/icon_check_box.png create mode 100644 editor/icons/icon_check_box.svg delete mode 100644 editor/icons/icon_check_button.png create mode 100644 editor/icons/icon_check_button.svg delete mode 100644 editor/icons/icon_checked.png delete mode 100644 editor/icons/icon_checkerboard.png delete mode 100644 editor/icons/icon_circle_shape_2d.png create mode 100644 editor/icons/icon_circle_shape_2d.svg delete mode 100644 editor/icons/icon_class_list.png create mode 100644 editor/icons/icon_class_list.svg delete mode 100644 editor/icons/icon_click2edit.png delete mode 100644 editor/icons/icon_close.png create mode 100644 editor/icons/icon_close.svg delete mode 100644 editor/icons/icon_close_hover.png delete mode 100644 editor/icons/icon_collapse.png create mode 100644 editor/icons/icon_collapse.svg delete mode 100644 editor/icons/icon_collapse_hl.png delete mode 100644 editor/icons/icon_collision.png delete mode 100644 editor/icons/icon_collision_2d.png create mode 100644 editor/icons/icon_collision_2d.svg delete mode 100644 editor/icons/icon_collision_polygon.png create mode 100644 editor/icons/icon_collision_polygon.svg delete mode 100644 editor/icons/icon_collision_polygon_2d.png delete mode 100644 editor/icons/icon_collision_shape.png create mode 100644 editor/icons/icon_collision_shape.svg delete mode 100644 editor/icons/icon_collision_shape_2d.png create mode 100644 editor/icons/icon_collision_shape_2d.svg delete mode 100644 editor/icons/icon_color.png create mode 100644 editor/icons/icon_color.svg delete mode 100644 editor/icons/icon_color_pick.png create mode 100644 editor/icons/icon_color_pick.svg delete mode 100644 editor/icons/icon_color_picker.png create mode 100644 editor/icons/icon_color_picker.svg delete mode 100644 editor/icons/icon_color_picker_button.png create mode 100644 editor/icons/icon_color_picker_button.svg delete mode 100644 editor/icons/icon_color_ramp.png create mode 100644 editor/icons/icon_color_ramp.svg delete mode 100644 editor/icons/icon_color_rect.png create mode 100644 editor/icons/icon_color_rect.svg delete mode 100644 editor/icons/icon_concave_polygon_shape.png create mode 100644 editor/icons/icon_concave_polygon_shape.svg delete mode 100644 editor/icons/icon_concave_polygon_shape_2d.png create mode 100644 editor/icons/icon_concave_polygon_shape_2d.svg delete mode 100644 editor/icons/icon_cone_twist_joint.png create mode 100644 editor/icons/icon_cone_twist_joint.svg delete mode 100644 editor/icons/icon_confirmation_dialog.png create mode 100644 editor/icons/icon_confirmation_dialog.svg delete mode 100644 editor/icons/icon_connect.png create mode 100644 editor/icons/icon_connect.svg delete mode 100644 editor/icons/icon_connection_and_groups.png create mode 100644 editor/icons/icon_connection_and_groups.svg delete mode 100644 editor/icons/icon_console.png delete mode 100644 editor/icons/icon_container.png create mode 100644 editor/icons/icon_container.svg delete mode 100644 editor/icons/icon_control.png create mode 100644 editor/icons/icon_control.svg delete mode 100644 editor/icons/icon_control_align_bottom_center.png create mode 100644 editor/icons/icon_control_align_bottom_center.svg delete mode 100644 editor/icons/icon_control_align_bottom_left.png create mode 100644 editor/icons/icon_control_align_bottom_left.svg delete mode 100644 editor/icons/icon_control_align_bottom_right.png create mode 100644 editor/icons/icon_control_align_bottom_right.svg delete mode 100644 editor/icons/icon_control_align_bottom_wide.png create mode 100644 editor/icons/icon_control_align_bottom_wide.svg delete mode 100644 editor/icons/icon_control_align_center.png create mode 100644 editor/icons/icon_control_align_center.svg delete mode 100644 editor/icons/icon_control_align_center_left.png create mode 100644 editor/icons/icon_control_align_center_left.svg delete mode 100644 editor/icons/icon_control_align_center_right.png create mode 100644 editor/icons/icon_control_align_center_right.svg delete mode 100644 editor/icons/icon_control_align_left_center.png create mode 100644 editor/icons/icon_control_align_left_center.svg delete mode 100644 editor/icons/icon_control_align_left_wide.png create mode 100644 editor/icons/icon_control_align_left_wide.svg delete mode 100644 editor/icons/icon_control_align_right_center.png create mode 100644 editor/icons/icon_control_align_right_center.svg delete mode 100644 editor/icons/icon_control_align_right_wide.png create mode 100644 editor/icons/icon_control_align_right_wide.svg delete mode 100644 editor/icons/icon_control_align_top_center.png create mode 100644 editor/icons/icon_control_align_top_center.svg delete mode 100644 editor/icons/icon_control_align_top_left.png create mode 100644 editor/icons/icon_control_align_top_left.svg delete mode 100644 editor/icons/icon_control_align_top_right.png create mode 100644 editor/icons/icon_control_align_top_right.svg delete mode 100644 editor/icons/icon_control_align_top_wide.png create mode 100644 editor/icons/icon_control_align_top_wide.svg delete mode 100644 editor/icons/icon_control_align_wide.png create mode 100644 editor/icons/icon_control_align_wide.svg delete mode 100644 editor/icons/icon_control_hcenter_wide.png create mode 100644 editor/icons/icon_control_hcenter_wide.svg delete mode 100644 editor/icons/icon_control_vcenter_wide.png create mode 100644 editor/icons/icon_control_vcenter_wide.svg delete mode 100644 editor/icons/icon_convex_polygon_shape.png create mode 100644 editor/icons/icon_convex_polygon_shape.svg delete mode 100644 editor/icons/icon_convex_polygon_shape_2d.png create mode 100644 editor/icons/icon_convex_polygon_shape_2d.svg delete mode 100644 editor/icons/icon_copy_node_path.png create mode 100644 editor/icons/icon_copy_node_path.svg delete mode 100644 editor/icons/icon_create_new_scene_from.png create mode 100644 editor/icons/icon_create_new_scene_from.svg delete mode 100644 editor/icons/icon_cube_grid_map.png delete mode 100644 editor/icons/icon_cube_map.png create mode 100644 editor/icons/icon_cube_map.svg delete mode 100644 editor/icons/icon_cube_mesh.png create mode 100644 editor/icons/icon_cube_mesh.svg delete mode 100644 editor/icons/icon_curve.png create mode 100644 editor/icons/icon_curve.svg delete mode 100644 editor/icons/icon_curve_2d.png create mode 100644 editor/icons/icon_curve_2d.svg delete mode 100644 editor/icons/icon_curve_3d.png create mode 100644 editor/icons/icon_curve_3d.svg delete mode 100644 editor/icons/icon_curve_close.png create mode 100644 editor/icons/icon_curve_close.svg delete mode 100644 editor/icons/icon_curve_constant.png create mode 100644 editor/icons/icon_curve_constant.svg delete mode 100644 editor/icons/icon_curve_create.png create mode 100644 editor/icons/icon_curve_create.svg delete mode 100644 editor/icons/icon_curve_curve.png create mode 100644 editor/icons/icon_curve_curve.svg delete mode 100644 editor/icons/icon_curve_delete.png create mode 100644 editor/icons/icon_curve_delete.svg delete mode 100644 editor/icons/icon_curve_edit.png create mode 100644 editor/icons/icon_curve_edit.svg delete mode 100644 editor/icons/icon_curve_in.png create mode 100644 editor/icons/icon_curve_in.svg delete mode 100644 editor/icons/icon_curve_in_out.png create mode 100644 editor/icons/icon_curve_in_out.svg delete mode 100644 editor/icons/icon_curve_linear.png create mode 100644 editor/icons/icon_curve_linear.svg delete mode 100644 editor/icons/icon_curve_out.png create mode 100644 editor/icons/icon_curve_out.svg delete mode 100644 editor/icons/icon_curve_out_in.png create mode 100644 editor/icons/icon_curve_out_in.svg delete mode 100644 editor/icons/icon_curve_texture.png create mode 100644 editor/icons/icon_curve_texture.svg delete mode 100644 editor/icons/icon_cylinder_mesh.png create mode 100644 editor/icons/icon_cylinder_mesh.svg delete mode 100644 editor/icons/icon_cylinder_shape.png delete mode 100644 editor/icons/icon_d_o_f_blur_f_x.png delete mode 100644 editor/icons/icon_damped_spring_joint_2d.png create mode 100644 editor/icons/icon_damped_spring_joint_2d.svg delete mode 100644 editor/icons/icon_debug.png create mode 100644 editor/icons/icon_debug.svg delete mode 100644 editor/icons/icon_debug_continue.png create mode 100644 editor/icons/icon_debug_continue.svg delete mode 100644 editor/icons/icon_debug_next.png create mode 100644 editor/icons/icon_debug_next.svg delete mode 100644 editor/icons/icon_debug_step.png create mode 100644 editor/icons/icon_debug_step.svg delete mode 100644 editor/icons/icon_default_project_icon.png delete mode 100644 editor/icons/icon_del.png delete mode 100644 editor/icons/icon_dependency_changed.png create mode 100644 editor/icons/icon_dependency_changed.svg delete mode 100644 editor/icons/icon_dependency_changed_hl.png create mode 100644 editor/icons/icon_dependency_changed_hl.svg delete mode 100644 editor/icons/icon_dependency_local_changed.png create mode 100644 editor/icons/icon_dependency_local_changed.svg delete mode 100644 editor/icons/icon_dependency_local_changed_hl.png create mode 100644 editor/icons/icon_dependency_local_changed_hl.svg delete mode 100644 editor/icons/icon_dependency_ok.png create mode 100644 editor/icons/icon_dependency_ok.svg delete mode 100644 editor/icons/icon_dependency_ok_hl.png create mode 100644 editor/icons/icon_dependency_ok_hl.svg delete mode 100644 editor/icons/icon_directional_light.png create mode 100644 editor/icons/icon_directional_light.svg delete mode 100644 editor/icons/icon_distraction_free.png create mode 100644 editor/icons/icon_distraction_free.svg delete mode 100644 editor/icons/icon_doc_code_font.png delete mode 100644 editor/icons/icon_doc_font.png delete mode 100644 editor/icons/icon_doc_title_font.png delete mode 100644 editor/icons/icon_down.png delete mode 100644 editor/icons/icon_dropdown.png delete mode 100644 editor/icons/icon_dummy.png delete mode 100644 editor/icons/icon_duplicate.png create mode 100644 editor/icons/icon_duplicate.svg delete mode 100644 editor/icons/icon_dynamic_character_body.png delete mode 100644 editor/icons/icon_dynamic_custom_body.png delete mode 100644 editor/icons/icon_dynamic_font.png create mode 100644 editor/icons/icon_dynamic_font.svg delete mode 100644 editor/icons/icon_dynamic_font_data.png create mode 100644 editor/icons/icon_dynamic_font_data.svg delete mode 100644 editor/icons/icon_dynamic_rigid_body.png delete mode 100644 editor/icons/icon_edit.png create mode 100644 editor/icons/icon_edit.svg delete mode 100644 editor/icons/icon_edit_key.png create mode 100644 editor/icons/icon_edit_key.svg delete mode 100644 editor/icons/icon_edit_pivot.png create mode 100644 editor/icons/icon_edit_pivot.svg delete mode 100644 editor/icons/icon_edit_resource.png create mode 100644 editor/icons/icon_edit_resource.svg delete mode 100644 editor/icons/icon_edit_small.png delete mode 100644 editor/icons/icon_editor_2d.png delete mode 100644 editor/icons/icon_editor_3d_handle.png create mode 100644 editor/icons/icon_editor_3d_handle.svg delete mode 100644 editor/icons/icon_editor_control_anchor.png create mode 100644 editor/icons/icon_editor_control_anchor.svg delete mode 100644 editor/icons/icon_editor_focus.png delete mode 100644 editor/icons/icon_editor_handle.png create mode 100644 editor/icons/icon_editor_handle.svg delete mode 100644 editor/icons/icon_editor_node.png delete mode 100644 editor/icons/icon_editor_pivot.png create mode 100644 editor/icons/icon_editor_pivot.svg delete mode 100644 editor/icons/icon_editor_plugin.png create mode 100644 editor/icons/icon_editor_plugin.svg delete mode 100644 editor/icons/icon_editor_rect_2d.png delete mode 100644 editor/icons/icon_empty_control.png delete mode 100644 editor/icons/icon_enum.png delete mode 100644 editor/icons/icon_environment.png create mode 100644 editor/icons/icon_environment.svg delete mode 100644 editor/icons/icon_error.png create mode 100644 editor/icons/icon_error.svg delete mode 100644 editor/icons/icon_error_sign.png create mode 100644 editor/icons/icon_error_sign.svg delete mode 100644 editor/icons/icon_event_player.png create mode 100644 editor/icons/icon_event_player.svg delete mode 100644 editor/icons/icon_expand.png delete mode 100644 editor/icons/icon_expand_hl.png delete mode 100644 editor/icons/icon_favorites.png create mode 100644 editor/icons/icon_favorites.svg delete mode 100644 editor/icons/icon_file.png delete mode 100644 editor/icons/icon_file_big.png create mode 100644 editor/icons/icon_file_big.svg delete mode 100644 editor/icons/icon_file_dialog.png create mode 100644 editor/icons/icon_file_dialog.svg delete mode 100644 editor/icons/icon_file_list.png create mode 100644 editor/icons/icon_file_list.svg delete mode 100644 editor/icons/icon_file_server.png create mode 100644 editor/icons/icon_file_server.svg delete mode 100644 editor/icons/icon_file_server_active.png create mode 100644 editor/icons/icon_file_server_active.svg delete mode 100644 editor/icons/icon_file_thumbnail.png create mode 100644 editor/icons/icon_file_thumbnail.svg delete mode 100644 editor/icons/icon_filesystem.png delete mode 100644 editor/icons/icon_fixed_material.png create mode 100644 editor/icons/icon_fixed_material.svg delete mode 100644 editor/icons/icon_fixed_spatial_material.png create mode 100644 editor/icons/icon_fixed_spatial_material.svg delete mode 100644 editor/icons/icon_fog_f_x.png delete mode 100644 editor/icons/icon_folder.png create mode 100644 editor/icons/icon_folder.svg delete mode 100644 editor/icons/icon_folder_big.png create mode 100644 editor/icons/icon_folder_big.svg delete mode 100644 editor/icons/icon_folder_scene.png delete mode 100644 editor/icons/icon_font.png create mode 100644 editor/icons/icon_font.svg delete mode 100644 editor/icons/icon_forward.png create mode 100644 editor/icons/icon_forward.svg delete mode 100644 editor/icons/icon_forward_no.png delete mode 100644 editor/icons/icon_func.png delete mode 100644 editor/icons/icon_g_d_native_library.png create mode 100644 editor/icons/icon_g_d_native_library.svg delete mode 100644 editor/icons/icon_g_d_native_script.png delete mode 100644 editor/icons/icon_g_d_script.png create mode 100644 editor/icons/icon_g_d_script.svg delete mode 100644 editor/icons/icon_g_i_probe.png create mode 100644 editor/icons/icon_g_i_probe.svg delete mode 100644 editor/icons/icon_g_i_probe_data.png create mode 100644 editor/icons/icon_g_i_probe_data.svg delete mode 100644 editor/icons/icon_gamma_f_x.png delete mode 100644 editor/icons/icon_generic_6_d_o_f_joint.png create mode 100644 editor/icons/icon_generic_6_d_o_f_joint.svg delete mode 100644 editor/icons/icon_gizmo_directional_light.png create mode 100644 editor/icons/icon_gizmo_directional_light.svg delete mode 100644 editor/icons/icon_gizmo_light.png create mode 100644 editor/icons/icon_gizmo_light.svg delete mode 100644 editor/icons/icon_gizmo_listener.png create mode 100644 editor/icons/icon_gizmo_listener.svg delete mode 100644 editor/icons/icon_gizmo_spatial_sample_player.png create mode 100644 editor/icons/icon_gizmo_spatial_sample_player.svg delete mode 100644 editor/icons/icon_gizmo_spatial_stream_player.png create mode 100644 editor/icons/icon_gizmo_spatial_stream_player.svg delete mode 100644 editor/icons/icon_glow_f_x.png delete mode 100644 editor/icons/icon_godot.png create mode 100644 editor/icons/icon_godot.svg delete mode 100644 editor/icons/icon_godot_asset_default.png delete mode 100644 editor/icons/icon_godot_docs.png delete mode 100644 editor/icons/icon_gradient.png create mode 100644 editor/icons/icon_gradient.svg delete mode 100644 editor/icons/icon_gradient_texture.png create mode 100644 editor/icons/icon_gradient_texture.svg delete mode 100644 editor/icons/icon_graph_color_ramp.png delete mode 100644 editor/icons/icon_graph_comment.png create mode 100644 editor/icons/icon_graph_comment.svg delete mode 100644 editor/icons/icon_graph_cube_uniform.png create mode 100644 editor/icons/icon_graph_cube_uniform.svg delete mode 100644 editor/icons/icon_graph_curve_map.png create mode 100644 editor/icons/icon_graph_curve_map.svg delete mode 100644 editor/icons/icon_graph_default_texture.png create mode 100644 editor/icons/icon_graph_default_texture.svg delete mode 100644 editor/icons/icon_graph_edit.png create mode 100644 editor/icons/icon_graph_edit.svg delete mode 100644 editor/icons/icon_graph_input.png create mode 100644 editor/icons/icon_graph_input.svg delete mode 100644 editor/icons/icon_graph_node.png create mode 100644 editor/icons/icon_graph_node.svg delete mode 100644 editor/icons/icon_graph_rgb.png create mode 100644 editor/icons/icon_graph_rgb.svg delete mode 100644 editor/icons/icon_graph_rgb_op.png create mode 100644 editor/icons/icon_graph_rgb_op.svg delete mode 100644 editor/icons/icon_graph_rgb_uniform.png create mode 100644 editor/icons/icon_graph_rgb_uniform.svg delete mode 100644 editor/icons/icon_graph_scalar.png create mode 100644 editor/icons/icon_graph_scalar.svg delete mode 100644 editor/icons/icon_graph_scalar_interp.png create mode 100644 editor/icons/icon_graph_scalar_interp.svg delete mode 100644 editor/icons/icon_graph_scalar_op.png create mode 100644 editor/icons/icon_graph_scalar_op.svg delete mode 100644 editor/icons/icon_graph_scalar_uniform.png create mode 100644 editor/icons/icon_graph_scalar_uniform.svg delete mode 100644 editor/icons/icon_graph_scalars_to_vec.png create mode 100644 editor/icons/icon_graph_scalars_to_vec.svg delete mode 100644 editor/icons/icon_graph_texscreen.png create mode 100644 editor/icons/icon_graph_texscreen.svg delete mode 100644 editor/icons/icon_graph_texture_uniform.png create mode 100644 editor/icons/icon_graph_texture_uniform.svg delete mode 100644 editor/icons/icon_graph_time.png create mode 100644 editor/icons/icon_graph_time.svg delete mode 100644 editor/icons/icon_graph_vec_dp.png create mode 100644 editor/icons/icon_graph_vec_dp.svg delete mode 100644 editor/icons/icon_graph_vec_interp.png create mode 100644 editor/icons/icon_graph_vec_interp.svg delete mode 100644 editor/icons/icon_graph_vec_length.png create mode 100644 editor/icons/icon_graph_vec_length.svg delete mode 100644 editor/icons/icon_graph_vec_op.png create mode 100644 editor/icons/icon_graph_vec_op.svg delete mode 100644 editor/icons/icon_graph_vec_scalar_op.png create mode 100644 editor/icons/icon_graph_vec_scalar_op.svg delete mode 100644 editor/icons/icon_graph_vec_to_scalars.png create mode 100644 editor/icons/icon_graph_vec_to_scalars.svg delete mode 100644 editor/icons/icon_graph_vecs_to_xform.png create mode 100644 editor/icons/icon_graph_vecs_to_xform.svg delete mode 100644 editor/icons/icon_graph_vector.png create mode 100644 editor/icons/icon_graph_vector.svg delete mode 100644 editor/icons/icon_graph_vector_uniform.png create mode 100644 editor/icons/icon_graph_vector_uniform.svg delete mode 100644 editor/icons/icon_graph_xform.png create mode 100644 editor/icons/icon_graph_xform.svg delete mode 100644 editor/icons/icon_graph_xform_mult.png create mode 100644 editor/icons/icon_graph_xform_mult.svg delete mode 100644 editor/icons/icon_graph_xform_scalar_func.png create mode 100644 editor/icons/icon_graph_xform_scalar_func.svg delete mode 100644 editor/icons/icon_graph_xform_to_vecs.png create mode 100644 editor/icons/icon_graph_xform_to_vecs.svg delete mode 100644 editor/icons/icon_graph_xform_uniform.png create mode 100644 editor/icons/icon_graph_xform_uniform.svg delete mode 100644 editor/icons/icon_graph_xform_vec_func.png create mode 100644 editor/icons/icon_graph_xform_vec_func.svg delete mode 100644 editor/icons/icon_graph_xform_vec_imult.png create mode 100644 editor/icons/icon_graph_xform_vec_imult.svg delete mode 100644 editor/icons/icon_graph_xform_vec_mult.png create mode 100644 editor/icons/icon_graph_xform_vec_mult.svg delete mode 100644 editor/icons/icon_grid.png create mode 100644 editor/icons/icon_grid.svg delete mode 100644 editor/icons/icon_grid_container.png create mode 100644 editor/icons/icon_grid_container.svg delete mode 100644 editor/icons/icon_grid_map.png create mode 100644 editor/icons/icon_grid_map.svg delete mode 100644 editor/icons/icon_grid_map_floor.png delete mode 100644 editor/icons/icon_groove_joint_2d.png create mode 100644 editor/icons/icon_groove_joint_2d.svg delete mode 100644 editor/icons/icon_group.png create mode 100644 editor/icons/icon_group.svg delete mode 100644 editor/icons/icon_groups.png create mode 100644 editor/icons/icon_groups.svg create mode 100644 editor/icons/icon_gui_close.svg delete mode 100644 editor/icons/icon_gui_close_dark.png create mode 100644 editor/icons/icon_gui_close_dark.svg delete mode 100644 editor/icons/icon_gui_close_light.png create mode 100644 editor/icons/icon_gui_close_light.svg delete mode 100644 editor/icons/icon_h_box_container.png create mode 100644 editor/icons/icon_h_box_container.svg delete mode 100644 editor/icons/icon_h_button_array.png create mode 100644 editor/icons/icon_h_button_array.svg delete mode 100644 editor/icons/icon_h_scroll_bar.png create mode 100644 editor/icons/icon_h_scroll_bar.svg delete mode 100644 editor/icons/icon_h_separator.png create mode 100644 editor/icons/icon_h_separator.svg delete mode 100644 editor/icons/icon_h_slider.png create mode 100644 editor/icons/icon_h_slider.svg delete mode 100644 editor/icons/icon_h_split_container.png create mode 100644 editor/icons/icon_h_split_container.svg delete mode 100644 editor/icons/icon_h_t_t_p_request.png create mode 100644 editor/icons/icon_h_t_t_p_request.svg delete mode 100644 editor/icons/icon_headphones.png create mode 100644 editor/icons/icon_headphones.svg delete mode 100644 editor/icons/icon_help.png create mode 100644 editor/icons/icon_help.svg delete mode 100644 editor/icons/icon_help_search.png create mode 100644 editor/icons/icon_help_search.svg delete mode 100644 editor/icons/icon_hidden.png create mode 100644 editor/icons/icon_hidden.svg delete mode 100644 editor/icons/icon_hinge_joint.png create mode 100644 editor/icons/icon_hinge_joint.svg delete mode 100644 editor/icons/icon_history.png create mode 100644 editor/icons/icon_history.svg delete mode 100644 editor/icons/icon_hsize.png create mode 100644 editor/icons/icon_hsize.svg delete mode 100644 editor/icons/icon_hslider_bg.png delete mode 100644 editor/icons/icon_hsplit_bg.png delete mode 100644 editor/icons/icon_hsplitter.png delete mode 100644 editor/icons/icon_iapi.png delete mode 100644 editor/icons/icon_image.png create mode 100644 editor/icons/icon_image.svg delete mode 100644 editor/icons/icon_image_sky_box.png delete mode 100644 editor/icons/icon_image_texture.png create mode 100644 editor/icons/icon_image_texture.svg delete mode 100644 editor/icons/icon_immediate_geometry.png create mode 100644 editor/icons/icon_immediate_geometry.svg delete mode 100644 editor/icons/icon_import_check.png create mode 100644 editor/icons/icon_import_check.svg delete mode 100644 editor/icons/icon_import_fail.png create mode 100644 editor/icons/icon_import_fail.svg delete mode 100644 editor/icons/icon_influence_zone.png delete mode 100644 editor/icons/icon_instance.png create mode 100644 editor/icons/icon_instance.svg delete mode 100644 editor/icons/icon_instance_options.png create mode 100644 editor/icons/icon_instance_options.svg delete mode 100644 editor/icons/icon_integer.png create mode 100644 editor/icons/icon_integer.svg delete mode 100644 editor/icons/icon_interp_cubic.png create mode 100644 editor/icons/icon_interp_cubic.svg delete mode 100644 editor/icons/icon_interp_linear.png create mode 100644 editor/icons/icon_interp_linear.svg delete mode 100644 editor/icons/icon_interp_raw.png create mode 100644 editor/icons/icon_interp_raw.svg delete mode 100644 editor/icons/icon_interp_wrap_clamp.png create mode 100644 editor/icons/icon_interp_wrap_clamp.svg delete mode 100644 editor/icons/icon_interp_wrap_loop.png create mode 100644 editor/icons/icon_interp_wrap_loop.svg delete mode 100644 editor/icons/icon_interpolated_camera.png create mode 100644 editor/icons/icon_interpolated_camera.svg delete mode 100644 editor/icons/icon_invalid_key.png create mode 100644 editor/icons/icon_invalid_key.svg delete mode 100644 editor/icons/icon_inverse_kinematics.png create mode 100644 editor/icons/icon_inverse_kinematics.svg delete mode 100644 editor/icons/icon_item_list.png create mode 100644 editor/icons/icon_item_list.svg delete mode 100644 editor/icons/icon_joy_axis.png create mode 100644 editor/icons/icon_joy_axis.svg delete mode 100644 editor/icons/icon_joy_button.png create mode 100644 editor/icons/icon_joy_button.svg delete mode 100644 editor/icons/icon_joypad.png create mode 100644 editor/icons/icon_joypad.svg delete mode 100644 editor/icons/icon_key.png create mode 100644 editor/icons/icon_key.svg delete mode 100644 editor/icons/icon_key_call.png delete mode 100644 editor/icons/icon_key_hover.png create mode 100644 editor/icons/icon_key_hover.svg delete mode 100644 editor/icons/icon_key_invalid.png create mode 100644 editor/icons/icon_key_invalid.svg delete mode 100644 editor/icons/icon_key_invalid_hover.png delete mode 100644 editor/icons/icon_key_next.png create mode 100644 editor/icons/icon_key_next.svg delete mode 100644 editor/icons/icon_key_selected.png create mode 100644 editor/icons/icon_key_selected.svg delete mode 100644 editor/icons/icon_key_value.png create mode 100644 editor/icons/icon_key_value.svg delete mode 100644 editor/icons/icon_key_xform.png create mode 100644 editor/icons/icon_key_xform.svg delete mode 100644 editor/icons/icon_keyboard.png create mode 100644 editor/icons/icon_keyboard.svg delete mode 100644 editor/icons/icon_keying.png delete mode 100644 editor/icons/icon_kinematic_body.png create mode 100644 editor/icons/icon_kinematic_body.svg delete mode 100644 editor/icons/icon_kinematic_body_2d.png create mode 100644 editor/icons/icon_kinematic_body_2d.svg delete mode 100644 editor/icons/icon_label.png create mode 100644 editor/icons/icon_label.svg delete mode 100644 editor/icons/icon_large_texture.png create mode 100644 editor/icons/icon_large_texture.svg delete mode 100644 editor/icons/icon_light_2d.png create mode 100644 editor/icons/icon_light_2d.svg delete mode 100644 editor/icons/icon_light_map.png delete mode 100644 editor/icons/icon_light_occluder_2d.png create mode 100644 editor/icons/icon_light_occluder_2d.svg delete mode 100644 editor/icons/icon_lightr.png delete mode 100644 editor/icons/icon_line_2d.png create mode 100644 editor/icons/icon_line_2d.svg delete mode 100644 editor/icons/icon_line_edit.png create mode 100644 editor/icons/icon_line_edit.svg delete mode 100644 editor/icons/icon_line_shape_2d.png create mode 100644 editor/icons/icon_line_shape_2d.svg delete mode 100644 editor/icons/icon_link_button.png create mode 100644 editor/icons/icon_link_button.svg delete mode 100644 editor/icons/icon_list_select.png create mode 100644 editor/icons/icon_list_select.svg delete mode 100644 editor/icons/icon_listener.png create mode 100644 editor/icons/icon_listener.svg delete mode 100644 editor/icons/icon_live_debug.png delete mode 100644 editor/icons/icon_load.png create mode 100644 editor/icons/icon_load.svg delete mode 100644 editor/icons/icon_lock.png create mode 100644 editor/icons/icon_lock.svg delete mode 100644 editor/icons/icon_logo.png delete mode 100644 editor/icons/icon_logo_small.png delete mode 100644 editor/icons/icon_loop.png create mode 100644 editor/icons/icon_loop.svg delete mode 100644 editor/icons/icon_loop_interpolation.png create mode 100644 editor/icons/icon_loop_interpolation.svg delete mode 100644 editor/icons/icon_main_play.png create mode 100644 editor/icons/icon_main_play.svg delete mode 100644 editor/icons/icon_main_stop.png create mode 100644 editor/icons/icon_main_stop.svg delete mode 100644 editor/icons/icon_margin_container.png create mode 100644 editor/icons/icon_margin_container.svg delete mode 100644 editor/icons/icon_material_preview_cube.png create mode 100644 editor/icons/icon_material_preview_cube.svg delete mode 100644 editor/icons/icon_material_preview_cube_off.png create mode 100644 editor/icons/icon_material_preview_cube_off.svg delete mode 100644 editor/icons/icon_material_preview_light_1.png create mode 100644 editor/icons/icon_material_preview_light_1.svg delete mode 100644 editor/icons/icon_material_preview_light_1_off.png create mode 100644 editor/icons/icon_material_preview_light_1_off.svg delete mode 100644 editor/icons/icon_material_preview_light_2.png create mode 100644 editor/icons/icon_material_preview_light_2.svg delete mode 100644 editor/icons/icon_material_preview_light_2_off.png create mode 100644 editor/icons/icon_material_preview_light_2_off.svg delete mode 100644 editor/icons/icon_material_preview_sphere.png create mode 100644 editor/icons/icon_material_preview_sphere.svg delete mode 100644 editor/icons/icon_material_preview_sphere_off.png create mode 100644 editor/icons/icon_material_preview_sphere_off.svg delete mode 100644 editor/icons/icon_material_shader.png delete mode 100644 editor/icons/icon_material_shader_graph.png delete mode 100644 editor/icons/icon_matrix.png create mode 100644 editor/icons/icon_matrix.svg delete mode 100644 editor/icons/icon_menu_button.png create mode 100644 editor/icons/icon_menu_button.svg delete mode 100644 editor/icons/icon_mesh.png create mode 100644 editor/icons/icon_mesh.svg delete mode 100644 editor/icons/icon_mesh_instance.png create mode 100644 editor/icons/icon_mesh_instance.svg delete mode 100644 editor/icons/icon_mesh_library.png create mode 100644 editor/icons/icon_mesh_library.svg delete mode 100644 editor/icons/icon_mesh_old.png delete mode 100644 editor/icons/icon_meshr.png delete mode 100644 editor/icons/icon_mini_aabb.png create mode 100644 editor/icons/icon_mini_aabb.svg delete mode 100644 editor/icons/icon_mini_array.png create mode 100644 editor/icons/icon_mini_array.svg delete mode 100644 editor/icons/icon_mini_basis.png create mode 100644 editor/icons/icon_mini_basis.svg delete mode 100644 editor/icons/icon_mini_boolean.png create mode 100644 editor/icons/icon_mini_boolean.svg delete mode 100644 editor/icons/icon_mini_color.png create mode 100644 editor/icons/icon_mini_color.svg delete mode 100644 editor/icons/icon_mini_color_array.png create mode 100644 editor/icons/icon_mini_color_array.svg delete mode 100644 editor/icons/icon_mini_dictionary.png create mode 100644 editor/icons/icon_mini_dictionary.svg delete mode 100644 editor/icons/icon_mini_float.png create mode 100644 editor/icons/icon_mini_float.svg delete mode 100644 editor/icons/icon_mini_float_array.png create mode 100644 editor/icons/icon_mini_float_array.svg delete mode 100644 editor/icons/icon_mini_image.png create mode 100644 editor/icons/icon_mini_image.svg delete mode 100644 editor/icons/icon_mini_input.png create mode 100644 editor/icons/icon_mini_input.svg delete mode 100644 editor/icons/icon_mini_int_array.png create mode 100644 editor/icons/icon_mini_int_array.svg delete mode 100644 editor/icons/icon_mini_integer.png create mode 100644 editor/icons/icon_mini_integer.svg delete mode 100644 editor/icons/icon_mini_matrix3.png create mode 100644 editor/icons/icon_mini_matrix3.svg delete mode 100644 editor/icons/icon_mini_matrix32.png delete mode 100644 editor/icons/icon_mini_object.png create mode 100644 editor/icons/icon_mini_object.svg delete mode 100644 editor/icons/icon_mini_path.png create mode 100644 editor/icons/icon_mini_path.svg delete mode 100644 editor/icons/icon_mini_plane.png create mode 100644 editor/icons/icon_mini_plane.svg delete mode 100644 editor/icons/icon_mini_quat.png create mode 100644 editor/icons/icon_mini_quat.svg delete mode 100644 editor/icons/icon_mini_raw_array.png create mode 100644 editor/icons/icon_mini_raw_array.svg delete mode 100644 editor/icons/icon_mini_rect2.png create mode 100644 editor/icons/icon_mini_rect2.svg delete mode 100644 editor/icons/icon_mini_rid.png create mode 100644 editor/icons/icon_mini_rid.svg delete mode 100644 editor/icons/icon_mini_string.png create mode 100644 editor/icons/icon_mini_string.svg delete mode 100644 editor/icons/icon_mini_string_array.png create mode 100644 editor/icons/icon_mini_string_array.svg delete mode 100644 editor/icons/icon_mini_transform.png create mode 100644 editor/icons/icon_mini_transform.svg delete mode 100644 editor/icons/icon_mini_transform2D.png create mode 100644 editor/icons/icon_mini_transform2D.svg delete mode 100644 editor/icons/icon_mini_variant.png create mode 100644 editor/icons/icon_mini_variant.svg delete mode 100644 editor/icons/icon_mini_vector2.png create mode 100644 editor/icons/icon_mini_vector2.svg delete mode 100644 editor/icons/icon_mini_vector2_array.png create mode 100644 editor/icons/icon_mini_vector2_array.svg delete mode 100644 editor/icons/icon_mini_vector3.png create mode 100644 editor/icons/icon_mini_vector3.svg delete mode 100644 editor/icons/icon_mini_vector3_array.png create mode 100644 editor/icons/icon_mini_vector3_array.svg delete mode 100644 editor/icons/icon_mirror_x.png create mode 100644 editor/icons/icon_mirror_x.svg delete mode 100644 editor/icons/icon_mirror_y.png create mode 100644 editor/icons/icon_mirror_y.svg delete mode 100644 editor/icons/icon_mouse.png create mode 100644 editor/icons/icon_mouse.svg delete mode 100644 editor/icons/icon_move_down.png create mode 100644 editor/icons/icon_move_down.svg delete mode 100644 editor/icons/icon_move_down_hl.png delete mode 100644 editor/icons/icon_move_point.png create mode 100644 editor/icons/icon_move_point.svg delete mode 100644 editor/icons/icon_move_up.png create mode 100644 editor/icons/icon_move_up.svg delete mode 100644 editor/icons/icon_move_up_hl.png delete mode 100644 editor/icons/icon_multi_edit.png create mode 100644 editor/icons/icon_multi_edit.svg delete mode 100644 editor/icons/icon_multi_line.png create mode 100644 editor/icons/icon_multi_line.svg delete mode 100644 editor/icons/icon_multi_mesh.png create mode 100644 editor/icons/icon_multi_mesh.svg delete mode 100644 editor/icons/icon_multi_mesh_instance.png create mode 100644 editor/icons/icon_multi_mesh_instance.svg delete mode 100644 editor/icons/icon_multi_node_edit.png delete mode 100644 editor/icons/icon_multi_script.png create mode 100644 editor/icons/icon_multi_script.svg delete mode 100644 editor/icons/icon_native_script.png create mode 100644 editor/icons/icon_native_script.svg delete mode 100644 editor/icons/icon_navigation.png create mode 100644 editor/icons/icon_navigation.svg delete mode 100644 editor/icons/icon_navigation_2d.png create mode 100644 editor/icons/icon_navigation_2d.svg delete mode 100644 editor/icons/icon_navigation_mesh.png create mode 100644 editor/icons/icon_navigation_mesh.svg delete mode 100644 editor/icons/icon_navigation_mesh_instance.png create mode 100644 editor/icons/icon_navigation_mesh_instance.svg delete mode 100644 editor/icons/icon_navigation_polygon.png create mode 100644 editor/icons/icon_navigation_polygon.svg delete mode 100644 editor/icons/icon_navigation_polygon_instance.png create mode 100644 editor/icons/icon_navigation_polygon_instance.svg delete mode 100644 editor/icons/icon_new.png create mode 100644 editor/icons/icon_new.svg delete mode 100644 editor/icons/icon_nine_patch_rect.png create mode 100644 editor/icons/icon_nine_patch_rect.svg delete mode 100644 editor/icons/icon_node.png create mode 100644 editor/icons/icon_node.svg delete mode 100644 editor/icons/icon_node_2d.png create mode 100644 editor/icons/icon_node_2d.svg delete mode 100644 editor/icons/icon_node_real_slot.png delete mode 100644 editor/icons/icon_node_vec_slot.png delete mode 100644 editor/icons/icon_node_warning.png create mode 100644 editor/icons/icon_node_warning.svg delete mode 100644 editor/icons/icon_non_favorite.png create mode 100644 editor/icons/icon_non_favorite.svg delete mode 100644 editor/icons/icon_object.png create mode 100644 editor/icons/icon_object.svg delete mode 100644 editor/icons/icon_occluder_polygon_2d.png create mode 100644 editor/icons/icon_occluder_polygon_2d.svg delete mode 100644 editor/icons/icon_omni_light.png create mode 100644 editor/icons/icon_omni_light.svg delete mode 100644 editor/icons/icon_open.png delete mode 100644 editor/icons/icon_option_arrow.png delete mode 100644 editor/icons/icon_option_button.png create mode 100644 editor/icons/icon_option_button.svg delete mode 100644 editor/icons/icon_override.png create mode 100644 editor/icons/icon_override.svg delete mode 100644 editor/icons/icon_p_hash_translation.png delete mode 100644 editor/icons/icon_packed_data_container.png create mode 100644 editor/icons/icon_packed_data_container.svg delete mode 100644 editor/icons/icon_packed_scene.png create mode 100644 editor/icons/icon_packed_scene.svg delete mode 100644 editor/icons/icon_pane_drag.png delete mode 100644 editor/icons/icon_pane_drag_hover.png delete mode 100644 editor/icons/icon_panel.png create mode 100644 editor/icons/icon_panel.svg delete mode 100644 editor/icons/icon_panel_container.png create mode 100644 editor/icons/icon_panel_container.svg delete mode 100644 editor/icons/icon_panel_top.png delete mode 100644 editor/icons/icon_panels_1.png create mode 100644 editor/icons/icon_panels_1.svg delete mode 100644 editor/icons/icon_panels_2.png create mode 100644 editor/icons/icon_panels_2.svg delete mode 100644 editor/icons/icon_panels_2_alt.png create mode 100644 editor/icons/icon_panels_2_alt.svg delete mode 100644 editor/icons/icon_panels_3.png create mode 100644 editor/icons/icon_panels_3.svg delete mode 100644 editor/icons/icon_panels_3_alt.png create mode 100644 editor/icons/icon_panels_3_alt.svg delete mode 100644 editor/icons/icon_panels_4.png create mode 100644 editor/icons/icon_panels_4.svg delete mode 100644 editor/icons/icon_panorama_sky.png create mode 100644 editor/icons/icon_panorama_sky.svg delete mode 100644 editor/icons/icon_parallax_background.png create mode 100644 editor/icons/icon_parallax_background.svg delete mode 100644 editor/icons/icon_parallax_layer.png create mode 100644 editor/icons/icon_parallax_layer.svg delete mode 100644 editor/icons/icon_particle_attractor_2d.png create mode 100644 editor/icons/icon_particle_attractor_2d.svg delete mode 100644 editor/icons/icon_particles.png create mode 100644 editor/icons/icon_particles.svg delete mode 100644 editor/icons/icon_particles_2d.png create mode 100644 editor/icons/icon_particles_2d.svg delete mode 100644 editor/icons/icon_particles_frame.png delete mode 100644 editor/icons/icon_particles_material.png create mode 100644 editor/icons/icon_particles_material.svg delete mode 100644 editor/icons/icon_particles_shader.png delete mode 100644 editor/icons/icon_patch_9_rect.png delete mode 100644 editor/icons/icon_path.png create mode 100644 editor/icons/icon_path.svg delete mode 100644 editor/icons/icon_path_2d.png create mode 100644 editor/icons/icon_path_2d.svg delete mode 100644 editor/icons/icon_path_follow.png create mode 100644 editor/icons/icon_path_follow.svg delete mode 100644 editor/icons/icon_path_follow_2d.png create mode 100644 editor/icons/icon_path_follow_2d.svg delete mode 100644 editor/icons/icon_pause.png create mode 100644 editor/icons/icon_pause.svg delete mode 100644 editor/icons/icon_pe_edit.png delete mode 100644 editor/icons/icon_physics_joint_pin.png delete mode 100644 editor/icons/icon_pin.png create mode 100644 editor/icons/icon_pin.svg delete mode 100644 editor/icons/icon_pin_joint.png create mode 100644 editor/icons/icon_pin_joint.svg delete mode 100644 editor/icons/icon_pin_joint_2d.png create mode 100644 editor/icons/icon_pin_joint_2d.svg delete mode 100644 editor/icons/icon_pin_pressed.png create mode 100644 editor/icons/icon_pin_pressed.svg delete mode 100644 editor/icons/icon_plane.png create mode 100644 editor/icons/icon_plane.svg delete mode 100644 editor/icons/icon_plane_mesh.png create mode 100644 editor/icons/icon_plane_mesh.svg delete mode 100644 editor/icons/icon_plane_shape.png create mode 100644 editor/icons/icon_plane_shape.svg delete mode 100644 editor/icons/icon_play.png create mode 100644 editor/icons/icon_play.svg delete mode 100644 editor/icons/icon_play_backwards.png create mode 100644 editor/icons/icon_play_backwards.svg delete mode 100644 editor/icons/icon_play_button_group.png delete mode 100644 editor/icons/icon_play_custom.png create mode 100644 editor/icons/icon_play_custom.svg delete mode 100644 editor/icons/icon_play_scene.png create mode 100644 editor/icons/icon_play_scene.svg delete mode 100644 editor/icons/icon_play_start.png create mode 100644 editor/icons/icon_play_start.svg delete mode 100644 editor/icons/icon_play_start_backwards.png create mode 100644 editor/icons/icon_play_start_backwards.svg create mode 100644 editor/icons/icon_polygon_2_d.svg delete mode 100644 editor/icons/icon_polygon_2d.png delete mode 100644 editor/icons/icon_polygon_path_finder.png create mode 100644 editor/icons/icon_polygon_path_finder.svg delete mode 100644 editor/icons/icon_popup.png create mode 100644 editor/icons/icon_popup.svg delete mode 100644 editor/icons/icon_popup_dialog.png create mode 100644 editor/icons/icon_popup_dialog.svg delete mode 100644 editor/icons/icon_popup_menu.png create mode 100644 editor/icons/icon_popup_menu.svg delete mode 100644 editor/icons/icon_popup_panel.png create mode 100644 editor/icons/icon_popup_panel.svg delete mode 100644 editor/icons/icon_portal.png create mode 100644 editor/icons/icon_portal.svg delete mode 100644 editor/icons/icon_position_2d.png create mode 100644 editor/icons/icon_position_2d.svg delete mode 100644 editor/icons/icon_position_3d.png create mode 100644 editor/icons/icon_position_3d.svg delete mode 100644 editor/icons/icon_prev_scene.png delete mode 100644 editor/icons/icon_prism_mesh.png create mode 100644 editor/icons/icon_prism_mesh.svg delete mode 100644 editor/icons/icon_procedural_sky.png create mode 100644 editor/icons/icon_procedural_sky.svg delete mode 100644 editor/icons/icon_progress_1.png create mode 100644 editor/icons/icon_progress_1.svg delete mode 100644 editor/icons/icon_progress_2.png create mode 100644 editor/icons/icon_progress_2.svg delete mode 100644 editor/icons/icon_progress_3.png create mode 100644 editor/icons/icon_progress_3.svg delete mode 100644 editor/icons/icon_progress_4.png create mode 100644 editor/icons/icon_progress_4.svg delete mode 100644 editor/icons/icon_progress_5.png create mode 100644 editor/icons/icon_progress_5.svg delete mode 100644 editor/icons/icon_progress_6.png create mode 100644 editor/icons/icon_progress_6.svg delete mode 100644 editor/icons/icon_progress_7.png create mode 100644 editor/icons/icon_progress_7.svg delete mode 100644 editor/icons/icon_progress_8.png create mode 100644 editor/icons/icon_progress_8.svg delete mode 100644 editor/icons/icon_progress_bar.png create mode 100644 editor/icons/icon_progress_bar.svg delete mode 100644 editor/icons/icon_property_editor.png delete mode 100644 editor/icons/icon_proximity_group.png create mode 100644 editor/icons/icon_proximity_group.svg delete mode 100644 editor/icons/icon_quad.png create mode 100644 editor/icons/icon_quad.svg delete mode 100644 editor/icons/icon_quad_mesh.png create mode 100644 editor/icons/icon_quad_mesh.svg delete mode 100644 editor/icons/icon_quat.png create mode 100644 editor/icons/icon_quat.svg delete mode 100644 editor/icons/icon_range.png create mode 100644 editor/icons/icon_range.svg delete mode 100644 editor/icons/icon_rating_no_star.png create mode 100644 editor/icons/icon_rating_no_star.svg delete mode 100644 editor/icons/icon_rating_star.png create mode 100644 editor/icons/icon_rating_star.svg delete mode 100644 editor/icons/icon_ray_cast.png create mode 100644 editor/icons/icon_ray_cast.svg delete mode 100644 editor/icons/icon_ray_cast_2d.png create mode 100644 editor/icons/icon_ray_cast_2d.svg delete mode 100644 editor/icons/icon_ray_shape.png create mode 100644 editor/icons/icon_ray_shape.svg delete mode 100644 editor/icons/icon_ray_shape_2d.png create mode 100644 editor/icons/icon_ray_shape_2d.svg delete mode 100644 editor/icons/icon_rayito.png create mode 100644 editor/icons/icon_rayito.svg delete mode 100644 editor/icons/icon_real.png create mode 100644 editor/icons/icon_real.svg delete mode 100644 editor/icons/icon_rect2.png delete mode 100644 editor/icons/icon_rect3.png delete mode 100644 editor/icons/icon_rectangle_shape_2d.png create mode 100644 editor/icons/icon_rectangle_shape_2d.svg delete mode 100644 editor/icons/icon_reference_rect.png create mode 100644 editor/icons/icon_reference_rect.svg delete mode 100644 editor/icons/icon_reflection_probe.png create mode 100644 editor/icons/icon_reflection_probe.svg delete mode 100644 editor/icons/icon_region_edit.png create mode 100644 editor/icons/icon_region_edit.svg delete mode 100644 editor/icons/icon_reload.png delete mode 100644 editor/icons/icon_reload_empty.png delete mode 100644 editor/icons/icon_reload_small.png create mode 100644 editor/icons/icon_reload_small.svg delete mode 100644 editor/icons/icon_remote.png create mode 100644 editor/icons/icon_remote.svg delete mode 100644 editor/icons/icon_remote_transform.png create mode 100644 editor/icons/icon_remote_transform.svg delete mode 100644 editor/icons/icon_remote_transform_2d.png create mode 100644 editor/icons/icon_remote_transform_2d.svg delete mode 100644 editor/icons/icon_remove.png create mode 100644 editor/icons/icon_remove.svg delete mode 100644 editor/icons/icon_remove_hl.png delete mode 100644 editor/icons/icon_remove_small.png delete mode 100644 editor/icons/icon_rename.png create mode 100644 editor/icons/icon_rename.svg delete mode 100644 editor/icons/icon_reparent.png create mode 100644 editor/icons/icon_reparent.svg delete mode 100644 editor/icons/icon_replace.png delete mode 100644 editor/icons/icon_resource_preloader.png create mode 100644 editor/icons/icon_resource_preloader.svg delete mode 100644 editor/icons/icon_rich_text_label.png create mode 100644 editor/icons/icon_rich_text_label.svg delete mode 100644 editor/icons/icon_rid.png delete mode 100644 editor/icons/icon_rigid_body.png create mode 100644 editor/icons/icon_rigid_body.svg delete mode 100644 editor/icons/icon_rigid_body_2_d.png delete mode 100644 editor/icons/icon_rigid_body_2d.png create mode 100644 editor/icons/icon_rigid_body_2d.svg delete mode 100644 editor/icons/icon_room.png create mode 100644 editor/icons/icon_room.svg delete mode 100644 editor/icons/icon_room_bounds.png create mode 100644 editor/icons/icon_room_bounds.svg delete mode 100644 editor/icons/icon_room_instance.png delete mode 100644 editor/icons/icon_rotate_0.png create mode 100644 editor/icons/icon_rotate_0.svg delete mode 100644 editor/icons/icon_rotate_180.png create mode 100644 editor/icons/icon_rotate_180.svg delete mode 100644 editor/icons/icon_rotate_270.png create mode 100644 editor/icons/icon_rotate_270.svg delete mode 100644 editor/icons/icon_rotate_90.png create mode 100644 editor/icons/icon_rotate_90.svg delete mode 100644 editor/icons/icon_run.png delete mode 100644 editor/icons/icon_s_s_a_o_f_x.png delete mode 100644 editor/icons/icon_sample.png delete mode 100644 editor/icons/icon_sample_library.png create mode 100644 editor/icons/icon_sample_library.svg delete mode 100644 editor/icons/icon_sample_player.png delete mode 100644 editor/icons/icon_sample_player_2d.png delete mode 100644 editor/icons/icon_save.png create mode 100644 editor/icons/icon_save.svg delete mode 100644 editor/icons/icon_scene.png delete mode 100644 editor/icons/icon_scene_instance.png delete mode 100644 editor/icons/icon_scene_tree_editor.png delete mode 100644 editor/icons/icon_script.png create mode 100644 editor/icons/icon_script.svg delete mode 100644 editor/icons/icon_script_control.png delete mode 100644 editor/icons/icon_script_create.png create mode 100644 editor/icons/icon_script_create.svg delete mode 100644 editor/icons/icon_script_error.png delete mode 100644 editor/icons/icon_script_list.png delete mode 100644 editor/icons/icon_script_node.png delete mode 100644 editor/icons/icon_script_remove.png create mode 100644 editor/icons/icon_script_remove.svg delete mode 100644 editor/icons/icon_scroll_bar.png create mode 100644 editor/icons/icon_scroll_bar.svg delete mode 100644 editor/icons/icon_scroll_bg.png delete mode 100644 editor/icons/icon_scroll_container.png create mode 100644 editor/icons/icon_scroll_container.svg delete mode 100644 editor/icons/icon_scroll_grabber.png delete mode 100644 editor/icons/icon_scroll_grabber_hl.png delete mode 100644 editor/icons/icon_search.png create mode 100644 editor/icons/icon_search.svg delete mode 100644 editor/icons/icon_segment_shape_2d.png create mode 100644 editor/icons/icon_segment_shape_2d.svg delete mode 100644 editor/icons/icon_shader.png create mode 100644 editor/icons/icon_shader.svg delete mode 100644 editor/icons/icon_shader_material.png delete mode 100644 editor/icons/icon_short_cut.png create mode 100644 editor/icons/icon_short_cut.svg delete mode 100644 editor/icons/icon_signal.png create mode 100644 editor/icons/icon_signal.svg delete mode 100644 editor/icons/icon_skeleton.png create mode 100644 editor/icons/icon_skeleton.svg delete mode 100644 editor/icons/icon_skeletonr.png delete mode 100644 editor/icons/icon_sky_box_f_x.png delete mode 100644 editor/icons/icon_slider_grabber.png delete mode 100644 editor/icons/icon_slider_grabber_hl.png delete mode 100644 editor/icons/icon_slider_joint.png create mode 100644 editor/icons/icon_slider_joint.svg delete mode 100644 editor/icons/icon_slot.png create mode 100644 editor/icons/icon_slot.svg delete mode 100644 editor/icons/icon_small_next.png delete mode 100644 editor/icons/icon_snap.png create mode 100644 editor/icons/icon_snap.svg delete mode 100644 editor/icons/icon_sound_room_params.png create mode 100644 editor/icons/icon_sound_room_params.svg delete mode 100644 editor/icons/icon_spatial.png create mode 100644 editor/icons/icon_spatial.svg delete mode 100644 editor/icons/icon_spatial_add.png delete mode 100644 editor/icons/icon_spatial_material.png create mode 100644 editor/icons/icon_spatial_material.svg delete mode 100644 editor/icons/icon_spatial_sample_player.png create mode 100644 editor/icons/icon_spatial_sample_player.svg delete mode 100644 editor/icons/icon_spatial_shader.png delete mode 100644 editor/icons/icon_spatial_stream_player.png create mode 100644 editor/icons/icon_spatial_stream_player.svg delete mode 100644 editor/icons/icon_sphere_mesh.png create mode 100644 editor/icons/icon_sphere_mesh.svg delete mode 100644 editor/icons/icon_sphere_shape.png create mode 100644 editor/icons/icon_sphere_shape.svg delete mode 100644 editor/icons/icon_spin_box.png create mode 100644 editor/icons/icon_spin_box.svg delete mode 100644 editor/icons/icon_spinbox_updown.png delete mode 100644 editor/icons/icon_spline.png delete mode 100644 editor/icons/icon_spot_light.png create mode 100644 editor/icons/icon_spot_light.svg delete mode 100644 editor/icons/icon_sprite.png create mode 100644 editor/icons/icon_sprite.svg delete mode 100644 editor/icons/icon_sprite_3d.png create mode 100644 editor/icons/icon_sprite_3d.svg delete mode 100644 editor/icons/icon_sprite_frames.png create mode 100644 editor/icons/icon_sprite_frames.svg delete mode 100644 editor/icons/icon_squirrel_script.png delete mode 100644 editor/icons/icon_static_body.png create mode 100644 editor/icons/icon_static_body.svg delete mode 100644 editor/icons/icon_static_body_2_d.png delete mode 100644 editor/icons/icon_static_body_2d.png create mode 100644 editor/icons/icon_static_body_2d.svg delete mode 100644 editor/icons/icon_stop.png delete mode 100644 editor/icons/icon_stream_player.png create mode 100644 editor/icons/icon_stream_player.svg delete mode 100644 editor/icons/icon_stream_texture.png create mode 100644 editor/icons/icon_stream_texture.svg delete mode 100644 editor/icons/icon_string.png create mode 100644 editor/icons/icon_string.svg delete mode 100644 editor/icons/icon_style_box_empty.png create mode 100644 editor/icons/icon_style_box_empty.svg delete mode 100644 editor/icons/icon_style_box_flat.png create mode 100644 editor/icons/icon_style_box_flat.svg delete mode 100644 editor/icons/icon_style_box_texture.png create mode 100644 editor/icons/icon_style_box_texture.svg delete mode 100644 editor/icons/icon_surface.png delete mode 100644 editor/icons/icon_tab_container.png create mode 100644 editor/icons/icon_tab_container.svg delete mode 100644 editor/icons/icon_tab_menu.png delete mode 100644 editor/icons/icon_tabs.png create mode 100644 editor/icons/icon_tabs.svg delete mode 100644 editor/icons/icon_test_cube.png create mode 100644 editor/icons/icon_test_cube.svg delete mode 100644 editor/icons/icon_text_edit.png create mode 100644 editor/icons/icon_text_edit.svg delete mode 100644 editor/icons/icon_texture.png delete mode 100644 editor/icons/icon_texture_button.png create mode 100644 editor/icons/icon_texture_button.svg delete mode 100644 editor/icons/icon_texture_progress.png create mode 100644 editor/icons/icon_texture_progress.svg delete mode 100644 editor/icons/icon_texture_rect.png create mode 100644 editor/icons/icon_texture_rect.svg delete mode 100644 editor/icons/icon_theme.png create mode 100644 editor/icons/icon_theme.svg delete mode 100644 editor/icons/icon_thumbnail_wait.png delete mode 100644 editor/icons/icon_tile_map.png create mode 100644 editor/icons/icon_tile_map.svg delete mode 100644 editor/icons/icon_tile_set.png create mode 100644 editor/icons/icon_tile_set.svg delete mode 100644 editor/icons/icon_time.png delete mode 100644 editor/icons/icon_timer.png create mode 100644 editor/icons/icon_timer.svg delete mode 100644 editor/icons/icon_tool_button.png create mode 100644 editor/icons/icon_tool_button.svg delete mode 100644 editor/icons/icon_tool_move.png create mode 100644 editor/icons/icon_tool_move.svg delete mode 100644 editor/icons/icon_tool_pan.png create mode 100644 editor/icons/icon_tool_pan.svg delete mode 100644 editor/icons/icon_tool_rotate.png create mode 100644 editor/icons/icon_tool_rotate.svg delete mode 100644 editor/icons/icon_tool_scale.png create mode 100644 editor/icons/icon_tool_scale.svg delete mode 100644 editor/icons/icon_tool_select.png create mode 100644 editor/icons/icon_tool_select.svg delete mode 100644 editor/icons/icon_tools.png create mode 100644 editor/icons/icon_tools.svg delete mode 100644 editor/icons/icon_touch_screen_button.png create mode 100644 editor/icons/icon_touch_screen_button.svg delete mode 100644 editor/icons/icon_track_add_key.png create mode 100644 editor/icons/icon_track_add_key.svg delete mode 100644 editor/icons/icon_track_add_key_hl.png create mode 100644 editor/icons/icon_track_add_key_hl.svg delete mode 100644 editor/icons/icon_track_continuous.png create mode 100644 editor/icons/icon_track_continuous.svg delete mode 100644 editor/icons/icon_track_discrete.png create mode 100644 editor/icons/icon_track_discrete.svg delete mode 100644 editor/icons/icon_track_method.png delete mode 100644 editor/icons/icon_track_prop.png delete mode 100644 editor/icons/icon_track_trigger.png create mode 100644 editor/icons/icon_track_trigger.svg delete mode 100644 editor/icons/icon_track_value.png delete mode 100644 editor/icons/icon_translation.png create mode 100644 editor/icons/icon_translation.svg delete mode 100644 editor/icons/icon_transparent.png delete mode 100644 editor/icons/icon_transpose.png create mode 100644 editor/icons/icon_transpose.svg delete mode 100644 editor/icons/icon_tree.png create mode 100644 editor/icons/icon_tree.svg delete mode 100644 editor/icons/icon_tree_arrow_down.png delete mode 100644 editor/icons/icon_tree_arrow_right.png delete mode 100644 editor/icons/icon_tween.png create mode 100644 editor/icons/icon_tween.svg delete mode 100644 editor/icons/icon_unbone.png create mode 100644 editor/icons/icon_unbone.svg delete mode 100644 editor/icons/icon_unchecked.png delete mode 100644 editor/icons/icon_ungroup.png create mode 100644 editor/icons/icon_ungroup.svg delete mode 100644 editor/icons/icon_uninstance.png delete mode 100644 editor/icons/icon_unlock.png create mode 100644 editor/icons/icon_unlock.svg delete mode 100644 editor/icons/icon_up.png delete mode 100644 editor/icons/icon_updown.png delete mode 100644 editor/icons/icon_uv.png create mode 100644 editor/icons/icon_uv.svg delete mode 100644 editor/icons/icon_v_box_container.png create mode 100644 editor/icons/icon_v_box_container.svg delete mode 100644 editor/icons/icon_v_button_array.png create mode 100644 editor/icons/icon_v_button_array.svg delete mode 100644 editor/icons/icon_v_scroll_bar.png create mode 100644 editor/icons/icon_v_scroll_bar.svg delete mode 100644 editor/icons/icon_v_separator.png create mode 100644 editor/icons/icon_v_separator.svg delete mode 100644 editor/icons/icon_v_slider.png create mode 100644 editor/icons/icon_v_slider.svg delete mode 100644 editor/icons/icon_v_split_container.png create mode 100644 editor/icons/icon_v_split_container.svg delete mode 100644 editor/icons/icon_variant.png create mode 100644 editor/icons/icon_variant.svg delete mode 100644 editor/icons/icon_vector.png create mode 100644 editor/icons/icon_vector.svg delete mode 100644 editor/icons/icon_vector2.png create mode 100644 editor/icons/icon_vector2.svg delete mode 100644 editor/icons/icon_vehicle_body.png create mode 100644 editor/icons/icon_vehicle_body.svg delete mode 100644 editor/icons/icon_vehicle_wheel.png create mode 100644 editor/icons/icon_vehicle_wheel.svg delete mode 100644 editor/icons/icon_video_player.png create mode 100644 editor/icons/icon_video_player.svg delete mode 100644 editor/icons/icon_video_stream_theora.png delete mode 100644 editor/icons/icon_view.png delete mode 100644 editor/icons/icon_viewport.png create mode 100644 editor/icons/icon_viewport.svg delete mode 100644 editor/icons/icon_viewport_container.png create mode 100644 editor/icons/icon_viewport_container.svg delete mode 100644 editor/icons/icon_viewport_sprite.png create mode 100644 editor/icons/icon_viewport_sprite.svg delete mode 100644 editor/icons/icon_viewport_texture.png create mode 100644 editor/icons/icon_viewport_texture.svg delete mode 100644 editor/icons/icon_visibility_area.png delete mode 100644 editor/icons/icon_visibility_enabler.png create mode 100644 editor/icons/icon_visibility_enabler.svg delete mode 100644 editor/icons/icon_visibility_enabler_2d.png create mode 100644 editor/icons/icon_visibility_enabler_2d.svg delete mode 100644 editor/icons/icon_visibility_notifier.png create mode 100644 editor/icons/icon_visibility_notifier.svg delete mode 100644 editor/icons/icon_visibility_notifier_2d.png create mode 100644 editor/icons/icon_visibility_notifier_2d.svg delete mode 100644 editor/icons/icon_visible.png create mode 100644 editor/icons/icon_visible.svg delete mode 100644 editor/icons/icon_visual_script.png create mode 100644 editor/icons/icon_visual_script.svg delete mode 100644 editor/icons/icon_visual_shader_port.png create mode 100644 editor/icons/icon_visual_shader_port.svg delete mode 100644 editor/icons/icon_volume.png delete mode 100644 editor/icons/icon_vslider_bg.png delete mode 100644 editor/icons/icon_vsplit_bg.png delete mode 100644 editor/icons/icon_vsplitter.png delete mode 100644 editor/icons/icon_vu_db.png delete mode 100644 editor/icons/icon_vu_empty.png create mode 100644 editor/icons/icon_vu_empty.svg delete mode 100644 editor/icons/icon_vu_full.png create mode 100644 editor/icons/icon_vu_full.svg delete mode 100644 editor/icons/icon_wait_no_preview.png delete mode 100644 editor/icons/icon_wait_preview_1.png delete mode 100644 editor/icons/icon_wait_preview_2.png delete mode 100644 editor/icons/icon_wait_preview_3.png delete mode 100644 editor/icons/icon_wait_preview_4.png delete mode 100644 editor/icons/icon_wait_preview_5.png delete mode 100644 editor/icons/icon_wait_preview_6.png delete mode 100644 editor/icons/icon_wait_preview_7.png delete mode 100644 editor/icons/icon_wait_preview_8.png delete mode 100644 editor/icons/icon_warning.png create mode 100644 editor/icons/icon_warning.svg delete mode 100644 editor/icons/icon_window_dialog.png create mode 100644 editor/icons/icon_window_dialog.svg delete mode 100644 editor/icons/icon_world.png create mode 100644 editor/icons/icon_world.svg delete mode 100644 editor/icons/icon_world_2d.png create mode 100644 editor/icons/icon_world_2d.svg delete mode 100644 editor/icons/icon_world_environment.png create mode 100644 editor/icons/icon_world_environment.svg delete mode 100644 editor/icons/icon_y_sort.png create mode 100644 editor/icons/icon_y_sort.svg delete mode 100644 editor/icons/icon_zoom.png create mode 100644 editor/icons/icon_zoom.svg delete mode 100644 editor/icons/icon_zoom_less.png create mode 100644 editor/icons/icon_zoom_less.svg delete mode 100644 editor/icons/icon_zoom_more.png create mode 100644 editor/icons/icon_zoom_more.svg delete mode 100644 editor/icons/icon_zoom_reset.png create mode 100644 editor/icons/icon_zoom_reset.svg delete mode 100644 editor/icons/source/icon_2_d.svg delete mode 100644 editor/icons/source/icon_3_d.svg delete mode 100644 editor/icons/source/icon_GUI_checked.svg delete mode 100644 editor/icons/source/icon_GUI_dropdown.svg delete mode 100644 editor/icons/source/icon_GUI_hslider_bg.svg delete mode 100644 editor/icons/source/icon_GUI_hsplitter.svg delete mode 100644 editor/icons/source/icon_GUI_mini_tab_menu.svg delete mode 100644 editor/icons/source/icon_GUI_option_arrow.svg delete mode 100644 editor/icons/source/icon_GUI_play_button_group.svg delete mode 100644 editor/icons/source/icon_GUI_progress_bar.svg delete mode 100644 editor/icons/source/icon_GUI_progress_fill.svg delete mode 100644 editor/icons/source/icon_GUI_radio_checked.svg delete mode 100644 editor/icons/source/icon_GUI_radio_unchecked.svg delete mode 100644 editor/icons/source/icon_GUI_scroll_bg.svg delete mode 100644 editor/icons/source/icon_GUI_scroll_grabber.svg delete mode 100644 editor/icons/source/icon_GUI_scroll_grabber_hl.svg delete mode 100644 editor/icons/source/icon_GUI_scroll_grabber_pressed.svg delete mode 100644 editor/icons/source/icon_GUI_slider_grabber.svg delete mode 100644 editor/icons/source/icon_GUI_slider_grabber_hl.svg delete mode 100644 editor/icons/source/icon_GUI_spinbox_updown.svg delete mode 100644 editor/icons/source/icon_GUI_tab_menu.svg delete mode 100644 editor/icons/source/icon_GUI_toggle_off.svg delete mode 100644 editor/icons/source/icon_GUI_toggle_on.svg delete mode 100644 editor/icons/source/icon_GUI_tree_arrow_down.svg delete mode 100644 editor/icons/source/icon_GUI_tree_arrow_right.svg delete mode 100644 editor/icons/source/icon_GUI_unchecked.svg delete mode 100644 editor/icons/source/icon_GUI_vslider_bg.svg delete mode 100644 editor/icons/source/icon_GUI_vsplit_bg.svg delete mode 100644 editor/icons/source/icon_GUI_vsplitter.svg delete mode 100644 editor/icons/source/icon_accept_dialog.svg delete mode 100644 editor/icons/source/icon_add_track.svg delete mode 100644 editor/icons/source/icon_anchor.svg delete mode 100644 editor/icons/source/icon_animated_sprite.svg delete mode 100644 editor/icons/source/icon_animated_sprite_3d.svg delete mode 100644 editor/icons/source/icon_animation.svg delete mode 100644 editor/icons/source/icon_animation_player.svg delete mode 100644 editor/icons/source/icon_animation_tree_player.svg delete mode 100644 editor/icons/source/icon_area.svg delete mode 100644 editor/icons/source/icon_area_2d.svg delete mode 100644 editor/icons/source/icon_arrow_left.svg delete mode 100644 editor/icons/source/icon_arrow_right.svg delete mode 100644 editor/icons/source/icon_arrow_up.svg delete mode 100644 editor/icons/source/icon_asset_lib.svg delete mode 100644 editor/icons/source/icon_atlas_texture.svg delete mode 100644 editor/icons/source/icon_audio_bus_bypass.svg delete mode 100644 editor/icons/source/icon_audio_bus_layout.svg delete mode 100644 editor/icons/source/icon_audio_bus_mute.svg delete mode 100644 editor/icons/source/icon_audio_bus_solo.svg delete mode 100644 editor/icons/source/icon_audio_effect_amplify.svg delete mode 100644 editor/icons/source/icon_audio_stream_gibberish.svg delete mode 100644 editor/icons/source/icon_audio_stream_player.svg delete mode 100644 editor/icons/source/icon_audio_stream_player_2_d.svg delete mode 100644 editor/icons/source/icon_audio_stream_player_3_d.svg delete mode 100644 editor/icons/source/icon_audio_stream_sample.svg delete mode 100644 editor/icons/source/icon_auto_play.svg delete mode 100644 editor/icons/source/icon_back.svg delete mode 100644 editor/icons/source/icon_back_buffer_copy.svg delete mode 100644 editor/icons/source/icon_bake.svg delete mode 100644 editor/icons/source/icon_baked_light.svg delete mode 100644 editor/icons/source/icon_baked_light_instance.svg delete mode 100644 editor/icons/source/icon_baked_light_sampler.svg delete mode 100644 editor/icons/source/icon_bit_map.svg delete mode 100644 editor/icons/source/icon_bitmap_font.svg delete mode 100644 editor/icons/source/icon_blend.svg delete mode 100644 editor/icons/source/icon_bone.svg delete mode 100644 editor/icons/source/icon_bone_attachment.svg delete mode 100644 editor/icons/source/icon_bone_track.svg delete mode 100644 editor/icons/source/icon_bool.svg delete mode 100644 editor/icons/source/icon_box_shape.svg delete mode 100644 editor/icons/source/icon_bus_vu_db.svg delete mode 100644 editor/icons/source/icon_bus_vu_empty.svg delete mode 100644 editor/icons/source/icon_bus_vu_frozen.svg delete mode 100644 editor/icons/source/icon_bus_vu_full.svg delete mode 100644 editor/icons/source/icon_button.svg delete mode 100644 editor/icons/source/icon_button_group.svg delete mode 100644 editor/icons/source/icon_camera.svg delete mode 100644 editor/icons/source/icon_camera_2d.svg delete mode 100644 editor/icons/source/icon_canvas_item.svg delete mode 100644 editor/icons/source/icon_canvas_item_material.svg delete mode 100644 editor/icons/source/icon_canvas_item_shader.svg delete mode 100644 editor/icons/source/icon_canvas_item_shader_graph.svg delete mode 100644 editor/icons/source/icon_canvas_layer.svg delete mode 100644 editor/icons/source/icon_canvas_modulate.svg delete mode 100644 editor/icons/source/icon_capsule_mesh.svg delete mode 100644 editor/icons/source/icon_capsule_shape.svg delete mode 100644 editor/icons/source/icon_capsule_shape_2d.svg delete mode 100644 editor/icons/source/icon_center_container.svg delete mode 100644 editor/icons/source/icon_check_box.svg delete mode 100644 editor/icons/source/icon_check_button.svg delete mode 100644 editor/icons/source/icon_circle_shape_2d.svg delete mode 100644 editor/icons/source/icon_class_list.svg delete mode 100644 editor/icons/source/icon_close.svg delete mode 100644 editor/icons/source/icon_collapse.svg delete mode 100644 editor/icons/source/icon_collision_2d.svg delete mode 100644 editor/icons/source/icon_collision_polygon.svg delete mode 100644 editor/icons/source/icon_collision_shape.svg delete mode 100644 editor/icons/source/icon_collision_shape_2d.svg delete mode 100644 editor/icons/source/icon_color.svg delete mode 100644 editor/icons/source/icon_color_pick.svg delete mode 100644 editor/icons/source/icon_color_picker.svg delete mode 100644 editor/icons/source/icon_color_picker_button.svg delete mode 100644 editor/icons/source/icon_color_ramp.svg delete mode 100644 editor/icons/source/icon_color_rect.svg delete mode 100644 editor/icons/source/icon_concave_polygon_shape.svg delete mode 100644 editor/icons/source/icon_concave_polygon_shape_2d.svg delete mode 100644 editor/icons/source/icon_cone_twist_joint.svg delete mode 100644 editor/icons/source/icon_confirmation_dialog.svg delete mode 100644 editor/icons/source/icon_connect.svg delete mode 100644 editor/icons/source/icon_connection_and_groups.svg delete mode 100644 editor/icons/source/icon_container.svg delete mode 100644 editor/icons/source/icon_control.svg delete mode 100644 editor/icons/source/icon_control_align_bottom_center.svg delete mode 100644 editor/icons/source/icon_control_align_bottom_left.svg delete mode 100644 editor/icons/source/icon_control_align_bottom_right.svg delete mode 100644 editor/icons/source/icon_control_align_bottom_wide.svg delete mode 100644 editor/icons/source/icon_control_align_center.svg delete mode 100644 editor/icons/source/icon_control_align_center_left.svg delete mode 100644 editor/icons/source/icon_control_align_center_right.svg delete mode 100644 editor/icons/source/icon_control_align_left_center.svg delete mode 100644 editor/icons/source/icon_control_align_left_wide.svg delete mode 100644 editor/icons/source/icon_control_align_right_center.svg delete mode 100644 editor/icons/source/icon_control_align_right_wide.svg delete mode 100644 editor/icons/source/icon_control_align_top_center.svg delete mode 100644 editor/icons/source/icon_control_align_top_left.svg delete mode 100644 editor/icons/source/icon_control_align_top_right.svg delete mode 100644 editor/icons/source/icon_control_align_top_wide.svg delete mode 100644 editor/icons/source/icon_control_align_wide.svg delete mode 100644 editor/icons/source/icon_control_hcenter_wide.svg delete mode 100644 editor/icons/source/icon_control_vcenter_wide.svg delete mode 100644 editor/icons/source/icon_convex_polygon_shape.svg delete mode 100644 editor/icons/source/icon_convex_polygon_shape_2d.svg delete mode 100644 editor/icons/source/icon_copy_node_path.svg delete mode 100644 editor/icons/source/icon_create_new_scene_from.svg delete mode 100644 editor/icons/source/icon_cube_map.svg delete mode 100644 editor/icons/source/icon_cube_mesh.svg delete mode 100644 editor/icons/source/icon_curve.svg delete mode 100644 editor/icons/source/icon_curve_2d.svg delete mode 100644 editor/icons/source/icon_curve_3d.svg delete mode 100644 editor/icons/source/icon_curve_close.svg delete mode 100644 editor/icons/source/icon_curve_constant.svg delete mode 100644 editor/icons/source/icon_curve_create.svg delete mode 100644 editor/icons/source/icon_curve_curve.svg delete mode 100644 editor/icons/source/icon_curve_delete.svg delete mode 100644 editor/icons/source/icon_curve_edit.svg delete mode 100644 editor/icons/source/icon_curve_in.svg delete mode 100644 editor/icons/source/icon_curve_in_out.svg delete mode 100644 editor/icons/source/icon_curve_linear.svg delete mode 100644 editor/icons/source/icon_curve_out.svg delete mode 100644 editor/icons/source/icon_curve_out_in.svg delete mode 100644 editor/icons/source/icon_curve_texture.svg delete mode 100644 editor/icons/source/icon_cylinder_mesh.svg delete mode 100644 editor/icons/source/icon_damped_spring_joint_2d.svg delete mode 100644 editor/icons/source/icon_debug.svg delete mode 100644 editor/icons/source/icon_debug_continue.svg delete mode 100644 editor/icons/source/icon_debug_next.svg delete mode 100644 editor/icons/source/icon_debug_step.svg delete mode 100644 editor/icons/source/icon_dependency_changed.svg delete mode 100644 editor/icons/source/icon_dependency_changed_hl.svg delete mode 100644 editor/icons/source/icon_dependency_local_changed.svg delete mode 100644 editor/icons/source/icon_dependency_local_changed_hl.svg delete mode 100644 editor/icons/source/icon_dependency_ok.svg delete mode 100644 editor/icons/source/icon_dependency_ok_hl.svg delete mode 100644 editor/icons/source/icon_directional_light.svg delete mode 100644 editor/icons/source/icon_distraction_free.svg delete mode 100644 editor/icons/source/icon_duplicate.svg delete mode 100644 editor/icons/source/icon_dynamic_font.svg delete mode 100644 editor/icons/source/icon_dynamic_font_data.svg delete mode 100644 editor/icons/source/icon_edit.svg delete mode 100644 editor/icons/source/icon_edit_key.svg delete mode 100644 editor/icons/source/icon_edit_pivot.svg delete mode 100644 editor/icons/source/icon_edit_resource.svg delete mode 100644 editor/icons/source/icon_editor_3d_handle.svg delete mode 100644 editor/icons/source/icon_editor_control_anchor.svg delete mode 100644 editor/icons/source/icon_editor_handle.svg delete mode 100644 editor/icons/source/icon_editor_pivot.svg delete mode 100644 editor/icons/source/icon_editor_plugin.svg delete mode 100644 editor/icons/source/icon_environment.svg delete mode 100644 editor/icons/source/icon_error.svg delete mode 100644 editor/icons/source/icon_error_sign.svg delete mode 100644 editor/icons/source/icon_event_player.svg delete mode 100644 editor/icons/source/icon_favorites.svg delete mode 100644 editor/icons/source/icon_file_big.svg delete mode 100644 editor/icons/source/icon_file_dialog.svg delete mode 100644 editor/icons/source/icon_file_list.svg delete mode 100644 editor/icons/source/icon_file_server.svg delete mode 100644 editor/icons/source/icon_file_server_active.svg delete mode 100644 editor/icons/source/icon_file_thumbnail.svg delete mode 100644 editor/icons/source/icon_fixed_material.svg delete mode 100644 editor/icons/source/icon_fixed_spatial_material.svg delete mode 100644 editor/icons/source/icon_folder.svg delete mode 100644 editor/icons/source/icon_folder_big.svg delete mode 100644 editor/icons/source/icon_font.svg delete mode 100644 editor/icons/source/icon_forward.svg delete mode 100644 editor/icons/source/icon_g_d_native_library.svg delete mode 100644 editor/icons/source/icon_g_d_script.svg delete mode 100644 editor/icons/source/icon_g_i_probe.svg delete mode 100644 editor/icons/source/icon_g_i_probe_data.svg delete mode 100644 editor/icons/source/icon_generic_6_d_o_f_joint.svg delete mode 100644 editor/icons/source/icon_gizmo_directional_light.svg delete mode 100644 editor/icons/source/icon_gizmo_light.svg delete mode 100644 editor/icons/source/icon_gizmo_listener.svg delete mode 100644 editor/icons/source/icon_gizmo_spatial_sample_player.svg delete mode 100644 editor/icons/source/icon_gizmo_spatial_stream_player.svg delete mode 100644 editor/icons/source/icon_godot.svg delete mode 100644 editor/icons/source/icon_gradient.svg delete mode 100644 editor/icons/source/icon_gradient_texture.svg delete mode 100644 editor/icons/source/icon_graph_comment.svg delete mode 100644 editor/icons/source/icon_graph_cube_uniform.svg delete mode 100644 editor/icons/source/icon_graph_curve_map.svg delete mode 100644 editor/icons/source/icon_graph_default_texture.svg delete mode 100644 editor/icons/source/icon_graph_edit.svg delete mode 100644 editor/icons/source/icon_graph_input.svg delete mode 100644 editor/icons/source/icon_graph_node.svg delete mode 100644 editor/icons/source/icon_graph_rgb.svg delete mode 100644 editor/icons/source/icon_graph_rgb_op.svg delete mode 100644 editor/icons/source/icon_graph_rgb_uniform.svg delete mode 100644 editor/icons/source/icon_graph_scalar.svg delete mode 100644 editor/icons/source/icon_graph_scalar_interp.svg delete mode 100644 editor/icons/source/icon_graph_scalar_op.svg delete mode 100644 editor/icons/source/icon_graph_scalar_uniform.svg delete mode 100644 editor/icons/source/icon_graph_scalars_to_vec.svg delete mode 100644 editor/icons/source/icon_graph_texscreen.svg delete mode 100644 editor/icons/source/icon_graph_texture_uniform.svg delete mode 100644 editor/icons/source/icon_graph_time.svg delete mode 100644 editor/icons/source/icon_graph_vec_dp.svg delete mode 100644 editor/icons/source/icon_graph_vec_interp.svg delete mode 100644 editor/icons/source/icon_graph_vec_length.svg delete mode 100644 editor/icons/source/icon_graph_vec_op.svg delete mode 100644 editor/icons/source/icon_graph_vec_scalar_op.svg delete mode 100644 editor/icons/source/icon_graph_vec_to_scalars.svg delete mode 100644 editor/icons/source/icon_graph_vecs_to_xform.svg delete mode 100644 editor/icons/source/icon_graph_vector.svg delete mode 100644 editor/icons/source/icon_graph_vector_uniform.svg delete mode 100644 editor/icons/source/icon_graph_xform.svg delete mode 100644 editor/icons/source/icon_graph_xform_mult.svg delete mode 100644 editor/icons/source/icon_graph_xform_scalar_func.svg delete mode 100644 editor/icons/source/icon_graph_xform_to_vecs.svg delete mode 100644 editor/icons/source/icon_graph_xform_uniform.svg delete mode 100644 editor/icons/source/icon_graph_xform_vec_func.svg delete mode 100644 editor/icons/source/icon_graph_xform_vec_imult.svg delete mode 100644 editor/icons/source/icon_graph_xform_vec_mult.svg delete mode 100644 editor/icons/source/icon_grid.svg delete mode 100644 editor/icons/source/icon_grid_container.svg delete mode 100644 editor/icons/source/icon_grid_map.svg delete mode 100644 editor/icons/source/icon_groove_joint_2d.svg delete mode 100644 editor/icons/source/icon_group.svg delete mode 100644 editor/icons/source/icon_groups.svg delete mode 100644 editor/icons/source/icon_gui_close_dark.svg delete mode 100644 editor/icons/source/icon_gui_close_light.svg delete mode 100644 editor/icons/source/icon_h_box_container.svg delete mode 100644 editor/icons/source/icon_h_button_array.svg delete mode 100644 editor/icons/source/icon_h_scroll_bar.svg delete mode 100644 editor/icons/source/icon_h_separator.svg delete mode 100644 editor/icons/source/icon_h_slider.svg delete mode 100644 editor/icons/source/icon_h_split_container.svg delete mode 100644 editor/icons/source/icon_h_t_t_p_request.svg delete mode 100644 editor/icons/source/icon_headphones.svg delete mode 100644 editor/icons/source/icon_help.svg delete mode 100644 editor/icons/source/icon_help_search.svg delete mode 100644 editor/icons/source/icon_hidden.svg delete mode 100644 editor/icons/source/icon_hinge_joint.svg delete mode 100644 editor/icons/source/icon_history.svg delete mode 100644 editor/icons/source/icon_hsize.svg delete mode 100644 editor/icons/source/icon_image.svg delete mode 100644 editor/icons/source/icon_image_texture.svg delete mode 100644 editor/icons/source/icon_immediate_geometry.svg delete mode 100644 editor/icons/source/icon_import_check.svg delete mode 100644 editor/icons/source/icon_import_fail.svg delete mode 100644 editor/icons/source/icon_instance.svg delete mode 100644 editor/icons/source/icon_instance_options.svg delete mode 100644 editor/icons/source/icon_integer.svg delete mode 100644 editor/icons/source/icon_interp_cubic.svg delete mode 100644 editor/icons/source/icon_interp_linear.svg delete mode 100644 editor/icons/source/icon_interp_raw.svg delete mode 100644 editor/icons/source/icon_interp_wrap_clamp.svg delete mode 100644 editor/icons/source/icon_interp_wrap_loop.svg delete mode 100644 editor/icons/source/icon_interpolated_camera.svg delete mode 100644 editor/icons/source/icon_invalid_key.svg delete mode 100644 editor/icons/source/icon_inverse_kinematics.svg delete mode 100644 editor/icons/source/icon_item_list.svg delete mode 100644 editor/icons/source/icon_joy_axis.svg delete mode 100644 editor/icons/source/icon_joy_button.svg delete mode 100644 editor/icons/source/icon_joypad.svg delete mode 100644 editor/icons/source/icon_key.svg delete mode 100644 editor/icons/source/icon_key_hover.svg delete mode 100644 editor/icons/source/icon_key_invalid.svg delete mode 100644 editor/icons/source/icon_key_next.svg delete mode 100644 editor/icons/source/icon_key_selected.svg delete mode 100644 editor/icons/source/icon_key_value.svg delete mode 100644 editor/icons/source/icon_key_xform.svg delete mode 100644 editor/icons/source/icon_keyboard.svg delete mode 100644 editor/icons/source/icon_kinematic_body.svg delete mode 100644 editor/icons/source/icon_kinematic_body_2d.svg delete mode 100644 editor/icons/source/icon_label.svg delete mode 100644 editor/icons/source/icon_large_texture.svg delete mode 100644 editor/icons/source/icon_light_2d.svg delete mode 100644 editor/icons/source/icon_light_occluder_2d.svg delete mode 100644 editor/icons/source/icon_line_2d.svg delete mode 100644 editor/icons/source/icon_line_edit.svg delete mode 100644 editor/icons/source/icon_line_shape_2d.svg delete mode 100644 editor/icons/source/icon_link_button.svg delete mode 100644 editor/icons/source/icon_list_select.svg delete mode 100644 editor/icons/source/icon_listener.svg delete mode 100644 editor/icons/source/icon_load.svg delete mode 100644 editor/icons/source/icon_lock.svg delete mode 100644 editor/icons/source/icon_loop.svg delete mode 100644 editor/icons/source/icon_loop_interpolation.svg delete mode 100644 editor/icons/source/icon_main_play.svg delete mode 100644 editor/icons/source/icon_main_stop.svg delete mode 100644 editor/icons/source/icon_margin_container.svg delete mode 100644 editor/icons/source/icon_material_preview_cube.svg delete mode 100644 editor/icons/source/icon_material_preview_cube_off.svg delete mode 100644 editor/icons/source/icon_material_preview_light_1.svg delete mode 100644 editor/icons/source/icon_material_preview_light_1_off.svg delete mode 100644 editor/icons/source/icon_material_preview_light_2.svg delete mode 100644 editor/icons/source/icon_material_preview_light_2_off.svg delete mode 100644 editor/icons/source/icon_material_preview_sphere.svg delete mode 100644 editor/icons/source/icon_material_preview_sphere_off.svg delete mode 100644 editor/icons/source/icon_matrix.svg delete mode 100644 editor/icons/source/icon_menu_button.svg delete mode 100644 editor/icons/source/icon_mesh.svg delete mode 100644 editor/icons/source/icon_mesh_instance.svg delete mode 100644 editor/icons/source/icon_mesh_library.svg delete mode 100644 editor/icons/source/icon_mini_aabb.svg delete mode 100644 editor/icons/source/icon_mini_array.svg delete mode 100644 editor/icons/source/icon_mini_basis.svg delete mode 100644 editor/icons/source/icon_mini_boolean.svg delete mode 100644 editor/icons/source/icon_mini_color.svg delete mode 100644 editor/icons/source/icon_mini_color_array.svg delete mode 100644 editor/icons/source/icon_mini_dictionary.svg delete mode 100644 editor/icons/source/icon_mini_float.svg delete mode 100644 editor/icons/source/icon_mini_float_array.svg delete mode 100644 editor/icons/source/icon_mini_image.svg delete mode 100644 editor/icons/source/icon_mini_input.svg delete mode 100644 editor/icons/source/icon_mini_int_array.svg delete mode 100644 editor/icons/source/icon_mini_integer.svg delete mode 100644 editor/icons/source/icon_mini_matrix3.svg delete mode 100644 editor/icons/source/icon_mini_object.svg delete mode 100644 editor/icons/source/icon_mini_path.svg delete mode 100644 editor/icons/source/icon_mini_plane.svg delete mode 100644 editor/icons/source/icon_mini_quat.svg delete mode 100644 editor/icons/source/icon_mini_raw_array.svg delete mode 100644 editor/icons/source/icon_mini_rect2.svg delete mode 100644 editor/icons/source/icon_mini_rid.svg delete mode 100644 editor/icons/source/icon_mini_string.svg delete mode 100644 editor/icons/source/icon_mini_string_array.svg delete mode 100644 editor/icons/source/icon_mini_transform.svg delete mode 100644 editor/icons/source/icon_mini_transform2D.svg delete mode 100644 editor/icons/source/icon_mini_variant.svg delete mode 100644 editor/icons/source/icon_mini_vector2.svg delete mode 100644 editor/icons/source/icon_mini_vector2_array.svg delete mode 100644 editor/icons/source/icon_mini_vector3.svg delete mode 100644 editor/icons/source/icon_mini_vector3_array.svg delete mode 100644 editor/icons/source/icon_mirror_x.svg delete mode 100644 editor/icons/source/icon_mirror_y.svg delete mode 100644 editor/icons/source/icon_mouse.svg delete mode 100644 editor/icons/source/icon_move_down.svg delete mode 100644 editor/icons/source/icon_move_point.svg delete mode 100644 editor/icons/source/icon_move_up.svg delete mode 100644 editor/icons/source/icon_multi_edit.svg delete mode 100644 editor/icons/source/icon_multi_line.svg delete mode 100644 editor/icons/source/icon_multi_mesh.svg delete mode 100644 editor/icons/source/icon_multi_mesh_instance.svg delete mode 100644 editor/icons/source/icon_multi_script.svg delete mode 100644 editor/icons/source/icon_native_script.svg delete mode 100644 editor/icons/source/icon_navigation.svg delete mode 100644 editor/icons/source/icon_navigation_2d.svg delete mode 100644 editor/icons/source/icon_navigation_mesh.svg delete mode 100644 editor/icons/source/icon_navigation_mesh_instance.svg delete mode 100644 editor/icons/source/icon_navigation_polygon.svg delete mode 100644 editor/icons/source/icon_navigation_polygon_instance.svg delete mode 100644 editor/icons/source/icon_new.svg delete mode 100644 editor/icons/source/icon_nine_patch_rect.svg delete mode 100644 editor/icons/source/icon_node.svg delete mode 100644 editor/icons/source/icon_node_2d.svg delete mode 100644 editor/icons/source/icon_node_warning.svg delete mode 100644 editor/icons/source/icon_non_favorite.svg delete mode 100644 editor/icons/source/icon_object.svg delete mode 100644 editor/icons/source/icon_occluder_polygon_2d.svg delete mode 100644 editor/icons/source/icon_omni_light.svg delete mode 100644 editor/icons/source/icon_option_button.svg delete mode 100644 editor/icons/source/icon_override.svg delete mode 100644 editor/icons/source/icon_packed_data_container.svg delete mode 100644 editor/icons/source/icon_packed_scene.svg delete mode 100644 editor/icons/source/icon_panel.svg delete mode 100644 editor/icons/source/icon_panel_container.svg delete mode 100644 editor/icons/source/icon_panels_1.svg delete mode 100644 editor/icons/source/icon_panels_2.svg delete mode 100644 editor/icons/source/icon_panels_2_alt.svg delete mode 100644 editor/icons/source/icon_panels_3.svg delete mode 100644 editor/icons/source/icon_panels_3_alt.svg delete mode 100644 editor/icons/source/icon_panels_4.svg delete mode 100644 editor/icons/source/icon_panorama_sky.svg delete mode 100644 editor/icons/source/icon_parallax_background.svg delete mode 100644 editor/icons/source/icon_parallax_layer.svg delete mode 100644 editor/icons/source/icon_particle_attractor_2d.svg delete mode 100644 editor/icons/source/icon_particles.svg delete mode 100644 editor/icons/source/icon_particles_2d.svg delete mode 100644 editor/icons/source/icon_particles_material.svg delete mode 100644 editor/icons/source/icon_path.svg delete mode 100644 editor/icons/source/icon_path_2d.svg delete mode 100644 editor/icons/source/icon_path_follow.svg delete mode 100644 editor/icons/source/icon_path_follow_2d.svg delete mode 100644 editor/icons/source/icon_pause.svg delete mode 100644 editor/icons/source/icon_pin.svg delete mode 100644 editor/icons/source/icon_pin_joint.svg delete mode 100644 editor/icons/source/icon_pin_joint_2d.svg delete mode 100644 editor/icons/source/icon_pin_pressed.svg delete mode 100644 editor/icons/source/icon_plane.svg delete mode 100644 editor/icons/source/icon_plane_mesh.svg delete mode 100644 editor/icons/source/icon_plane_shape.svg delete mode 100644 editor/icons/source/icon_play.svg delete mode 100644 editor/icons/source/icon_play_backwards.svg delete mode 100644 editor/icons/source/icon_play_custom.svg delete mode 100644 editor/icons/source/icon_play_scene.svg delete mode 100644 editor/icons/source/icon_play_start.svg delete mode 100644 editor/icons/source/icon_play_start_backwards.svg delete mode 100644 editor/icons/source/icon_polygon_path_finder.svg delete mode 100644 editor/icons/source/icon_popup.svg delete mode 100644 editor/icons/source/icon_popup_dialog.svg delete mode 100644 editor/icons/source/icon_popup_menu.svg delete mode 100644 editor/icons/source/icon_popup_panel.svg delete mode 100644 editor/icons/source/icon_portal.svg delete mode 100644 editor/icons/source/icon_position_2d.svg delete mode 100644 editor/icons/source/icon_position_3d.svg delete mode 100644 editor/icons/source/icon_prism_mesh.svg delete mode 100644 editor/icons/source/icon_procedural_sky.svg delete mode 100644 editor/icons/source/icon_progress_1.svg delete mode 100644 editor/icons/source/icon_progress_2.svg delete mode 100644 editor/icons/source/icon_progress_3.svg delete mode 100644 editor/icons/source/icon_progress_4.svg delete mode 100644 editor/icons/source/icon_progress_5.svg delete mode 100644 editor/icons/source/icon_progress_6.svg delete mode 100644 editor/icons/source/icon_progress_7.svg delete mode 100644 editor/icons/source/icon_progress_8.svg delete mode 100644 editor/icons/source/icon_progress_bar.svg delete mode 100644 editor/icons/source/icon_proximity_group.svg delete mode 100644 editor/icons/source/icon_quad.svg delete mode 100644 editor/icons/source/icon_quad_mesh.svg delete mode 100644 editor/icons/source/icon_quat.svg delete mode 100644 editor/icons/source/icon_range.svg delete mode 100644 editor/icons/source/icon_rating_no_star.svg delete mode 100644 editor/icons/source/icon_rating_star.svg delete mode 100644 editor/icons/source/icon_ray_cast.svg delete mode 100644 editor/icons/source/icon_ray_cast_2d.svg delete mode 100644 editor/icons/source/icon_ray_shape.svg delete mode 100644 editor/icons/source/icon_ray_shape_2d.svg delete mode 100644 editor/icons/source/icon_rayito.svg delete mode 100644 editor/icons/source/icon_real.svg delete mode 100644 editor/icons/source/icon_rectangle_shape_2d.svg delete mode 100644 editor/icons/source/icon_reference_rect.svg delete mode 100644 editor/icons/source/icon_reflection_probe.svg delete mode 100644 editor/icons/source/icon_region_edit.svg delete mode 100644 editor/icons/source/icon_reload_small.svg delete mode 100644 editor/icons/source/icon_remote.svg delete mode 100644 editor/icons/source/icon_remote_transform.svg delete mode 100644 editor/icons/source/icon_remote_transform_2d.svg delete mode 100644 editor/icons/source/icon_remove.svg delete mode 100644 editor/icons/source/icon_rename.svg delete mode 100644 editor/icons/source/icon_reparent.svg delete mode 100644 editor/icons/source/icon_resource_preloader.svg delete mode 100644 editor/icons/source/icon_rich_text_label.svg delete mode 100644 editor/icons/source/icon_rigid_body.svg delete mode 100644 editor/icons/source/icon_rigid_body_2d.svg delete mode 100644 editor/icons/source/icon_room.svg delete mode 100644 editor/icons/source/icon_room_bounds.svg delete mode 100644 editor/icons/source/icon_rotate_0.svg delete mode 100644 editor/icons/source/icon_rotate_180.svg delete mode 100644 editor/icons/source/icon_rotate_270.svg delete mode 100644 editor/icons/source/icon_rotate_90.svg delete mode 100644 editor/icons/source/icon_sample_library.svg delete mode 100644 editor/icons/source/icon_save.svg delete mode 100644 editor/icons/source/icon_script.svg delete mode 100644 editor/icons/source/icon_script_create.svg delete mode 100644 editor/icons/source/icon_script_remove.svg delete mode 100644 editor/icons/source/icon_scroll_bar.svg delete mode 100644 editor/icons/source/icon_scroll_container.svg delete mode 100644 editor/icons/source/icon_search.svg delete mode 100644 editor/icons/source/icon_segment_shape_2d.svg delete mode 100644 editor/icons/source/icon_shader.svg delete mode 100644 editor/icons/source/icon_short_cut.svg delete mode 100644 editor/icons/source/icon_signal.svg delete mode 100644 editor/icons/source/icon_skeleton.svg delete mode 100644 editor/icons/source/icon_slider_joint.svg delete mode 100644 editor/icons/source/icon_slot.svg delete mode 100644 editor/icons/source/icon_snap.svg delete mode 100644 editor/icons/source/icon_sound_room_params.svg delete mode 100644 editor/icons/source/icon_spatial.svg delete mode 100644 editor/icons/source/icon_spatial_material.svg delete mode 100644 editor/icons/source/icon_spatial_sample_player.svg delete mode 100644 editor/icons/source/icon_spatial_stream_player.svg delete mode 100644 editor/icons/source/icon_sphere_mesh.svg delete mode 100644 editor/icons/source/icon_sphere_shape.svg delete mode 100644 editor/icons/source/icon_spin_box.svg delete mode 100644 editor/icons/source/icon_spot_light.svg delete mode 100644 editor/icons/source/icon_sprite.svg delete mode 100644 editor/icons/source/icon_sprite_3d.svg delete mode 100644 editor/icons/source/icon_sprite_frames.svg delete mode 100644 editor/icons/source/icon_static_body.svg delete mode 100644 editor/icons/source/icon_static_body_2d.svg delete mode 100644 editor/icons/source/icon_stream_player.svg delete mode 100644 editor/icons/source/icon_stream_texture.svg delete mode 100644 editor/icons/source/icon_string.svg delete mode 100644 editor/icons/source/icon_style_box_empty.svg delete mode 100644 editor/icons/source/icon_style_box_flat.svg delete mode 100644 editor/icons/source/icon_style_box_texture.svg delete mode 100644 editor/icons/source/icon_tab_container.svg delete mode 100644 editor/icons/source/icon_tabs.svg delete mode 100644 editor/icons/source/icon_test_cube.svg delete mode 100644 editor/icons/source/icon_text_edit.svg delete mode 100644 editor/icons/source/icon_texture_button.svg delete mode 100644 editor/icons/source/icon_texture_progress.svg delete mode 100644 editor/icons/source/icon_texture_rect.svg delete mode 100644 editor/icons/source/icon_theme.svg delete mode 100644 editor/icons/source/icon_tile_map.svg delete mode 100644 editor/icons/source/icon_tile_set.svg delete mode 100644 editor/icons/source/icon_timer.svg delete mode 100644 editor/icons/source/icon_tool_button.svg delete mode 100644 editor/icons/source/icon_tool_move.svg delete mode 100644 editor/icons/source/icon_tool_pan.svg delete mode 100644 editor/icons/source/icon_tool_rotate.svg delete mode 100644 editor/icons/source/icon_tool_scale.svg delete mode 100644 editor/icons/source/icon_tool_select.svg delete mode 100644 editor/icons/source/icon_tools.svg delete mode 100644 editor/icons/source/icon_touch_screen_button.svg delete mode 100644 editor/icons/source/icon_track_add_key.svg delete mode 100644 editor/icons/source/icon_track_add_key_hl.svg delete mode 100644 editor/icons/source/icon_track_continuous.svg delete mode 100644 editor/icons/source/icon_track_discrete.svg delete mode 100644 editor/icons/source/icon_track_trigger.svg delete mode 100644 editor/icons/source/icon_translation.svg delete mode 100644 editor/icons/source/icon_transpose.svg delete mode 100644 editor/icons/source/icon_tree.svg delete mode 100644 editor/icons/source/icon_tween.svg delete mode 100644 editor/icons/source/icon_unbone.svg delete mode 100644 editor/icons/source/icon_ungroup.svg delete mode 100644 editor/icons/source/icon_unlock.svg delete mode 100644 editor/icons/source/icon_uv.svg delete mode 100644 editor/icons/source/icon_v_box_container.svg delete mode 100644 editor/icons/source/icon_v_button_array.svg delete mode 100644 editor/icons/source/icon_v_scroll_bar.svg delete mode 100644 editor/icons/source/icon_v_separator.svg delete mode 100644 editor/icons/source/icon_v_slider.svg delete mode 100644 editor/icons/source/icon_v_split_container.svg delete mode 100644 editor/icons/source/icon_variant.svg delete mode 100644 editor/icons/source/icon_vector.svg delete mode 100644 editor/icons/source/icon_vector2.svg delete mode 100644 editor/icons/source/icon_vehicle_body.svg delete mode 100644 editor/icons/source/icon_vehicle_wheel.svg delete mode 100644 editor/icons/source/icon_video_player.svg delete mode 100644 editor/icons/source/icon_viewport.svg delete mode 100644 editor/icons/source/icon_viewport_container.svg delete mode 100644 editor/icons/source/icon_viewport_sprite.svg delete mode 100644 editor/icons/source/icon_viewport_texture.svg delete mode 100644 editor/icons/source/icon_visibility_enabler.svg delete mode 100644 editor/icons/source/icon_visibility_enabler_2d.svg delete mode 100644 editor/icons/source/icon_visibility_notifier.svg delete mode 100644 editor/icons/source/icon_visibility_notifier_2d.svg delete mode 100644 editor/icons/source/icon_visible.svg delete mode 100644 editor/icons/source/icon_visual_script.svg delete mode 100644 editor/icons/source/icon_visual_shader_port.svg delete mode 100644 editor/icons/source/icon_vu_empty.svg delete mode 100644 editor/icons/source/icon_vu_full.svg delete mode 100644 editor/icons/source/icon_warning.svg delete mode 100644 editor/icons/source/icon_window_dialog.svg delete mode 100644 editor/icons/source/icon_world.svg delete mode 100644 editor/icons/source/icon_world_2d.svg delete mode 100644 editor/icons/source/icon_world_environment.svg delete mode 100644 editor/icons/source/icon_y_sort.svg delete mode 100644 editor/icons/source/icon_zoom.svg delete mode 100644 editor/icons/source/icon_zoom_less.svg delete mode 100644 editor/icons/source/icon_zoom_more.svg delete mode 100644 editor/icons/source/icon_zoom_reset.svg delete mode 100755 editor/icons/xpmfix.sh diff --git a/editor/animation_editor.cpp b/editor/animation_editor.cpp index 1571131aee..ed80be9e17 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 760bb4421c..0000000000 --- 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 9150e6a9bb..9e34c1872c 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 11150371d2..e0dd9b315c 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 2ebefee6f3..8a652ba6f1 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 9b2ed646653829ff6ba1933681db89c2eb97b772..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 366 zcmV-!0g?WRP)bkTFy8ENz!|M-d&OJd*K} zry#lvmYPzTZX^hspWy zQM?b(RyDHE9{>^U09;JlSaQ>5+~j)E&^aLOn3!pWbT2R~#OS-gqbdNKW=|~f7euJN2bKcp zXbFG{_5J`bum`5f;W2-i+K@BQ_n1~kJ=YRA?R+qRzQ^?Wmbfq706zR`a~tMV`~Uy| M07*qoM6N<$f=%_E8vpu4^P)0}|pA>+wn`;tVi;DdLgV-WjiL)}(-6Wj~MK@0;^gdKaCC$F%N2mn9t`|jWM5r8-R&4IWxvQnNFu) zmV>p1MN#aj>Pf^LV4|uYoOAbM0LGZ-z|Dj?z;;=d?^fOm7kQrVR6XBHBmkHIADwf% zEp6I#O;smR01^WUK}vIE$27Or9*M}erTBLdsTFCLsvm3);Jv?VjCsLDXJ0mR46cDL=3O-C z6Ku+S5WptQdjo9R9C{StVzJm&)uXQF&biybd)AyMI*&jf^Ga`l>%g|Eo+NkCt^hsF zn+m(=3dE3E(8*j?52$ZoQHaj#zy{?-WIxoz7zXP!QPnr$<}v_kx(om>BG1B2>tW$f zRQ*?+QeSI4@F2^w;}95a1R`h574uO68j6~a4NyB{#?1c<;2al{`aT2%UIzdG002ov JPDHLkV1h9L`hNfb diff --git a/editor/icons/2x/icon_GUI_checked.png b/editor/icons/2x/icon_GUI_checked.png deleted file mode 100644 index d51f20b867f77e1c67db81f94abc36f62cd941cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 516 zcmV+f0{i`mP)sw-ur=b?$2V;6j$XZ4-E%^ZDY*0VsS|z zZ~JTIORWIf|L60JOKMw91VSXX)*g|(tXudR06siMp@#H!Dl;q({8$$@J4G$sE3ciX!**(29aFU`l zP0yObn+lAqwF5~%7iyIQ2jHM79H_qwM!jBdlmpI^Bmv3Iwry`DV2ruzbUIh_?{PYqhoJ&B` zcK`|nuM&7d$vc6h{WMKI0IWN3Bp+%8NZv~NT5*lFhYbKE{Vvv)W+2P5A%Ocfpt6ws zH=E5aY6YBgsrP;WAO`Rlfc*#{o=&Gn{eJ&%fa`tajpaWnVC%t+)mJe9000082)NFFICB;El~wOX*p9^#bgQu&X%Q~loCIIjoOSu35 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 38af962095a1e9ac4ac0ab3a66796164ad0ddea8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_c9PZ!6K zh}O5~HVQH*@Gu*;M@niRzEtEspKWE)bAN`q@ay*u-=C|J{o{+GLjwaN6NAO1-;5IL TcIZq4YG&|s^>bP0l+XkKGvp@j diff --git a/editor/icons/2x/icon_GUI_hsplitter.png b/editor/icons/2x/icon_GUI_hsplitter.png deleted file mode 100644 index 063f0c90fc306f041aea552914a8761dfc5457fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0zllr!3HFmroL1HQfx`y?k)`fL2$v|<&%LT#hxyX zAsLNt&u!#vaNucuDDHjtpzFDhdtL81-o6o2X_>TG;eWG((;@dI>ys}Yx*P5pEnRMG zT~&UWL4VS-FjXrlM(+#D8$*C5;RgS><~Yu0TeW0$XzjP_vv)Gyvf=)*Y4aaVkPc5* KKbLh*2~7awTRkcO 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 8c3aa73aaf48778f686a97ef0662838245646fc9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^JV30#!3HGNq-U-IQfx`y?k)`fL2$v|<&%LT&7Llf zAr`%FCv6mLG2mhO?qT;sOyfvtz>DvUxd$c)3s@K(d@PyRbCN?MUhQtK!dcG60*Ay4 z9CoiyOPH|bNYA7K_8N;*%=Vtz4#_;zIXAzLk=w*T?3|hD`e4bi6 z$IUf9ZT?)Wc5~pu%;kRP%-xLC(eY;heV_oIf!+!8S7~+$-0t@s4iu6u)9Y5!z3ul* zc~8p3fysf#C`A17hGYeR+1IMqWyKvRxhoY_B9uDk3vrR3X2v zkuPk&eS0eg2a@JV9tUT(mqGqeBQK)wN1!bt=`&Ye8%U9%r0G#)n`Bw?#z4bOB8~Fa zKue@mo((Vn*1#sM4`BRj@loUkcmZDHub`vj|Jea;rjurIg89h+00005c 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 6a569d5e802aa64744f651a3d1469bd00019c32a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 886 zcmV-+1Bv{JP)LSa|Nq}KrNP3` zhrvpUckT6cZO2DKvdH4heBR5wnaD$cQ{V$KuFJ#&u8^UTnk)i1zy;FfZ88UblCn3Xot*l>C*WY5XHof^OeWW>={=Box6^ z00(itO5I*Z7l}H5nKm}z5{c~ULLUjl+_;7&0-OTxvsz?<*GMk0j%pMawK+(TQ&%pD z@iDFkTu`sBe@NipLf0TlogNa~*PR&=iCL5YvzWiv1&4?SsdKP{q_j<8iYD*T32;LG z`MgbfNWKt4C%}1ewpc^ylS+UNvW?X=CMbr1N`MjR)8s1CMN;SgPzf+D-WF?wd{YTf zhlD3BA>UL23`#J>7DfV8akC>YLcXa4XhQU-BjlUP*(R<40U_U-{Ircw31GaTSVKa- zsRYRUx~am1d{YVFm0*Z1LcXa4cr3vXTZDXT1yD5lQ-UG3SRQ_%5@1C$R{|gSd-$bF zfE^LLs5Qn#QDUPDgyzNCVg;p7IsqQYu@0vKY|y+W(+RLc3X+<_9hwTWs9fNdW<-Ts zL;xjG0&EZw>dp-j!#OS+yr$lvv4;qtB~E}XQi@hru80}NCYv8?q~KtbheaiFhrtjw z-Thf0FBYm?AM~6R@ZF@LsQ^19HaJW08(Vn5S8^_r0vSs#B0^QS(l)>s5=`7lpXLTB zL9621hu1}_v21b=d?RHFpLIfW5%tG8 z+$$*_@PmxeYMuus-cn9ok&ifiLq!fuJSV6un^Me?nY;a`az|!V_njbRDHF0CnsSlN z4CRhaR?0dycZAFn!~Lg^h!P0n^K@)(jqKhokv+UZkIl8Tw7hKo0Y_VpBFtA9Y5)KL M07*qoM6N<$f=Ne&`~Uy| 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 ca53eba8d000668adce0df95b97642db138eb70b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~7o-U3d z5v^~pZ_GU6Akg~oyW8rIiR`DY-&v^Ev#WsHFJ@YHfo#|crWO{asRbOIZ(~Y2Hy%8B z>g1k`&HtM_r!ib8y&D`F%6oG2%&8|VCS?bTOzzlXcuf2EzV#max=uKs`@lb8sm|&1 z0!|f%o1GssB&02$5~R#9ufOm9_V>RnYxY;hUYECA{McgO{rhRlCK-R5Zh3%_ub_ch z<^cn{1(5l`fG1yN^FQ|b-pQ*c%=xFx$B<^$xvFkrOkdyRn2@ci3}-(7nGuw=EqC`5 lJNA=T&!~mwCih&I*5B+TH({aL37`)dJYD@<);T3K0RYjqd)fd1 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 ac6c56265046bf14a9268fbca6ffdeb512a78986..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}xPZ!6K zh}O4#yLk^A@VK1hSY_jE)%)=6TVJN$1#SmkZgR|!@_1VPwRYZ2fk!VZL|*LO&-f;L zt*)_85rai^_Wbyr;U*@}edf=ex$}3J*UiN-8V}yR{On^c^21zcLIaD6LSsO~lO5J| rOQpFOEZ%!eklA`o`L?i=O~1b7GhN};l}|PU9l_w~>gTe~DWM4fh6qdv 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 1b38071c00e9ca2011c003eb278afa24151fe454..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 946 zcmV;j15NyiP)oIK2dNr57j^wYf&k z9U?_)rC!+f(jQU^LU8xBRFniNwVW!Y%>~p`dx~OPJ5q7!_7+jRc6Po!uomm}`bU5p zd6%_k=DqiMGxOdX;7DF~k;5!*Hk&63g~AemMF0-T;{YHc{}^N1N~xVVj<@IL<{rON zfOfk*)9rRwNuC8z7;8|(ko*O}jY_4`erW)$^^!5>a{$MtflbMON~tTZ>;C$}09xy1 zl9x%ULppzET*Lsl=6T+&Lj!27mq>n<9*$bvEE9Dr&TLPS0t zwG+7j?RI-6ilSQ>-1Z)TYxR2lj_>;>PtW&#wX(8uK}6O_7E@DCY};Ngm&^Z71)#P5 zEQzKcMGwH5=Xt-AENZPUkURrmE?LqPk)K`H-4v0Y*1AUWY8ry%*6i%;mlFY+&E^TE z)Exlnt^cM{sr-;+!?z^g&I1>bUE8+T9mffSAo!5vdTKf@l}hIw#|hIqLzgSb^YnP5 zUaxPGERJ)YMEOp)+ua~pbY1s0fM(is6h%u}ogn~Y%wi_0E#LP|vh5?Cry;b~=aYJH zH#5DMT|We%lqzQoK1{yvO>&;nIg{9WkRBJ2wv^^0Zc})D68NRHwt~rhqhGDoWA{zky1n?BV zQxW+?L^i@OTy-2LY&04R04`0V%)!CIC)H~8w>&>% zA0$B#d<0kxvZ(0IgQ*O%eGRz(q{) zC 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 b76bf63f2d856c4f615dcd48e210a5d18e638744..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 799 zcmV+)1K|9LP)j%yCyrp7W@IQ;o}zoMhVgq?S)Dc z8&(^&5n{B`Vrz_1(8kIHr2+j1?2@^OjEEh9%mQ;?3wM**+1XF%q&+9%uKE6wG5pq3xJn>eSO}U0kqcR#+XL{F0}$1k|U+mVkVRM+A)CEdY0roN!4cYf5}A*fMv&V zR@w&8T91=_8dJO=BC8~~5{bkw05Ha+L}b_)GX)?Ug%FVk^>!i_!1KKBQmM3p>TN#( zu$<55-{*2U6Bn1u<<#8V+)WW#Aejt(I_&D|noXzEe_8_2T0bnWrm~6?01J-e{D||9 zi60`l6ow$V+TY**B3rPM|w=td`Z0ZAnyQxWq<)UPIS5CrR}?p0Q6eXCsnt@Sj3 zfpBWuw%3~ilphnHBIbFm^-!zD3x&ckfO}z^h;ew znMUm(sa)5cu`KI(^fK~&|4m#>qw9E#FND!Hv6qD003}Z_cnlqGd@U`9LITE*QZ$$*L6opJ_c~P&H9Hy5G>YPdCLF*u(Pvs zMMUlZm_`eaQUITQ-+whYI9M}yIs&N3_V#vv4bk dgL#~z3f}`3 zA5GQ+ohLTyXdKp0Sigwlj?$-XzqZe7*i&gcC&;?`tTL1FOkVD35`rym&;AQod}_bu oa^Tyn^z&Dkx0O3~ElRPwHb+8GuKdw9pbHp0UHx3vIVCg!0Blc4%>V!Z 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 c03ca1adf93fd0de88a257f2dc100c7949836bbe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmV+^0oMMBP)^?~U*)Q&A%XI~h8%7j}@29k7-u8CDYUsi{)E zc;Z}|0nwP)K$+9}`5ar83~X%t6|N0P3Mr*-S(croO8_AGBI#gedy>ar2gY$cH?#Yu zX|6IOgS+=_+rC!^B!y|39)6I2MM4O7xtlb(T`8rmKn?)cF~-~6Vm2_(^G$&q06=nA z9Uys88u)ztsz4>G4oG?{wUd0U4v>5-4M;jv2h3~_U?}hpr`fsy$)mgXE0Mw7dy;e3 vvvxd5XEDZ(U(?5 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 97e97cb5369dab77481bef05670905ef6d179aa0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~vo-U3d z5v^~hoaH@az~eT5qC_Jj!$Ga55orl6?+$XDxgc%7ID~^Ofkowz;>sheLg8OI_a}c* zt=yQ@{Mh2$e&t)diY=NOShW%+PRl>Qnc?~*Q%%5W24i)?SJg|5y&X1g;vV|;e|G!{ zP706e^jyiX@y*WDjMp4ut5&!rEItt?##HQDmZ`YlVX9)m_7hnweO+&EIxSG$7SX4d zdR)|__HK&GFUJrY-uAvnvu`4TWDo!V 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 2229e25a603bf0fed92e5d17b792f962ed36a70f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1040 zcmV+r1n>KaP)54=WrSc!hqNPYzCN3~3R1k?c??-@`$fC8HIwo}4mpA9Q=$rArJ8wEO zm7RXOIrqEg`|dsWp8E#)uY(39swzcMbd;HARka3S0>D&0ybji{Pf%m zs4B&ATqmMWRP~hs^FCqbi__E7%S5F6HV{S8O8~9`I5wcLje8<;J_v%RLmNnvc_tCua~YfN2Af0avbNfs@AQcridJ~%TX|p zAGmuc)?A3_BhT}`+)LO-7=|AZ(dQ`c@?FpKPM8O?P=Yv)>y|iFb$(cJ0H{{03#vMA zh2Kh&^Sa1Mnt*$vnIX;68vmM3h;JTC~dX*!TU{ zx(tM2_y!R@Fo-)M@^TOa8;1BefD8Di0om99aFvLjwF6NU9R~0VfRT2LnU7W~m4|>) z0%o4Il3lmN5A+d7K6WAJ0sws9UninvlO!S?t&V}by>`INH?8EgKH{c{lV*U3zBYfG zT5OOeO;VbsW;uY}nh%Ns*Um*mhq?@?>V!!e8yoxGN;-kTQCLi?)%va1cxfjDfbH#V z8A8xT;Q<;Q9qrlj%@Pz=>^ROLi)-)5UMO(WG@Z1@H@gg|YGIpP*PXE@-5&h0=%-Zg&{(Q220R;#sQ8919ak@lnvz|}q`+Ks5w4I7Qd z6o5IC#LOM7j)7{m`VhbqgEvA%pIOeI0k{NU5x`UIKD|2te$8W-%q|E3j^kX0(FFlK zs#GdJcXFEKBuVB(WXX)F>W9^8b)om7dn11luUO%;zVF{CHIP5Y-vc;qghf^7hcyw$ z@%yU!1&UXF&GWok&*zwkR7B1LXc}QAqAPJ6FXr{!6Hyc$&R@UZjuYeAY1RAC&}+&;IWIf6PNXLL>pU+wJQR z!smm4JCYY&*Igxm=aH@2nc1Rk+n=#H$ul77U5PmWbX|8v@&fnI#A#~I*dg41HfcTu zQ4B!xlH?75UuL$*G2e$Uvju?PByUKrbLT$k@hMpcy!Xcd&LrJR`cm5OopVPd&j36l zxlSG8=vN?#0NzV_0pJzMPbCe;dp{@n5x`3T&xb^!$wmQ4N|N@58cE9>h*&k0v?Hn5 z`^h@cG|d|KE7~YTsuT~gqDlhHX0snCXtiT4dx#a)WIN93awT1}7+?y*%x-JVvjKqg z{tow|u2}^DBv)cz*_l@XOh6QyR{wiuHuxK8_9PS+~U* z#U3468gt-H?z4SN6}E>(XY3VMV7U_Qw3FdUQ%8(~c*lQ5@e`~?jWGqxCNAD4xmq6^ QfUaZkboFyt=akR{0A0gRlK=n! 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 9da02707d1c8c55146edb1284fe9fe98ebc46f2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2606 zcmV+}3eok6P)O69U1zGwU_6Q`48)50xsC(yBm$ zf>IEWDm0GzLU~A3g@mS|txOt3N`<0ODX3DVKuU-rswT8m3C_bNL~8p0?TaBeV9)HV zyQN^hn%Z9WU3C7A#nB-fv^9)Qtng<8dVxi>;AT{t!U3-}bmf8o+*4Rre85)^B5g zI&pwhDy3#Jne6~N%4CrM2ATP|q9{XBO0%V<<$NNMNcZ;k`uZZ7IW#sl)^z#u<#|m_ zP2pTF*F{7<0J;H)QqK_4r@372r?FVf^w!!Ew)ky;VHn>6@H3Qd^(i65K_SFITU*-& zk4?KNhK7db&X_S{8Gy9_7L>>`!OSm3qtOq&wakvM4qzC@8Y0@v%(j+7L}SdnM^)AL zi74-vebYfa9#`7i+gC92CIGFDpCy1_X`1$~52gX|(E$v@SOegBr<|D&H8(f!oKb6tPH)q9`xN<8j4HTRe4u*4EZ1 zaN|^O`<+zzMO0Ni4q%5>#?1Gts`@=I?eNS2Mn*>NC8DRSGG;z>yZ8B(&@}BY0RC*1 z2_b%vN~Pv{WrJr9AcWWeduaE<#Kgp}y(+(6X=-YEm59bHqULNi`-E5Jdol0lLqKld50RR!5lTw}{qK|Z4|9I)rrMYUl5{bk&nE59F zYHelb0qoE;?XPa=Dd>8XnYUU*llgr9F)tR7Joy4NG&C%?R=yD8U#hCs^yxQEb4fHB zeH*|IB3i-B8h{o6EzGPD(Fy=N+S}U?n5Ma;nm%TJ0ku~e0Ng`FFSw-#07gbe4g>hN zMbxY)%Cafw{=#_T0EH#p>*VwK-&c$9_4oG+UDr2BDR%-0*HA`8O1V?l^-cZ#{gwW& zdup@VhICO63SX{+R+;mixrOTvFf=qYmzldPqP(IgRa<{wU*AR|>ciB!DI%i2zP`SV zQ#Q1`!n0D!SKQWf_3G6D*d647WHLGDX3MRH>vPV=#>O6NnurFg?UXT1^Fb-)lU7+F zUhu9EVn7HnQjo=@l*<5o7naBx5j|;|=3pce`M8>Wnx=hy3jdC4dOABh#|*nyq+ zsP>Fu7=L$&%Ffr_)+2+_)J70HO&!tP3CLE%cX|SUro-PL6LX@1ZyRE0Er>AOu zZPQZ9XsrchvsqhSr>C&8O zn!5{&KmY({o-d_*L)Ud%C|F9_&dkg6`MfO@41k3YyKki^AOJA4^W6-(U8d^}5DJBk z<@0&Q=b_#1(b3V?N(Vh6k;qZQFn$N%`$ZWMH3C@A%{%0~s5`OR9^0qTiVDm6Eg z$#h#pEQI)n+vU361%$)li$r7%aW)hda4NEQ@7_HC-kf4_4B*Xu`}X~2iqH8@CX-nX zdwrbr;&{1Nae%|tgp_hEGdEOvpufLgYMS=C5Mm1~V}c5d3L$>1Y1-@k{rzR<-$ZoI z^7q*q^t!4CxV8XBL~9-T50}e7op|B^Qpy2bI~iN#zCXMt%Xo; z0@q>-lgyl8<|9P3RoC^$BaukeK_4^kAfo@=?0kQ^^Z-CC7JG!5=UYURxm?cGRlp*i z9SkuH<5>XfETW6)bb5VPSC{K^-FoKi*|RgRUcLGbGhg3cMnnfxRo(4H`JRP>bGh7p z*rS4TT3TA3_Nx4PC7n(`Ypr|$lj(H&fLG;v<^UZX9p{MX4XaE_xk}gdn!1A95yLQ6 z0$Aw~|F*NUbF5T;H}G^Z==}NfZxhjJtBi=Y8iw&TFYTxYOw;TIU|TI@<{@3z-|^B8 z&ku)=jEty4h`qS+aOm@zrnx@vtp`lg>@5VktjoRQilX$jwYAkUZ%;Hd zG;D)?sdOfQ*9u3cZ)*(0SSh7^752)PLWpf%S3cnH1re(OY$@^6pT@_>U+eDf{-4)2 zxyh+hr)D)ZHT?)T_W5AuSEAAAdp?-u`xP;(0X&BrzeE>^Xip>(Iea@@5fh8W9+6UR z0&utEXUWVv{i=MR4lapGCX?UH=kq^D>FrM`A;iJS$;l7A92rjsh1mWwB3kDN@)Q{t zLTsxgc;zO(I{*L-4-ZEaMR}Q-?=O=@0yx3U$E?@H4Gs=Y`n}>8kH?k8ix)RruZa^v z^e}VTYvKTW8VZHBE?l_K_4WR0)P(~8wu>S+!h_9_K9L5ne{5`QpWpWz7O5KtD3VI0 z=4P|m4b1!)Zm+9i-%F>{Z`E5@R(B3iWO#UZwxTG@Zt=^aPZH7l!DZ1mNivz7lg(y( zi`T_7^Fjc35m7TUdwQvo6C%nn^W?31U3@@5KtMo1KtMo1KtMo1z@5YY0l644@@S4^ QT>t<807*qoM6N<$f>t2$#Q*>R 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 41a25e9345b0b496e464e13d1d60f5e5425355a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2178 zcmV-|2z~d7P)3>d&$MD&X1d8Z47!hhlxv=B`f0HdR$oh>ab z4*>WQuK&W<0@FnFvT2$pySlnA$1TQB(*(fa;9yIkQ22^c>RSNXipApnN~ygen?09GrH*gfw5e3@q)V4BWevmlHh_ETooAZn7rMK< zuK)lur;5emac2JLQX*PgTfaD);Hf3D{@B1ZED8}FlT!XZ3|sZk@(QS>bVGrN6cL?} zQXW|9;R8USP$)_%4-nA_B2tT;H~a8wKHQFujsrwwFJ<4K-Rte`oeXdZfe7=S)g$r% z7#<$pz|0>C(d5r-*)$GXfrwa2IiQsKMbJ7MH*UPj%zFX+YgsB+&Yk6Qd41GQA|G>_ zrg=BQd)1uHX0y-x3z*p~l}h(1rFH=5sTE%$qSM)I_LM*En#<(|9LMRy60ZZ_`R`bk zwU3BSK!37|s@3XU0A7vKN#rd65p500j+aWMp7sCoEz7#SR4P4J>tFQY`a^05u$7s= z>p0GHV`F2t`D}11l{#MQJO(14&kqsNV*sjQTt_1)r9!!P_0SOj*^o?~^}q9(*)$B} zm{O`xr%taB;utf}tsAV_IM;|{Ddp<`jy9}#<;bWV=m>yxNOsQnk8RuDxx~YtrMFlt z-sdl<4IArXS=JW+aW0oT1>pHbPLG7J?p-}14*+KVU>J5h&l~a|6VZ+aG<z;qZ!u3fvfabA(tKy}-HFf}z5IN8F?A1ReehnRUT0Q>s- z{s&+`BAz24qW7b;59sLwTn)ocOH0cQoib(){4OSm9`J|^z{7G zXMQXEgcOzgPpbqUqh@X|qH~%*TTXoU)VTff}dx_|NUH(=xM08S0`K%6K+NOfr+S*<~NV9@#oGHUF zUex7GTL5%*bzLT+U+MC=`u4P#=I2mO^za>L%JV65Yu{qd_Mmg zGare=cN4-wh^M5Ke~H6++*`za9>5O(7;)-|5e48Uwe^Ov5c?)kmSt@xqQ`Ob?HTYs z5j`H)FMpQU0|1!YHRK5Zcf_ql2ShX^g!o}5lNpa)OWXoxVP>OLDt%Qc^$^x>YcLJq zzL1!n$}>$!QM$N}gEu#TBK&;;AX6VVia_i%l? zcv}c@K`HfSKA(RtW^D-x2?+@a2?+@a2?+@a2?=xjA4@XwTQy;envKNkRm~YR~AbP=tfw}KM@fx+4Rwob4oaFLO;pMbPJyIz?zfK*BWj=nS zb@I$N)(53Gr2qKHHpj-or{Z9{MT|x{V|UlT<>FC+9(%=ln)rbpVDNPHb6Mw<&;$S! CEM`#v 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 66331c730a2c36f45904c529e70f62968d13470f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjY)RhkE)4%caKYZ?lYt_8JY5_^ zJUZV_apXE=AmDmmBwWtvO0Y)P7WM61LHvqWgLk|sH|Eyew$XQ?-Y>-o29y6EIwLT{ zWZN1|g-pgbeSEP3Sgb@%{8kXU?2j*RaGnPAk(^=|o{E=AR`id8x`@`Bx);M!f@|S+W)T1Y diff --git a/editor/icons/2x/icon_GUI_unchecked.png b/editor/icons/2x/icon_GUI_unchecked.png deleted file mode 100644 index f76b6351d81424106e43601ec517b7368c31edf1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 369 zcmV-%0gnEOP)c5NH%(5)6(=>f#<{JR#13Pv^w6fOD zrIhO+KwbXE%vS@8eQlg`Qz_;9p_%xp`s8Dm1HfgHBoDsX0I0`)D&6|VSxe~X&YAhu z81tf(+IMLxiee&!m;uNS>*^n;jr z83eG_&H-%3E+?W-W6VoJ5XkJtE8zpwx5|dWQi}2JG@wETPgg&ebxsLQ0QdH3mJ6|CmsG^tnp<{<4y*z44ng>_58oKd!3J(q~aOmWqxWa7YEzgPx(NL O7(8A5T-G@yGywn|emY42 diff --git a/editor/icons/2x/icon_accept_dialog.png b/editor/icons/2x/icon_accept_dialog.png deleted file mode 100644 index fca344aefcc1ebe1e729c33b565dd778eeaa176e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 581 zcmV-L0=oT)P)e>d<1_XuDp@NIEi%3DLphF1MBrR2vn)5l>8!q{wH|8cq?K_?G-oy7k z=X~eDh5ua=oMd;OowMfqV;}{bia2W@*s?LZFcTL6y2-vFm04sMc^jEzm*OiX_Q zFur}X^T@+z9am-@H*nJGSW|!G&rD!#D(djg(yRVxDBwoja{yLK>)OVS`vcSFy98OMGH{z-rr3a^g`K-h4`M_pU}ngV$>SO8(e85^BROS(FLcK)DVJ-8MI zA}WCA!((GJI$+ ztMIPj{_OdUV7RKv`O4&?!rd^1hkn0=qF9o*67E}oTrrodjhL4LAN`&O!&fW$C6s$1 zHx}juWXTT)@Fu*%NX;gjd!EsZ$(Hj^y9o~opbuBRtltkh-h@}^<=DFfKoAz2A%fxE z9(%U{9U*!R?*^a+B8qSb_X?UJo~)MF4zuO_CH|o2zXI4N+<&1_mE|6DD~)0SbF0Uq zp{2@Z3xJK;1(4DJ@^?{r&;l?Q_qL6VO@XWddwmGrQzfTXF5XUD|J;ZAf2n=|k1NJg T71)>?00000NkvXXu0mjfTPYKG diff --git a/editor/icons/2x/icon_add.png b/editor/icons/2x/icon_add.png deleted file mode 100644 index a46c521f2a07a8a32e57347b32cdd2644433035f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_bwPZ!6K zh}Pr;iI)u%V|w}JY<~2g2@eQRIIW{rBOTprpWlkVJ=|5F}h@gb>5oc{)_f&gkyW=z6l} z_OQ?M{eI?o=XrO4tsdmJAHvnh)L+580AUzQm#Yo{P@*_v z@VJ$?ce71RAUt)cI%>;BjduXv>qu>JwXZ%p3jpa{rr#FUw<5ZIURC`}VA*>uJlA@j z0D)&1I9|vl534!-iiD)RTp1=VUMTuhbpRWcFRoC+oG%7ns z0KBPONmIL&`c%~c!W6bFDb4`&ww!rD7iv z(p9)oT`wUIy85F@L%X(KbJfrXik|+Dp$&(J10WviN-^WLOXv1_AXGyiAh2_Sgje06 z=>3uaM8q{hCIB*AHA6{5)6%(2QzhfHG1iD@I(Pcp~D diff --git a/editor/icons/2x/icon_animated_sprite.png b/editor/icons/2x/icon_animated_sprite.png deleted file mode 100644 index 461dac8f1360e8f6168732e4e6dc86cf8e489688..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1212 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 diff --git a/editor/icons/2x/icon_animation.png b/editor/icons/2x/icon_animation.png deleted file mode 100644 index ef18959a74f40a0158f356fdaa7fcd02809bac8a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 912 zcmV;B18@9^P)UNhM4~~;KL99HIfWij5CpJ7L*+;jT}YE3_T7!W>vR~2P*~YF`zX8@*?W7pcLqZN zUp1Qd?fX8xnYZ(R|M6c3O+)T>yP+{=3BV~4i2(#fC?z5%B0n(m?RLAJ{H+F(Bxx}7 zM?|y?K-bW70AGv9)n>El>T;_(LciZX?Y)0QL>EfpD_ZNo7-Iq4DdjvvL=QGMH{Y$x zKehrJ8ylBJ+9ASvssZMC!#A+6kQ*sF|q>ve*g3+@hPB0C56@7-Ou6ybj=J0CRbsU#rp@szA5f4Yk%i06Nd}H(IUMF95K%w)XPO z%*;0GyTE5z_R7M-!tVgk>-CN+rS1dp#+Z0;Z$?(2=yMGKMD)U-Qi=dbjX262rPM$} zGxJiJJY+ybP7c;Y^qF(6nIuWW7;^)FnZSUVot^C@Nz!o6H397HfRknN&=EN2)&R68 z5IP7R$8o&4ccbbOzIsUF0MICJ{FNR*2!`6a%D_;s9ww>`^acwNS@qr@W9AURH&f)j zrL_+7JdZ_Wby@=}d)DvI&(A+;x7$gUW#<9#1mc`!*|N2EtJP|45YgqS3^4O;03HBD zOIfOGC9fMpR`&GUR&YyF3ad`d)TColjJ`HF}>@ZQg9tv?6w z)*u$g@jlH;14)uJy!Q_Q%#G1m(OO?5B4XwafD@CLD;uaRskL@XDRmCJ(@iCeF_)~h zTR{+{%zSYY@hXfw(=ZIbBcdzgOiX~^va$Y2p-oTGY~s@?dpq1Png0w&D>J#&e+Vb5LRsqX6~_KQ0BeB z-LtIG@iBu~31ih%W&?u3tDnm{r-UW|VZu6& diff --git a/editor/icons/2x/icon_animation_tree.png b/editor/icons/2x/icon_animation_tree.png deleted file mode 100644 index ba7930b88fb2de5e7e072a880249589cb8e89913..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v~04o-U3d z5v^~hIdUB`5ODo};tLe)1fe~2i%Xl)`8&L}z2Z}~#bl6$K-6Fuzb zyEp80ewi%wn}b2*<)P)bz28M=_LcvNTV9#@e?wXY-ybG>*&AJ1RtIi1|G%|o+ApCS zru2<2!p4q KpUXO@geCw`>~ACh 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 ba7930b88fb2de5e7e072a880249589cb8e89913..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v~04o-U3d z5v^~hIdUB`5ODo};tLe)1fe~2i%Xl)`8&L}z2Z}~#bl6$K-6Fuzb zyEp80ewi%wn}b2*<)P)bz28M=_LcvNTV9#@e?wXY-ybG>*&AJ1RtIi1|G%|o+ApCS zru2<2!p4q KpUXO@geCw`>~ACh diff --git a/editor/icons/2x/icon_area.png b/editor/icons/2x/icon_area.png deleted file mode 100644 index d9cefe8fc45bf6b331fae29a3abc23b5d75f3bcd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}dPZ!6K zh}O5$9JvlC@UU$C5i7-zYyq=_(HsX?#`)?D)ekl?grum7`8BX*G_aj{-|#(k z$|+}uuxEeyJu-iO76@RLQ&XHey@77eSslC;96eSER~Q%bDeRP4uqDNXy;+^*Lake7 zHG}K}qxugm40;Z4CpfS-o3m*63Lkkkjgh}GkiCbAVfhsuSN^k|&w*}Y@O1TaS?83{ F1OTCANf-bC diff --git a/editor/icons/2x/icon_arrow_left.png b/editor/icons/2x/icon_arrow_left.png deleted file mode 100644 index 64bb9c81c079c4ea9b449f18cde83dc5bb6f5a53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 354 zcmV-o0iFJdP)+N7y0r^4CtzTNBS4WlvGhE) z7jlX^W(iBEiS5>1@Ha+|-xtMxKTxUscbNO4we|+UD*!m>R&Cqv&L&`t=>WWuyc!>U ziO6-%UKb|_KZ+!QL*d^0J%ESe0$S_EG#r26L2H#|z9 zWcaK=>F_@Vj4@9n9}leYk$d+s{SXwe*6smZW`_ST+YiY-aB6}A-uq|#{^FG8?45J# zxkYn_@RsDq^biiiuxy&K~z|U?UXT212GUq|4cw!Aw`O{FGGQ7=+h)6RS?%esi=^UAVm=3 zOkNih+yUWFYXzfS#)gJ{rDgyBBzp`@O#FAmda&>NQ&qhqc|`KcIrn7AQLBK6+>%@X zn2X3Rgs}Wmfdgi$dT)_13#61b0N!gQ%x?eyVvJ`1UI3irZY0;vxrbjDXdzK8P%F_y zphjX)Ae;BaNS9LPP1kkTrOks=kj?v8SjgCrEOxc}2h0o#kh~O;*B@klxdM_~5lN#q zTZu7V0N4XK&Xzw?N^9@^<9Fv;jiIT$i9k(xwLon-0L-lAA%t@gc`lT%y!X4YIp#4` v)opEgmB0a}@+yJse|RIgw3JUwOaQv?G| z=`e(Fw{n3B_*bGNS_ymukCtdG&;TAK(MX^LytTwy1Nb)ZP=e2^poMkM%&xO6+gVB= zpZpf+7eVemEVW9~fuxT@tq+VRlgVzBKn`D++}#Hugi*OagfNygr20#2wiW=cSe$&2 zrs+-HhBQq_?tWB~=mQt61SA=-(FXp5MD5R8DPU%jbOO8sukOCz1YVNZ173hP;Iytc z>M53F)9JK0p^_x&#hmryHC%N%fhYkp6EG{3W_7(Q5de^M4m<--?tT_~&Qg(N`J2(D cOP9Z!Pr>h|wAAHvrT_o{07*qoM6N<$f)O^Q-v9sr diff --git a/editor/icons/2x/icon_asset_lib.png b/editor/icons/2x/icon_asset_lib.png deleted file mode 100644 index 22c31fb2d5870ff91b26f2864272f069aea53bb6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 367 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$qWpPDxNNm zArY-_ukH3a;vmBI!2VpSbS+c5Ld%lCgSy`pYnaxmelxS{-rIXNtUKZdLz$SFk*~t; zr32P@nExGNrcDWuS~h&}r)#{r20dzv3u3dRCv(*)Tk!dk=hWD$8<~W!Z+Aw?uRX@G7PJ2z^<% zM=7;%0*o>9wr#fnHbgYDE`Rw#hI*7z7z9|moqKF-5aR0T0UW#a$$^=7LWm!qo*qDJ z%|34duw>>P5xtB+_5dREK`G@?DYXW$B%q#XB6?!x_o*N;pI{QmLj=Hv9DYZ&p!l9Z&CCUW#f`yZ1>n=S=WoGv z0w(}P(=_`$&+E?m+8Fa3Fq~fN8Jvo1X5I@S3Mu8u)qDfu)zbxhUsL*|s;U)$HzInB c>AAmL05i?M|Cc;Q_y7O^07*qoM6N<$f@c7vod5s; 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 b44c40fb353e48dab4687c6020b43f358d50bc55..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmV-$0gwKPP)zWB!CcLJ5Ws*jBT4A0^E}P7yw|2-_2|#E!+IYACdQdF6kK!kC8E^_pd5c;~gl9 z;+5nTfbW=)y#WpZ(Wwi@gy`IcHN^EFh|hxo)DSO{N&sJV_#ze{Dd`8|`EYP}>U$Xg O0000A=MHMjqcyV*}W!5E2e z{lmFigI;bda&1qF;}KuoBR>JxzCtM@-592@O7n`&k3tNUyD_u1|NOjsdQ4JF{p00000NkvXXu0mjf D%xn6; 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 4b334682f004503dbe1a33ea8728eb3f1a8fe913..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 527 zcmV+q0`UEbP)ZL=ZYD!Mb7b26T}4s7$k$GUzYgm4cyFtamBJI=W; zeFP?5CVTH6085~hgqghrZub!=+D?oy&duyCP}Vg`xB9?a3&a@blHSvC#|9A?6TVSk zY&iMCA%r`?E8u!vlhk>^B>e*TC27B^s?Yg&x<$_ud)KmoW8g+tpmXkg4M`Sb{0>}8 zr4vbus;X81-uwGzw&c$b|B-KPXLvJarVzqeR+^aE(tBTz=Wu}2F`n%nu*yJ_1f~H$ z0rp$>fwpnZ9h%w01gJA8A@Ma`ibh?Y;jw_zsxavnE{9Lehf9!7Pg6AfI>)+#JB6 z%sw|8(OY!lYB)euRVzs|Aeh-vQ53st{}II)XOcd!=B(tc z_$pa@1~%O1L9+1>jxEvZ7K|y;`WhyQM-7Ru|4blBe3Uc?z9slhUx975`3+Im$ey|7 RY?%N6002ovPDHLkV1oBi^1=WB 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 b09a15351ad7fef521e0c6f4b6e7fc4a83b21ead..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 479 zcmV<50U-W~P)+{eZX%~F^lbOW@%eIOI|f$z@1m+NNGXp1ToKVHGsjUB zJ-GmQRR#}-!xI2E00c9Gh&lkaT>#d~4pd6Di0B%CD0<8sx|o*+P)fC!`3@BmE2D)I z)@42z4Ay<$kD2)lz%GD|g#dM#r)k>A^SsB*d*-vBiKUbW0J;FSiXJn&_yYL;@;uLb z0DhSR(`%rko7W}Z_v3lyz;v{Yy3HqQ8+A_z5r<(oHUX9*X5P_j&+{&VAQ%^Q>2ttA zn|cuh!AP(F0>G*jz)}H{Br*RLZ+`}mBuVIbUe{>9nB(+qI06v38cQi{$LFot&=WW( zqSO_@qJEZTW+L_*ky7fIneSmau%alMnqy7^eIdkQar)`9u7PH=`A9^k06uKv=I9;3 zGl0u1%l2oP110Z-wj|61s;bm3a7@A-K!a!-5Hn+43cv*7ftgzXUMJ?UE5J%CeE|;T Vj&qBV^-cf)002ovPDHLkV1fuC%+CM- 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 868bc6ddded815e8687b926dc4b564b8fe2874a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 462 zcmV;<0WtoGP)IG@cmEXb&Uf|uLELs6hl&aaN_`z+kg;2 z#Rwh%Td%7PFu4y%M3jJReB;&t#t*?_szI!-x-o$9ARysH32dI~)&NFNJ|Q|PNr$V6 z<1GM2FFpx7N&p(^*cxE?>JuQUSiozlTPuL!n@`N37}`BJ2k`Ok69TKa=2Um;R8?pO zo`wVAp`M>F}eAW6i`}lPs007?JNu~oGKU~HmXR$ZYURsc)V@!J)y8^8BE;4BbD(Yb9)DTV7ixtDMqobyf;Mb|_`jImA`0wZkj z8WK^xQmH7%+)vw>AAvEZ>o}PUuNi?fO`8A)+fFvdd`u>j+l+wk`#r674Zt&i;TE!o z0G_ng7hxFoZ6~c5u#`BCGygjgJqRHlU91Yf14Y6M3lt46Bv3}U6LB2Rk|ep?d9Xz( fb-%ap1Ame)31xMI{uFCj00000NkvXXu0mjf^{=+y 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 799b93cc5d0f930424d4f962f3b4606e5bb1c86e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 769 zcmV+c1OEJpP)f1!~v|VnqYS_jXRKc=`DX*itNIAsRX- zx>Wr9D^Nz+D?!;q_}2w&>b`Rd07xd2eat)yzyT0%Zf>3-BIy_Bn?0lHc~%O{JO`i& zz##y4lgZ?&X_~Fo3lMsqd7!c2`KS=$m1SAesZ=UbDyS&q+J~tDW*z}iI|FR{DfEU; zL|4-3bgyZe7Y)OB>?z>cr}$JFJX#&6D-0pTaw3sfbR6e$OH0ew>_V;uPg2tZ8BH54 z?78X;C}J=W2&|i?c{2MVm(kJ1$RD^Ox}i=8F$3Umo`8&|D_tOJgxukh6JUE!csA~P z4ahf$=u(k@jHbT?(B(-FtW`-~G=w`9Ang_tc?)2QS4eD1DP6Z=ZWo-7oLzD>ebUx+ zxLHQiZd{0*c~~a#CNtj&hr_LIeo}K~z|U?N&`lR8bWE&b!ZYChkQtkqH}Bo~sZD)w z7w_J4&iB1@zkA;U{&i5U3-WFMewcc#B-9g71MoTl?R5Rdv{k&GHR1TUFh9JhB(Rr& zx(HAXH){aETVX>04&_V$5BduXgH91qjq&w$6S+~u@q~#um})^u0Q>!#S)v_drWyt} zhJllCLyHpH5Ie$A!1o9KrXQdofD09=7{E&ap?L%flo>OU60ZGgk@}x1dqq*lxdU+WO zh<}s4wKs=V3afTN!2@c0nKEx1&#_CMP8FBI7N{ZO!mI$g_EmMy+Qm5vh$yx)5k*zq z)hcn$9Y~|?nILTw{&fKxx}#440Ao|3Mvxp}kO@NI?fkBOzn`R2o@4c}(BnobF!3OR zN&u9CasTM?(A-#Xr7U{^njSZ7P@M35f+1dv2G{zAXO=vvl9DPeeC%yzW*>+u7+}Lm zp*?f}SB2c(Ffz5;(dym($X3A9&w<{b;LhwgEpeELW=4adi9Dt&XT3YWMHgaQ@OY`O zIV?nH;-0H|Kn>htl3W~_T0Ik;iB&Xp&G!d>5v@=_MEwAc#0dxsUFioRM~Gc6F#(3X z!=rhj9FQ-Q#+Q=>goXYbK(#GBu#g=$ZJMxl%Y<7UAaRF@>;*6dGGuyoE6m?rTCfO`>bz0B$k04!`D*qCS_=4${|V$&?oh!F7U zEw<#N!L|1QN`IT0Cq&xM)$e&_mzT41H#WUi$Bcde5`?>|AEW>H1zh(gdZl8IHvj+t M07*qoM6N<$g1kXl9smFU 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 917719f54b95404217a82d734e1e214249121ebb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 763 zcmV8Kcs+=@1dM*`Ho?la6Z66wJo%d<#+r*f12QR@u)?Z4BJXqyz(mLlJ7=+byH}J7^Z*DoH5@@C-ns3|R>ycsiy%ovS>Z5iq`Z8sBCOeXOZ9 zk-pKUY)(FeR>0GEm+t~$m6#Si;K8=_cL^Grb+Y2ZQp+01Q9fDW*-Kk{#y=JoSG0l5 zH`(5PIWCh}wgM78Ah(x!*|)Rxw(eY4Jc~H2tZBN^8rEh)QQC=IUbMX3(Cp3@^+$!nTJ8t!~ol24uhc*^Lf{{ zJDphUOvS*!y+8vG-$y5Yf=5cz^u=CcUP_wgf>4xm)ZhO(wUFL|`yVEIEFng+_q>1} zkU_8Od8H<+Fq(3fc19otSr{cbrL42K= z&*m7gg!%+PYoI)^QlfZH6K+<3#5E=gHoz1uQuq}U`5wdcDL555vFHeO+!iYQh9$(6 z(~;wM3KUK<(G8(#4SwQ)PuoY63!TJ#0ib4VG|OWmM2FShK=Gt$z6MbL+teeMc}O1| td>#~6wsYs0W(NUN06YS&%l?f1;}@`WCtPL#t7`xN002ovPDHLkV1iPoSbP8g 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 baaa7bf86fa2e28c6ee56544635f68611acdeed0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 712 zcmV;(0yq7MP)@4uFgW5eIU#o0@ulfVRJ_3pWezxVk??#DEWXPY2H8>@ zbA!X(I;RblggI*b4SEW^F(qY5%$cx>i7b9D2w3C{B;L{cvt>>FAz^a zZ|nT9_u>1SC0Aq<2LM+^SE$!atgZ3GUSElFD_2BM#3Iks4qL8NsV)#P15!E+4i5`g z%1FQ7*7>0U-C1Ms7yZqlHD@E$ZCbI;U!K5I0DXz_z^uulzUQ7&4uhH=r@s;)d4q|P z4KP)W2DB9)&7DX*5yNx#WbW9sFV&bQ6&gLRlvhvXjx_waSPow(#}n$YiMNDU*;g0u u9U$g&0QKPK4fhEVs%3T9DE=RRC4K4y#NyVv);PNQ$4b9DKoP3i@<>kq7Xl_ZbFYm*bPWBIhlaqhW z{c&<~6W~byyGRF0sfz$!0XRKk%_e|bQp%6R0_*^AMqFHL7r?ZXa?dZW>>dznPh1t}#JT`N)?$1BWS%cZ6(mC929cZ=>RwF92#-6NvU z`5ZIXqA0pH55C zU?Mv%S(f!R3`5uSPfbnz05FTaH$iJ0K)u^g_5~0^tN=I(;KSJ1m?MO60ek{*LJ09( z`=TgX)UlLulZb8@rF`4A*O>Xh+zs*w&SxMuUDy5YI8M^(bae3x+C)T;^ANu8zagSk zqt;Bb*?cxEzyts|j+5xbxP z6VZ%eTai+})hDHOfSH$k-``(6j^hO)x?|WjeBXbNPm~6r+YSIx6rE+}mxiU8rs+Hp zbq)nUD@l@5L{tZGESLUeS=L;(OCC_)87TTHcFQxfh~xMjfWXM#_B^lAtxl;OP)aQW z_-p8bAb4GLPhkg2dhfrqTCIn@42Stg)J)TKwpy*Gg90RluHm%{;BvR2>jiMVB#0Qm hl|lZ9k8~se_ybGz+kUT@qt^fc002ovPDHLkV1nRmLX`jj diff --git a/editor/icons/2x/icon_back.png b/editor/icons/2x/icon_back.png deleted file mode 100644 index b3c9b302b4d5abe4650062de2a871fcd32487469..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 410 zcmV;L0cHM)P)A8TMe9ZmjEX57|FZlIaj;^9RS{~wG)!c5=i1`Gik>7WMNb-(qHl~a1ieQv6uoBI4o}@=f z$xGMjK~+^=(rstWaV|>Fd1#d0E)0#baT|w3Nj9f6O7b9;M#-MURFn|HbZdk-iue8% z?Jslre}SY{tJMYCQ5qFprmCtu$#Vd60CSR8C3SzJA49dyp&0E|GXMYp07*qoM6N<$ Eg3S@G`v3p{ 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 8b5c37b7e59abcf7f42ce90b732f2ad4e4144de9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$sh?&7srr@ z*5m|xBX8)g=xv;5;scWv!mMuLJ2Co_d8T==1@%#INVVX3X4ex`J2B55R z)x4$4EF9S{aQ7@@6pIo1@u*j(LA!-LpW^{j%O$RrisoOO8g6AKA8<~%!nl}EqLiV? z^25x=#zygD3k%==5Ip9<*SObYiva7N|NraN+nE3T{T+Vrz=03*_`dB=O-M}CHtcvR@G zUoY~bTtm*Lt4Wo0?sr*VWzBD#Sq_z^LA(AMJ~TOVuWlUD&s%96vONd0{diFf4JcHKuP09>(4vJ z37vcl?}SfG7rXJDCtzCaTEl1tb%w1C1-#D|r``*kcb{e7{-AjsZw(Kt#07f+J;LDW L>gTe~DWM4fkAiIa 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 9b13ed8ff1333c0ab162e74f3134f8c5ddd3ae25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v~04o-U3d z5v^~h`tmgy2(;eca<@usukcfrJR2VM3&J}-D7?EX#GK=MER=Uj$Q6S>M}CHtcvR@G zUoY~bTtm*Lt4Wo0?sr*VWzBD#Sq_z^LA(AMJ~TOVuWlUD&s%96vONd0{diFf4JcHKuP09>(4vJ z37vcl?}SfG7rXJDCtzCaTEl1tb%w1C1-#D|r``*kcb{e7{-AjsZw(Kt#07f+J;LDW L>gTe~DWM4fkAiIa 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 8dfc1793f12b30f08df8a8fd20f18f16db0042db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmV;20eJq2P)S!!Qusv+RftsP=2Py1vcmhu$jwT6gJfVD*6Y1B*9mDR00$ z2hoM2#1=$FoMmeuYzH2WAP0aH%yV-HDIm4PS0YJL!8`%5ZekOY^d5mP1oItDr!N4& z%jHaI{d}1JeJ1pUA}V>YC?EtWt;09D^5x(HTr=+y@CM+_ z99*|usDH(wfDM4#pB8k@+$um2-7DrR0O#N2-s0mf=$v_j$~^4Xkh1JaMA0RHM*y$h l^h8A?!i9=~!n^*T#XHg!Zgg6`MuPwV002ovPDHLkV1kFCrrQ7j diff --git a/editor/icons/2x/icon_bit_map.png b/editor/icons/2x/icon_bit_map.png deleted file mode 100644 index 864d09991e21b79e4287f15579b3e323ee352c6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_cbPZ!6K zh}O4LHgYl;aIlz8{_`(*r)LnSS*DYU>pShIvz?!usq23(Ah=m<(w=v*e=Qd7lVqp~ wFZu8C>?bS30cM5=j0_(b7%CVTY#10Kb2?Lurp|kP5NI%ir>mdKI;Vst0G4br^8f$< diff --git a/editor/icons/2x/icon_bitmap_font.png b/editor/icons/2x/icon_bitmap_font.png deleted file mode 100644 index c533b5f40e940eaa6fc0aa24303100bcbdef0c6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 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 DgoFFY diff --git a/editor/icons/2x/icon_bool.png b/editor/icons/2x/icon_bool.png deleted file mode 100644 index e2383809d8364fb698101a2c59a3f42fff6b8b76..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 422 zcmV;X0a^ZuP)GEC$); zm{|<_4T*u&_dxTk(*?QHpx=E0_m%f}j+7vAYp7D8@8$~apC z9k{9-SZW)l@086lV$sFrr*zTRa1Q+B7kDV%Kg{w_3G|6JptJ;25-}x|mR%=4Dt>$) z3G@kj2fDzm!1dDex|_d|cL4uL_j~EbGH{~s`P7be85h8wkL{C?kg&jf01}d>LDAbF Q&j0`b07*qoM6N<$f{uy1@Bjb+ diff --git a/editor/icons/2x/icon_box_shape.png b/editor/icons/2x/icon_box_shape.png deleted file mode 100644 index 7d5356ad94dd8c73b5cbf870615a765a7701c4bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 597 zcmV-b0;>IqP)g?gIT0brX>8T~$Q{u|l(S z(PhDfSt^K2Q4r~(TX7}bHWkDV>eoWr!BmsR+B6w#k~uEo=$NFLWSXp+cQxF5?mf@E zXYS<;9CfK6i*CLUGhAo!jLEf-LjPJ}xu7xs@Vwd?DnRDBOhpW`lQGh!LC8B-so_{< zR)5%J?q5*3fdb4uli5=d7A6y8-&cP}zsK1<*A(ZNfw>SmLccc=Zk56rk>Oj%fq%g47zY@e?+8 zVf=X072jhh@Tmm3JXpK_kOu;^!uXY^o6Uy?@PfGIF+y-Q-u$w2d3axJzJ0&y3&0EV zs}7$_u(A 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 8856b026f0249655407475e1a51a55e86175ca30..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7645 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 q|4A2O8>qxnC;O@eO03wKwBS-Yi9^hp_ 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 LNkvXXu0mjf=tPvO 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 dfa1536fb435a936015f43854ba958e5013d384b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2241 zcmV;y2tN0TP)eal0019+Jy%lFgAdx8mKk*rR0#!+xC_V*9*j1T=32_QO+iwPw z#uij1>C+G9C~&Uz7`6fih)x*@54W@px=26)A$CZViz=B1Gs{ zLh7?O=HdeDT7VQeBB&4SNuXeLOhJOUpc0vatSm16CcL-X3_h$Ogt-0yVXsQ5&t09Z z8HG0X;s5~NPkY5YHavcLB+#PDsghC?Ve~g45p`1L$|)Dym1lq6ZLACH0Ffy`>_sK@ z`71LNI3L>Bivs}o5NdO{l!8=RLV-|;C@82aSD6AXPC>idn9(PpKngWafwjI37?O0+ zjCNemMFVfSa;i#|gaRb$l+2Y=E=IxAzwS2H_;rZw5h3>)pm$7r$mi(2GLo?T`O9LxFQ`?8N~9yoY+6sGPogH6tN~ zMuI-zQF~{k3lO_XSLT~TRP_XHufvwoT0T-Yi%-ilCn9xMF zTqMa8Qi0tnchO9UQSjvZoyLqILH_{sm6CdUXNCf6!lth{x<>@{;Y9zyyGTKzY&l`4 zsvI42aSDD&Lje->D=GE%M{~BohSo!TTi^qnkS>~2LTbeLl~Y3ODwQeVV!QJA$DPKR zu=dgG1<)&@^o0-S;sWd2*oy;f;(}pZ5*-7iqhLu#rK*&s6dn;_x5_!932_R3+G&gl z@pD83eN`!a;dgT$kxP^#3Q!*ooC5X*Qe{bh>)yP7K&f>71DS#eF$y02ywh0Yqt}iR zu|Ksc^@R_<@;uJjGX-oYrk z_4^lRD6rPIA;4AugqWB2P!9)7C^$wZffjX82&FU<_OYJ;AazP*3b@#=Jbbv@7@Ho4(>C zIigDH58hwWU7ujm%6q5}hLeyfRh8686x|kJfqBMcQjCJ19_=-wi9cyYNWH8I{rg!8 z9JT>*3lJgZ5t|p zu+F!!7Y6`vKGcUpI03dmD4`*NM+8J&xylr9F$(_vm@4aKQa?{2T>Iw&^L zaqQSI0MvF#jwoek^`d%#TuF_IJfgD79uXI#;M*sco6-3AQ@4b@s7n2Z?Jws$C_<9x zIMn0e;-1n(d7_E?vL{efrACA#9#PH_O^I#F*H1q=q9A^~KuDoK-hME18jtmD2q6sx z6FH(uTks||*;x$*^#KuLUP#mxtDGa^VidGbKWm(|2{NVF7oyNt<|wevC(4wD+M1J) zBPxZ^Kt+6yh^UjfYBnK8!C#(TYwT!}ctlc_`pWtHb8&%9<`E4`Jfh93^S}Q~U#lhE zbVABRIU?v(p0b$`+wFVLt~K7eBxg`aA@!%{zj!?b!KLY-a31Qz6ES5|RzhO}j|hsQ zQz}!y#VEM@%k?G5f=X#5>Z6uR{v93X91$0z z;O6r?jWJ__Q#!F%O6c2XZ_V_S8rz0|@jI)-Ntrtqs??C;+;W1h5Gqr^#3;D_;%;LH zvkt*Wr=VO({l%FZa} 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 94d5d335d6a48f12ee423864f22dbde444a5fd58..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1945 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 diff --git a/editor/icons/2x/icon_button.png b/editor/icons/2x/icon_button.png deleted file mode 100644 index dc07e92b739a4010ba78d7cd1cd8563a3bb7c570..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 456 zcmV;(0XP1MP)Y{P*L5L4v3^Y-qCIo#0|4bTn z^bOR_P-6iTcQ)QajiYNJO&mme90;M7Krgk1!Tz>3r{_EU`t{xm{C6bmgB80*?{zVg z59Ou828fC{fOY`Ov9e~XS|&O2Tay&CRV`bNmDTmt9-N9@w*VFdXm*ubQm%UOS*-xP z1+Wg_shG)cL>9no)eI63o?9OP=6o^-!2H0OMloHe{yKm~E757GX8@}@VLiMh)9#uf zMt7Vja0Yq?k^|6~pm+n2Tu^aff*Bww_wCvNDOd2e`X`PE54TeJYZ2iHO}GGkDt3L@ zGi+X?W>>kTos{u9iC?JYlcbpK$9>Q}>$#}&?bPOt?pw#ic+pviX1{E?q{t3{MLk=- zgX%7s>7E*5e2!Dj1X*?L#07*$dWHMQ5`@PcI{^SEp>TJy;sdC-7o^eIjy2mp yj1UV^1o%^?9$@G%@Sk?0#(#RAdI#bFF)`mk1b9H8y)rof0000Eg<=ydI54PsS=AIQHJtHa?IP5JQ$_ZDlptbb=m`PTNK4fS(euTFdmN& zLkMShY}qd=pzh}v^??(KwuyyOYDz>DLYMUVzcL>h0_TE@~DZ}CW4&O&2d&)10Z9r~4yIRoz0000+K1!iH?(Yo;goRtjDvs5bS-3;2_CT6u+=+vE55DsvvwfkUd-WK?K z?G+&dQ)eTyF8j@k@OIsNdRuoz^bi;ZezTh|Pz%{m5q*)@YcC+8KZ|r#Bpw1=z!s># zKq}`r+yU>q{ z3@j_ikC5cPbb*oYEtE=n;Jg6w9>KA|vq;jvy=wpL@w~-yr2GPiMOjI!$qHZq0000< KMNUMnLSTYsEvTvh diff --git a/editor/icons/2x/icon_canvas_item.png b/editor/icons/2x/icon_canvas_item.png deleted file mode 100644 index 42863020f010e6d83fea91bb5541b18d49727f10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 709 zcmV;$0y_PPP)`+le*`=6_@G&#+ua`6$Fg-oJKbcGpsp=jeh@$9fI-P#@M+^i(&?6$FKugiqF=NaKK%!A_ zYwghzaDc(Wq9F!+-|q%SO27ej6c)*P!^1G_Qq@slW0|&3g+*Nx2!fzfRmXtVGHnW6 zDm>IJ0c-6cU<_!BfuAGoz<3NCRlS%_ zr|%Z)>oQ=i-3z=1w#2{(UDv&_)?Up9eBa-_0^b_bdf9c|>!mhpGT{4uMa+sG1toVRQ)Orf?$`3OaSd=2aDWv9Or!8ys8rLeSfEjyp4kcw<>`{6$w~tUEp0D zTttQ($2nK&+=>&(X0x-v`xyA`YT!`i9mr%dt;@^H&w;Kr;Ez(NRKJMmx(%qRgkg9V z=o67#6h$Mz9oKcg&&|!X<#M@kpmWuc2ae+mR0}U@AP9nf5xHL^f6V9ey`JaI%+Jqn zT3lRwsj7!XWH^;dovZ~8CGLQT46Gq{G&eWDn3|euX>V`OE-Wncs_KPWV*iCzEKE*L zCSBM43T!BG=7cfkajn4O`Yi!t%<(dCfFt#S!>a#*FbtolYB#Vw=1jToebx0d0ab0Q z0FH=!Xo!J)K7R_Bis{eha=GD#81OvrGtdLfmgxPas(qg4%{0USfH5X$YHB(lB2R%Y rD{@9e9xg2{?Qvaqte)`y^;gsn?RwRI#dsKS00000NkvXXu0mjf41P%S 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 a9f7948060b5939f858e0a8f5dc731bc483a4459..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 640 zcmV-`0)PF9P)z(!;X$@%!vyz;9-!TCLk;|npy9*qTIqxT+fOAEG z?ODL4rjFtJkAQPA!J8(qw^XawH8;1iYXQq-Mv#g?-=5%&SO?N_?s;qhtK=_2?HO>O zO?VI+piAnVeYvB6t=&3;-}4UW?GXIm#H@pc)i?V&+UzxrF@)dqxZ`jDaS-gGS@TCX z2~f$T+3SXjCvl$Nnek{-Pf##J3+PVQ;Ek98ia{k@fdz7Bh=0!82o26#eyBx2FxGu| zz^a9;$R4nfqy(t{%7Mrp_{f!k1O*1b0nMkNKUo1<1pb>eIvlkv1ngH*bc5BP-1rZC zz5G*3;uwO|5bz>}S4qGD48o)o3YbqRDFNRatVUumQ+9M;4)Z2F15JRz}QbS0LwoeqGt7{nduM;o@V?&whG=7R7-N{54)Ln af5%^QKAhtDH>WrN0000h5e7QbIxnMT#>i6sZw-%%Y4ELG#wFLqVqwdr+gW&x0bi?%Tn3^J91RYc_&dh-nV~5d&%%M^JqXD40bE&w`~62_ z!U06uB8OQqpoUR_>Z6$OMeT?je!vxO@@*<|)CEoS^0-c$cRkWod~+nPjM z>%_XTvYt@_eHz#cItpyChjXz`tn0DX(oUdX1Emli12)?A3AELUc`e?0S_$;3uS8%B zD71&`CNP+q&gsam5R3~HB^Z3OODZoUnwOFRpAPR7T;sqNyFNuaEvaZpW@gd` z8g<0$hL?%%9Oy8m@_e#$ll~AD@_kB>SN2_Mr2>Z(AAvEU`TXFiLV1iqyzW*G(!1AV5K`gGtBXAdYe#weG#-8^r4r+FPkGLt(`l?tr|X~e!%s}g8$*PLzN zm;rKQUZB*~Skj*^aHUoyu=OjaQd5`;-+;Kow6S zIDiVToiq?lpl0Dg18&!DpxCB=hLH5uI%pu8fOJ<+6AD)XQ*nA{5j`p0$0i-*FW-dH yQyoOY2Y>F!PY=_XWREygmmHBBo#q>N3uhe;~v$Hpuv z=alxo5;r*hc60mSfK8Rp3B1J~nrX}q^fSMn1i+qFF9`hSz!7i@`~r?}`~`bby?)4R z|L~&4A!^TIlX2@R?{&_`fhfIkEj|-|*wUN>r--&0jyv;M90j6XPsV(1&#oZ! z1P;896$cO#O0$!sI6%&|!$4##`Wz8G6T8iAxCfTHs*2^L08I!P_dWFDGhtR=J6qNW z=k*{2{q@w;3p>zjCOqkJ*DVt1g~sxrgxOt(PLU-*9bLKJoLSuew p%y7OfSoOtq2ce!ZZoPjuegnKu60{0zXdeIo002ovPDHLkV1k6UJB|PV diff --git a/editor/icons/2x/icon_canvas_layer.png b/editor/icons/2x/icon_canvas_layer.png deleted file mode 100644 index 8a4b31cd7d9bc620a309bc722b4ac4cffee490ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 860 zcmV-i1Ec(jP)MCRkV2V zxHk{B6hx$0YAKXrE2V2eilA689@SPVEv<^~!HX9W51wW=^TOD@hzFJFV#4P0&`BL; zGRY*6Gc$9rTCLtJ zVU#Afdf?&U@ zegVv8(0)kuw*9^h->{v7e+^?Lnm+FWS^ zzVGkui{}-t6ZLxiopF<;4EVmk%W<4(&01sl9Z1~*Rh1wJ-T;guWs zG{^8Ct5hn>z{iV=i+=&B<+TV#GGL5(h4eNm!86l}4&qJ*f*|-rRi6cR=G>EY-WSH5 z45;e13B(bRpYMr*D2fgNtsH(Y48x0M#oFz5wLko0#6Yvz{0(>x7}pWsQq|?MO>6(Z z<3j)u`6`KzRKjkz`%oOmXH@kCZlCpC5xE{k(aOTYLObCl6|Dq*kD_Q#@*ssu@gPbV m_)|n~gkgAO+SdQSg?|7;GYShOP<*cd0000PPQ4G$(Y92MNku+GG+!kK~XpSXy? z8QIgq5_~Zi(+du$T|Z{QnC}rJ!}LQ(oh{%AgO~2|6O30j%*kO7I9;?!#=-ZrXBorF zY5!|;3mUTc6pnwIAO4tgmHH{hEt}?OuEsXp?=k+i#e3+l~ENbosRiKX;JYD@< J);T3K0RSUeY5M>G diff --git a/editor/icons/2x/icon_capsule_mesh.png b/editor/icons/2x/icon_capsule_mesh.png deleted file mode 100644 index ebc48ee736a49391cd4355eb13b2ea7c9219daf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 767 zcmVq!K7_ao2W!b$TX2?Ro2Q{xQ%{l5Ma`CRZ1ImvKBaOP4Rj9L;NM4H*#O{EyBS(=kq4pxu z<@I8&0AEAhG3C>T>jIEc9-hWSnmHQ$PHVrI3hS*sc?tPlzbX7ebf?bA6`KIae_P1N#5_R9Y9`x(A{ptg$E$etx!yVWpx~Y(H&~strosk zzJDjw>8_}Y1<=}%0a&JWX~7wwWoaH*iSTj+Kuu*AKWdt8tJ?3s8)~it;LnsRK%-{U zyIf6`O>GAnU9=63o?9r|JLNJj!5*OE%XOjo%pstQA}2780Gl@w09MC#52y#LFu}$1 zHB}Au*ZcBGpzfvzf+uR%j`+g=v{lupWd xzqfS8>jv#C-THud1vWwA{1Y=%oX`I%ub<$)<=!GhP8 zArY-_uN!(Fc91ys@&9eFrVFYTyH-vXdGsP(qx6bn`dV*$U-6SUvLzzFWo23#9zE0W zbDhYuOtDrrNj&?jt%v&inNIIc-t9kK#Qxv*(J#mPC5eh(Tr62`#jlrNX27E$S)vjz z_25g?^~{21f&V7!CU|*%&+(s^&Hlw*O6*kb7Oy>$jZFUQKYTOn=SaA|OPE)Cfj||< zM>iHn;X`UUuAgli=Q8!J{XC1&$I_^LWBFT#MCnzz=e=i4x%#kRsSsSiBYI*g-*81-~X7R^8M^X#r8~oE21#Yr`(8UQ1 OMg~t;KbLh*2~7Z6U7F_r 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 e449ce49858f5596b7508b5a47df9115f37170ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 552 zcmV+@0@wYCP)b_=N;XsrbOWrT%S3I8{4U-}A>h(5kmnfLgf7++sF%n9Bph`q>SD<8Yzyyin0WGgPeV5Mms| zG}`+&B_2vwDmsC~3D6U=Ya(p?{{DN)Tyy!IP{vo7dYhH+{{#TAe4tyR6m7D9q->TS z$y!p(>M5u3ov_0000o>329016c{QElUab=`izxf8@ zG-@@Jr?Hp|yC3^L%E}M#N$EDD2H!DvuWIB^iOYWvMj&>zdz5*??oD*|(>?*wa;9M9 zR$*=gup7e6954uh3gL&r0RRZQZ)6S>I066dAtl~`upLj>j+eSN3{uAm1Ax&e3nJT` zjmrZVKom7E4xj;{W3C4P01Tg%%rOHfmTKvBq7;B$p6fsq0HBFUkr6Ft3Q+F4T!6eh z&#M!q0kX^iHa4vjr2rDCRsupBAT`eoA+&!+>$rNl>(cbAZbU06_rk3^T-ExB8tMtm zYBY?A2u}$BX-OAg;U4@KAaiALof5O!UG1-E&EvE08sEf2iAP6 zxJnpOEp8QFY-^t-9MqKZZPXkoYH$=X*pOcx>zIhQCFUFL-CP)(fflz49b3`?-s%l0 zB=}0VjrrUSc$tGx4So7_3GcZYFxZegj(pFITQyWNOB7V1bD-~PmOkEITqF<}YNij2@10fTA`@Ek9I*3%I+$3Nv zO`rEu+AjE^&Eo3iFknx)-3QXjUx82fZbiD?2X zfEw{3SP-b{z|d|919T2jTKEhg0dqy?{1a&+#qzxjX~NmWNo?p;|0et1_nzlD-^m9V z85!pt6;~+L-``Y9Zvrd8GBBG^`vf=w4g=A@uHdTO%RC0}0=QTnB&R zYS@6SIP+8Pr7-VnTV8g6Yj#uDcd8R~7Sje0SQ-@|h0edv4ehzzadF09nILjJp&pBZ zpQ8dC*i9n5EH}&ZV{{J2)W#w(+}>e;K=dyCKh_}TbtLz--2CvUR4ZMIiu~0-J%Jdr z_s7Pf+}Pg%o}~~?!uFH-_2+|^&>?hOQv^Ppq4{Ckt-Y`ZLIFJG^&Ho%0XwAoym17; zcH6D36;#2u3$fSnyW0K@(c~4ZO8+{ZOK93wa3oL_WA-){ydTMPXJllY2Yv%i`iJ}4 SDDG|m0000=l0n)P5 zok7?@=XX;GscmMU)0Mnc^D^!Kz5l(oGepPu@4;!w>2!MOdEPyMDa zi}0nCZDxKpEffWbcbGYnQjSazt^wXR;+sUJQh60ZOtNk`aa?(KR~&!{f}q39wW1yH zla$8S~$>N5Rt!Ht=jc^{p)xVIz}>n Y0V!bX!7b!EYXATM07*qoM6N<$g3kBkJOBUy 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 feb84d2f1c33df6351019cc29ea1cc0ca00891d3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 838 zcmV-M1G)T(P)5ForEwyt7EFpzWa8g(ADz0y+dDiRVznAv1RdV#h`l{GHFe z=ltIt-#hmVeD6}#GtHE{%};@7muLl+3z`88#(;6)Vc;>?-=@*V0hlT4bJ)Zg!MZBz zzA!jhOmhRt<_*y4+nN+yGuT?Cv8z86@N0g*{;3(Dvt&Cx;|B1D{VZy~LFa{_eww#I{}z*1-E z`c#VEt9$h_33^7kVQVpui@+gg==D^JEpC1kz)ZOkBhG(b296doy8I<$S6#mK2rd9# zC_GX~vm?AQy+~4tBkqPXqqkObfMQ0MB#t@Z?OC6Wa9|d|Ou%U;;d*hOuGDHiqkLL@ zG6tOR*@{;bpvz~IbIvCMVk@XwlTGvhA3g=dkJ%C%VgM2coZNx_jQ*|{pt9+1g=2#D z7y!^pbk4#0FlS!d2DJFfLC^EDH-5lB*{3~C;)J3i3c$N1<|8o z(9wOz*4FEs8@3h~z{Fq-Ais}M;6-TO0xNT&UVy;kGU4mlcwTJNUoikAlQ`v&c69mH zGhg$ZZ%4y#y^7=U@Xy$FoGtML*cM)d#Ibx@eYKcped`6z6WwQz3u#)z*Kw>NsWcQ% zfn^a=W1uX0=ei%d@7UUMKwoU-@EWnXkk+e6-9-A5?ZWttgq92#k}+6rVzg=DbW1ih zL38D(9c0=#sg>K4&*;AE_05~o&%TQL(|V+U?ZC*qt;G|>&!01&o-&uFKTJ9h=YaK9 z85_^d<3zEIn{|DdxXSvrQP3WURt2n(SZ!b!W9BigfCq@7LPpPOsr!BFBR1pxmWgQS QUH||907*qoM6N<$g3@`7rT_o{ diff --git a/editor/icons/2x/icon_class_list.png b/editor/icons/2x/icon_class_list.png deleted file mode 100644 index 4ae0b3edabff4856776e0d9debd11cc99ec5f162..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}(PZ!6K zh}Pr;iI)u%LwNb+Y<~E6Rk5Tfc^@p0<>==O#VDNPHb6Mw<&;$Skw>$9w diff --git a/editor/icons/2x/icon_close.png b/editor/icons/2x/icon_close.png deleted file mode 100644 index 62ab763fec5c5121a27abbbfa6e4a831a8f2f7a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 461 zcmV;;0W$uHP)0x=YYzbhohM{q?aJ`O7r2pR~o@x5Gt%EI_U6516{ zU<~2sx^Rf&IPJ7!NL+B1o%WtDz0=deNhbwlt-U;UjkCbQF7W1@8#Og|&h>$Xwf5RK zM*`+Az&WrJkx8f1nWmbn>LbtwHo(9b^I8j#Z`lI4C=72^b(Ceir$T40P>iO3k(7KYm*GK*=4bFN=uz60*d=HO{TUZ|(4Pvt_Pc9gcgXntpm znN_Xv0;EDTF|P%Pg=lIX1yBb8tecug0|X%UBBH9=YGR%Q5P&Eu$vhdL0Pzg8N}u+? zIK>q1_WbQdCC7I34tUJ>eD(dHma0CaTwqZEfpb0iElh}>|NJ+S+5TVN`IbNGUR08}Z+fyO_=Ys_31M34lFo`t>$g*rMBDZ{>jtwxZ zdXRW!t?gQC->tR7=tU(t=X!Y!@1wL1;^@!vlTP{sudhU2Ou|DO00000NkvXXu0mjf Dry+|B)l$6Ig|vkaS|L!NM0%n=5<+dtX4`!FvF~ z!cHvC&dOF01iNc85YWm-5F%tVHVS7h(G7PI(f!KV$^ZS3WdV=J^WUNRKt!}pAv1q+ zF7+vM!58oaer18GN8e0#Q-N&&&ppUrRCQP%&OAf_kmvcDwRQ}^EJ*%9M7zeA+xkJ{ z9SFnl9zaS&Hw%#8m1VinByTMM0L=VYRn-=NvpMAFK@e;vNs_lMH2#8VRFy>Jh=>kd z_NTr(X66GT`tnjc2WDBeM?@z8mcLnjC8B*}%&AMRa{&MlkrcoMfR&b&CsiFrQFQH^ z*{Q&Li3q?Lz-sMiVy)eY<9N~~uk%aD%vn(sDS*q5nW|o?>UvlCT&U_mL`EVqQq{qa di9Mb_#~YaBVGInq>FEFf002ovPDHLkV1nwvrKA7= diff --git a/editor/icons/2x/icon_collision_2d.png b/editor/icons/2x/icon_collision_2d.png deleted file mode 100644 index 491ebfaa78d2e649bce95d06bdcb6670c44f08c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 407 zcmV;I0cie-P)1mrh;U|f zIBEMH`yC*D3k-pq3k-#u3dF$81Y+SP0x9rhfmArKp$}|@m*sH}4tM}#7J1zDIq@st+-(o8 zI_9F-8J;F!lz4&ne(pOX459~LRj0oqz#>bip7$hxxv#2=>;eG5Me)>=AUXhWzpF&@ z9!Qli*@P()W~U%l!t@x%NSOD5p%Pgd(GZEx|AM*>Ib_zvBZRZ|yKo<^m_Obl_%86W r2bqpQ2vevw*@>zRLYQXf{F%G~#D>Nf3@#je00000NkvXXu0mjf$B(9o 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 491ebfaa78d2e649bce95d06bdcb6670c44f08c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 407 zcmV;I0cie-P)1mrh;U|f zIBEMH`yC*mZO)fUQ&yYZ%)~jn>nu zquC2k(>OI+PXVCLJQqj-pk}IfQtZ2~0FWoi1%OB2NPzm80}utAKiL3F0B1hN9w4iL z^K%;(}bR8kg#*Z`1gQB&qsdpQBVOD#YP&;mFC zj1XZ{CS`jCt^p0lu*l(VGcmeoL4T&AekF;c-ATIegrJn>jsDt_& h50f2`2A^iF-T(rE8ld6ik+J{)002ovPDHLkV1h~dye$9# 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 c91456b58e6e67741471a16ee14e23a5c5e8c10e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}|>o-U3d z5v^~hZRBM#I@&D9D<-O|R zZT0<29+lMQD3u+^;1X_D`u#Smj_tyg{)liHz62A&*O!9Xn^OyaaCqPUyLw_|-iB!X zO`H9T_S~7D{P(2!113ErbaS_U`QcjY$@vS!1@f-0V4n7^bqmKrCL4`QV$c8h#Pu(c V>j<8Jl)WjD_Of)8n(GWufB@!Z4jG_->D<%d=NYm2cQV=Os+5#!|BDX>*0_`BQOy~Du zI=7zFP}+5}lXL#P_WJ*`&pB(YV;HANnhq=j%7KMI7BF*U`Wny;{0YgXtu9TJ*8Xk{SQ6YW3Ui!N! zR>+W~b&{ssEqRWlmI(3o4#~Y;qDm_IRs#F+R*|$E>5W|JK(!PMhJ_rGlxfFhY{(Y_ zdw|(=^usF+(0D28;7WljuYrQ2A{lsT77X-7vAkkf{R7O&1~>;SGsYZ`UFH~l=MnM) z7oq64cyfTgLC7h!-pa%7cyfS~2VwOiaJ(MiUSOA`3|j#s-i&E5d4IRm{ntwaEs z6;`Yu!-@e6T!H4b(Blh>*ePkMMF8*#u#k=*tn@=&4pc6-59*(5#isi0eV;3Z!8)jY z9tOGq3W0aS(*{DH8qkJFBuHv^cF4A+B5#nTV%!`5v~0csskGQ)nGM_boEsCyiOL)N*O9(ds-zzrbN zK`6bZa%|Y19N>%8@sk5&KL$(J+s|D)1%1r`X~0tsLb;uDKIkt>My^q*p&$WPrHr3E zZ251(J@ex+rwcqq@Lxk1DNiI+SU9pffwPTiU?9gmOkU<~GW-EjUQNQ`;O@;NK>jM| z*#_xONa%r~(?BEKOanuGwxSZt!t)B*GZq}kRg@SmLo|IitG zJSjqU-2rp~IK$c1K$;tdz3@jN{9HE)0aNN>aUtY*A>B=+_$EhEc_)&pB&l|NsGMiH z;!FI31yUez7rju#0+RA25i?xUts?3AhOpCDNP1C{nwrM$Gd69Sh=7fw$YV!y*l8t_ zoRa*(V5rNo6Of!N`8vnn685V>QqmaYd0{udBqsn0HIS;Vwii&k=8}?Cqc3$@0gYXZ zf(qz_HtKsNsacg{2-p#JuYzbf&H>sal1fV8;KAs7-kJ)74s-3Ko(g5 zbkof+b#zh1HBLl)7vW_QG3A&Nzz3KiAkP@n8TtAptpnca>VhRpps&wL9=1XfY2w*9 zY%PUk(q!>1z)K-MU>5K@@BqN4#+dgYz9aeoIGmjgH8oK2ajz{ofRj!O){fKGw*?=6 zQ33oKCO-tM3C|~nPmD3QB&`6Bc)iR`^g3uEg;*G51JvzWvCgtngx zz)E9GBxqcn8)=cA2F?}Z;xH8yQ$`I-@h}YlH$#Zv=w%4egBySu9RNaX9qS{6gL>F}QZqod;?uqWbv z8;0Ro!!WKd0?`PoB)7SD)n=AcJ?6fbQxh^DwWEa>YynB0Bvn;JAj?_!c}#@<2diCj+&Q4z2L|i0kBR)ZhM}0 zLPRR5RO)A;P&gnWcYgyJ#-)5dzqx4vK@jw*>KM=^BDY=FJvuNjP_E9W)9DKEwMOW+ zFbv0i-|uc%faiJrs`>=z0!HKTY&L5KK`^4K$AB-uv$zQ0LPG*-l|2eq)r8|XSAoOK zHQZ34P#BDD$BSaIcsjanU03m+%C4%3d_F&1&0JN7Y}@9FzcejW3QCfOImM^s4^(qc#E@T1hxWZo>J8q8nHZO!&TU!(8UJZ4b8s zzCb{^T<(kbEns41W@byQ;Z_t5kse4S61!p_Ov^OQH_TO}C2&~y81>bd|12W+!Y~|c z1soz3P}Ob`xd%*EDwWr!X-@X^^n7Rq^uI;z7u~ diff --git a/editor/icons/2x/icon_color_picker.png b/editor/icons/2x/icon_color_picker.png deleted file mode 100644 index 2b683c75ea065be1938a050b49903847e8c831bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 837 zcmV-L1G@Z)P)>&^wN`mfK-h!aT0}yKM}KvAnhSN1tECqp@B9{GE)~c*`4?C;>hf{ z8#lX&7yI1aXXcsD_j%^|4g()bcQFg*#1nC7{qCBxiej0WM{@5@9 z=NG0v+L9`tlXU9j@%H||qx@Jf*<&sDfJ~y~1!DINy7?IZ(>%O%2lP8Fm8P#0r*^&r z4zLw#&PIoZC*b|#wU^T7F7S0M{nR2S4SJ~tJc{Sf+*$XuoVJZmpp#WW7Zcgt2Az5b z9FX!UPAN3;3i6U)b=|hSqPNytE7->((wqQ*Lvm;(>$VLDJX}Xv5IXu}bZANdz;aOB zqsZQR;l^-q_~ZOsl&Jb~s5i!f$sSd?54eboEBdD(pRENymO1i!JlXIBDy$|lp3a0r zS+{MV)=pUD+aw$swBe}l@U#pLtX6wplP^+rtr?*m>_!25z%6;Kbn_16+0lgD%Y2Qn;6@>8E~j@fpmf11f3C;841%f$)AV+V>99v;NYLlRgHk! P00000NkvXXu0mjfvlx$1 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 8d9bd17ccc9c0e93bfe4f48d02a380fe900ca429..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 942 zcmV;f15x~mP)_MroAauL969bTLVJ*dUv+372D zw{8LlxDjiPR4)E;2E1Rro?_H|3hWNKzqiPgL60|qSM2hS?vk69w5UEWT$tv=A`|_nQ;qL7f5pAgi3Wx6U2i{I=x_Uk-$?LA$omBKp+j#8P zBBIbn4=5bE(;s*<>>HKQ)r8wUE^w|5eo%Jw#mYrHO?cI!AJ;nz!Ic3;?rjxr48xN* zCx2*Hz*UPrIvL-0F6^8Ma=TFTC1@Ox*-gq37{l=X*c0D{ovjFH3a^fu$ZRxLP9@y# z@n#|{@^n4C6#)(58Q&YUR_1{iNVY$gm`qBtJSwBBU9RpG^pkZU)z@cM=K9+a&=ih3 zUx3Czvi)viVvp=8g^rXh^832C33pqkc=p7~slHYOv{dtY_<}A(ih*-dAO!>51fRK-eLzI# zf#<_pG*iePR+Xvn*_t1cOyJ#*HJ<}9ln?vky{Yq=H->8ERjJH*Jdvu8eA&+*gRR5ER#O5&?gLiKQhsUOs1-~G^gt)!H3HTa zMIW%kQL}K|_il$!VZ1E(=|XglCgGX>HIdKz?5R2HQiUEIHOY(dyCL<|N}MZV_Dg9$s{>mj-h>BpMcm|R4B>yyWWndGq_M{&;bqwS zInoLFM@r7IM!Y#%8Yh)7_efbBS3;a-*SkFi3GV{e-PL1B_%Wq=dpO$}CR1~NmKTby m0TOb|F9g?qS^c-YJZ{SM#97ggALjxCiow&>&t;ucLK6Vez=rhz diff --git a/editor/icons/2x/icon_color_rect.png b/editor/icons/2x/icon_color_rect.png deleted file mode 100644 index 7f258d5d92307dd5d44117b8589166f662cd7be2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}yo-U3d z5v|Dy5-%GBk45~dJ6m5BC8H~G=)?gaaPjxv*ciyZ;lZSaqk>x*)|r@9I5V*Q6Bl`K zRyMvu^4_;AM*IGr{T0tUyGHsk%N|9~Kn{UTb0i$LF|SCpyves<+S3%vhFQ}lzhTIV z_M61K@6&|DpZ43LLkbUw$F*(0Te>9r-`|S097p*Sv~Mh&_W%D`WtWZ28JU)Wd<&L7 zb+K%iHZAx(V@i~tEPFtLM!v@ fK%(@31_OgyM(b0{@Qo9JzGLuo^>bP0l+XkK+j(?M 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 82a67ca4d061722a93838cf7d986d7aee89c2492..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 709 zcmV;$0y_PPP)hUxbsGh_Zf^0gfN_r#%qfTmbS>PqpJ&=8UQE!+<{mcdIQkq zs?XN0l!DX_q;h3fR?_ex4!bq6oVA-hPT0u8>y^VDYEDvi<-J9`CNI_Ts}0ZwXam&s z0XuR_80?0Nr{GTkmbXDVbf-I3fSyi$=wNqsi;WnN+tXb$o!8y($N(y{?dh~$=XJrQ z)B1b-mwi_(0j#pMqli)O%Ao-w0VwY4Pixl^J$@4z_`cZ!fJf>n_-Rc;oD1lz?C9G% zd|cJju$c}3<~Mj^_!tZOFdP+ilLDlK)eJ0cgWs*o;&oLA%H$yy*V*nh7~e{fQ-Y_Z z-*tbH;TI};LNXcl(%)g>Pf?X!`JK0!tsqf=(S?T=SF&0SO{<{4$kfRWt{NU(R_ml_sY@UB49yg19sNQ8(o+0`7 r@^ble5*&({2yuJvmT2(8wPmiq82A5hb7t#000000NkvXXu0mjfxwcRN 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 1ad3f30950d801be61fe60424dbfbec7fc0ba05a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 436 zcmV;l0ZaagP)!NGC${=bMFlNcS$jbXL^p10-)R`U3opEQ9RQNguDFwDCx=@ zK+8Z$fDX_>7)6%laIXD*&4+XC2|NPrDzDbhEgPMv za=%X!QKq3P&n5G3+6Dl7Bw@L^Hvp`Yc<_N3&b7De<}Lus5`#YC^SEY?R z%VCLq1q{3a(m*B^5Y}>7VqXC_Ngz+&06q|P&B38b(m*CrrU<+k>k9~gkGkgI_6mw5 z`cyP#Rl_M zJ=;pU07Vc|ERd0iLXjrKzTJx`X=solQh-tfn1^G6wHz0eK1A(SRIY#|Iw{#k z8~{e0b4ztvQQ3g+bml-#??@!4>$IYh(+Z^zQMna6R-k0+dj-^|nRVq;v7-Us>CA;w zPw9)0N8n5@Q1Mi3Yd}ddA?fS95^tM0ZVx3od2$)#Pr3Jj%j$IA+LeK_(p$1cQX!wD ztTcz3ttj1aX*w_IN)Y}TfCDfAU~jPZ5Yi)%4FDemBJ(zmmns_=O#L4K#>x!V0m+^r z3s1#R3nbB#*I$vp}!StWC^a> zyjCLK2e3lmmZaaTG54KxKTELWKIi>Dk_QD$12_!8W;p~V2O6JbVgrRVoq_aY-m(Dl ziX9nQ&ZJ^g9q}QFaSKd$2m`MT$B#oDNTWiGe+glI0d%$+P``!5XJq+LT5HJpDiog^k zI0@)>^CroysuhCd1M}p`!QjJ&vDt2)CwUgZMe-luNPcUg=yW*PrGGg`6shl%|I~@F{>vNN;#xjL+Nm{1i!EWZwYKKt2+%YQ6t~ gt=6x*G5%`dUlAI1{MrhVV3=Kk|M5rB zUY%WfH82D_W8c?6F9ozvW{lN~NHga*zaKG%3yMAhnn}qrzn}680yQ;uym-ue9|kDhn)F=2flYg- zc*6S<^_Lq9=dgM^E>F)bm>ik>8uiUKs^`V(BH#?X01@dBxl*q_wU&3lND`i&Taec6 zx$n1OSb+@^ybC*Dx``EO1V&har33_hL6x_G-B!RlcG~#PB~UjGNgr!q4VC-BpsheD z>#Z8=jDpMq>phb1g>_Zt)XJHg!xNte!2g%xCvnlNRt@5~ga7~l07*qoM6N<$g8ft; AWdHyG diff --git a/editor/icons/2x/icon_connect.png b/editor/icons/2x/icon_connect.png deleted file mode 100644 index 2a36b1716a7b81b81b301e4b5cb93d34a101f43f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 876 zcmV-y1C#uTP)inS`C)S6_bF{KKkF8U9+c_NBG5p*fK zsE9wng&RR}FWrbfc@NzP^4?QKP(eg-r63Xffk#`B9SsF7smp)d?bN~O}C zb`7+gKm)~MG11l4wZyWlKFhM!G4lohn*l72El6~+TCE-)931@ezZi%^rBYc~uh;i7 z^9dsAk4d?cOeS~t_V#|969Wwti^W7bojwZS41f+pzFn);c1$;kSs7@+^Sre}i0c3f zO~r}+v~By~PZ`kefi3`J07?LEhhccLP$-nmeAjimrIdF8tk-#F-qY9D_fOjfrdY!W zz-7y_PG_^(@fZ`20IbyLnv`-?s}*gzhEu=-a3G4J*Q2AOTXmsOD7;Zh?F8^iqtjs+ zo@rHVHupfMQtCz!1V?l-pU=M_qEklh{&Kk-d#SZFVB7XB$8lDqQmI8mw1$X|G4o6F zJTniQlc-j!!vI{3TA-9V6xXM%EnsF51i=u1VE{=@nh-*)&gF97C+7S90RVq}Z$wni z<#G-YsitqxjsYT4j^msMun9n2lNKwbPV2d;RO%{#_nP@^sZ<&?YyQli5RT(K0C3!( z_vycLPfyPWX1=2*SeCV6Mh0Bh&HBE7&G-F@$>)aWc>{WmZQB;lj^`D_2&KJ7;2GDzF}O zcXz+Xw|B(`ni}@^_kT9@+Dr`GkKw*`XTEE4+KpM6{M?>y5}xM`2q7K=SZYXbrIhPu z^8y-&A108`=SRXYTnFGk022TvnEBtiXg-g50Kiv>vMnp#@T$200000e5UIki;qPSw_cOrTOAR>}$t@l}$9bMuk7r@MKMD*N_iRguy0bu76XJY*XMD)}% zw{?x1TmXQ+=K1xAn^u5`jRxNu>XGrug$yEu+N0BitUch_w93ab;2-25BBtxLXl0jD<~+}!k&5O>0j zPqMcHFuu8otp^r&!ZQW_>kMdFTmf$%uqn3s9+*Rc11x_+mk>Vi<&*5~15MNHq9}R* raMQOQya&=W{i*Bv9>6Dn!_@pgz4U+jFW!Ku00000NkvXXu0mjfx<#!{q)(ACovAd99k`|OyiKy^5`FxiD|Aw>9aPJ5+Sfr~!$*&nOjQr3ubMyUDn{nia zqGmn=66L6P>P@!!zATAvfHB}UtLGvv@FWk;dXcVzih*P0{T75vXkW?0YsCOCY+t-E zG3rjsa_bbmdaaND%5V3}pO1HkHDIyWcfcC3Sj=}I!x+aK%>8xppOGK-;Jgcxn&um$ zH6Qu<^e=E!3}WAbeu@?^6$4XmvX#nt1n~}JEeK~?^QM&;JU@(gE!_W4`3AGSUI$`A Rp$q^3002ovPDHLkV1mwIjFA8U diff --git a/editor/icons/2x/icon_control.png b/editor/icons/2x/icon_control.png deleted file mode 100644 index 82d7457f3ba97aef5c4bffa67702c7a28db91103..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 825 zcmV-91IGM`P)Vh86wq zl4gSMEqcAKI9XNQ1N0&E0H7=Y^S~3M?xVpq10Vk>z}+w2de@i>2uA^@PPhdr8qE2@ z%)a@*2AJ{-0}2yBXCts7l`JxJB$J!26=Z5P=KaE1g<=cE0lEzOFz*-6v;;8a7Y2Z_ zl$e*muvq$okt>SUz7YnBmu7+HJTIm~FlUoSK zCH8sx&Xksu+bjyp;drif%87%5Y{&W5K&1wntCt7>M*5vZel6Z z03v6#!z^!T6~M~s-iSl_To*t^=fbuav!hi2M{G3L@UAX^Sec2~aLiM$-V2yeCFfYQ zZ=H$9B>;@NkAUEht#;Tc4+wCh_Q8oPr(O(AHxcQ(!00000NkvXXu0mjf DC>eyT 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 9dc738c7468860c5ad7046a13e531c9abc3906e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&(SJzX3_ zJUWx-SQIKT>oN-a`pS!mZBQuQmV4Vx)OqioJrCY2ly_My))Qrrb#Mi%@*yU%LtYXR zzkdJT*d;C|CUnL6OLNARCcy;8#~HUv4(Kv4gwE$&$#K*DInZzhPgg&ebxsLQ0OqDM A{Qv*} 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 a11a13528dc273d5adc12ba24d03df79114627c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&+NJzX3_ zJUWx-SQIKT>oN-a`pS!mZBQuQmV4Vx)OqioJrCY2ly_My))Qrrb#Mi%@*$=vzZUG@ zFTZ-xp+ioabR~W{nq(d1*w9e8CD-bK7z4xH`J5}CbP0l+XkK!&)?r 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 7fee3f07520326143ec83551030e28febd88de5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&(SJY5_^ zJUWx-SQIKT>oN-a`pS!mZBQuQmV4Vx)OqioJrCY2ly_My))Qrrb#Mi%@*yU%LtX{V z|Nhmjd9=IyecR^tI)UCO116mWncUfYJ6IXEEZ}Ny{TLMjG@HTG)z4*}Q$iB}=AJZR 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 573619ccbb21f4c3087413057355403a1f58753d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&)7JzX3_ zJUWx-SQIKT>oN-a`pS!mZBQuQmV4Vx)OqioJrCY2ly_My))Qrrb#Mi%@*$=vzZUG@ zKVPfu-Mzii=j47lnq(d1*ubDFudqBms}ZQyWIF@H+GuVL^DUjcKnoZ=UHx3vIVCg! E0PnXn`Tzg` 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 9850ecd775f17a7124064304086702d3c01af522..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&(iJY5_^ zJUWx-SQIKT>oN-a`pS!mZBQuQmV4Vx)OqioJrCY2ly_My*2BOZ!J(a)@Z$aZ<63bM z5gq~WFYqr4FvJbx7y?PO)(T*{>rZM4t{ PXcvR0tDnm{r-UW|mdKI;Vst0HzBn<^TWy 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 4f87a68ad3fc6c93b9c984cbd39200be0ea2d7a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_bkPZ!6K zh}O5~HVOijvN&#$`L({a%tWn(<8H6yKP84AcW2qHSoOJR{>oN-a`pS!mZBQuQmV4Vx)OqioJrCY2ly_My*2BOZ@X4{h-agE=wY4=R z+Tcrb#+4?)1V%5r1uAoN-a`pS!mZBQtViH+T;rKO{zaxy?)U*Dqo1^dMntc%5Zq71SQLK#jv g2{O5}`F5}}NFHHZ{^oGWKcIOGp00i_>zopr0A#uoN-a`pS!mZBQuQmV4Vx)OqioJrCY2ly_My*2BOZ!J&PS_t)>=8@t}$ z+bexe?w6xU)zopr0L4{2W&i*H 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 0ce81d3a50c7e766d52fe77d392a92a721b426a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&)XJzX3_ zJUWx-SQIKT>oN-a`pS!mZBQuQmV4W6(zAd6>ef8kUH-mpb9oN-a`pS!mZBQuQmV3J`G_bzjKJ4S6Lr!ZR#l^)He7nHED3IH&fmNqv z>I1*`M;aE&yDS##i89DKxPn#r5Yv=j3_ER|bq&5WcRUkgV32vir6sp6!WU=@gQu&X J%Q~loCIAQ~H$4CV 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 90f3cb6105c1f2c4a312e49276572a6b063320d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&)7JY5_^ zJUWx-SQIKT>oN-a`pS!mZBQtViH+T;rKO{zaxy?)U*Dqo1^dMntjY(NrqnoORjIS_ z{8foN-a`pS!mZBQuQmV4W6(zAd6>ef8kUH-mpb9FVdQ&MBb@0IudafB*mh 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 5c14782fc262142c293cc4af3f29a83f71e924b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&)7JzX3_ zJUWx-SQIKT>oN-a`pS!mZBQtViH%*E^y1y!-4EX^ly_My*2BOZ@X0YTQ8AR~>!(jm zo7?LIdZP@o4z6GY%5iW9ykdS*G$$(I1-sx`T?U4SaU2}m&)){Qfx*+&&t;ucLK6V# CHZ{}$ 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 383b63d0695787ac52aad771d212090c14734225..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&*?JY5_^ zJUWx-SQIKT>oN-a`pS!mZBQtViH%*E^y1y!-4EX^ly_My))Qrrb#MhMl)gTe~DWM4fuKF$t 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 840ac557f5c2230478571661f8e6a47ed91ea720..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&*|JY5_^ zJUWx-SQIKT>oN-a`pS!mZBQuQmV4Vx)OqioJrCY2ly_My*2BOZ@X4{h-aeG)?%rzi zIksP#Gp;lVCNO&0Y3S%I=~}q>>%kSQ&S#jW)HKYgTglp1Cvfo&6N4f*_lu`q=d6J? OF?hQAxvXoN-a`pS!mZBQuQmV3J`G_bzjKJ4S6Lr!ZR#l^)He7nHED3IGtS7K|z ml_n^oCE|d^Ei>5yZid>aoXfiv1x1I%-sE+%UIh3ow496ZDF=rBMp0~1?xwRS3tHKfR+yIu{qvpBFo~&>a@%U1~|}We>3e=!W{WHC1n$U z-4e95*^iWPbek8zd6QvQ<0Td2sfxFFw-P0nDd>f+0MbJc>grH76MzfL+*4nh`wxJy z4JQu;1n}gfhgmWP066MEJkkRM;nL{^J!cFcz*q{bprug6R$dwd0K^7hq~odg1#v80 z(1*qV03!(xqz4eU&o1h5V}M2}f>xp_rp*Ar+l<3bPyzrlnFYOW3;-~i^p0mxxyqvx zPc&%^5VGJ@FS6lxOq&4!9FBQUP_>HbjsW1f(65;G1<=o!_5}d_i)r5g{fg;bfX`(v zZ&p}ywe{G*F|DAm;VSnVpZ5LF#52uCL*x??#>4jhE13dsO0ZQmSXXgHcwM)+wLUE? z&223W%@x&22y=rWuEZmxn%ll@!@DmYOgjl|sqnlK=4PwAqOXchEbHW8gxO@2bYl;! zZ$jz&0i6|8*id-zentwN<~G_=&E>HKd!+0000KP)v# zem4V!I-|ot=|a8@$z*2U%K#t1e~*MNOg{An;ROKYX>l#v!35G=r>eXG6EjqZFnhg{ z)yV}c@G?OXtpw(o-U+NM@G^Uacp1s2cL4`{Z?288HWC*;lhRzL7I*>76dr0K026_A znrrN{_n#-=xaS4%xQJv8FwgW>;Qe@x&ol9>fDgP(sDx9X4ZMqlRUiZ&D)B?03p_-k zAZw@H zChP<5vzJ#DpE9GsC@>0~UBLBoNs_4!A#nB+s0(}z$gNlh0VM%;1HgBNH3oohg(s}G Ty?C7M00000NkvXXu0mjf@6MWo 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 29180d017c4be4bc88e474d5edc8f54c6c5a9b22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP)QN=p3eC0~oa?;p+V4Z!rqcWy{-yoV>j`ZYsw09dN( zG8w?kW*Lfy5HCpp1+?%$Jj4u=^OS0;x{E-7)#B30_oiVrP8|rP$<0%pk#U%01BoD9CKjkKOXXj^m`{^ zY@~07*qoM6N<$ Eg5`CW?f?J) 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 cc3be48033caa8b936ad49353ebcb713886e0441..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 639 zcmV-_0)YLAP)vVv@XV+gFW! zG#U*Hg~BF)6GVIUDy19%Kb8P9TVWX5N-0MO;V|<_+qUl-yVjbu*3SW~Ff#xk2!bss z28f7`sGtg_$oBQB6v@VQdsjw$98i5&>RSDwQ>Jc3rn@S(c0MEsK;= zwOXy#H9nr_-K0IVl~S$2V9;qa8WUuI;-AkE(YwUGCL%{l*)bPE5IkV!Q_S2ZqV{Am zdE+?Fr!0aj*L*T9>tQ*2fPIF>MIT;+R}F#eJys1%pZ<5-^K;Lxt)lxm xS-!>}TU~p=IpGT9Vm^t|0~ysYmWBi?L;MoK?8oMur9kr;JYD@<);T3K0RT=0Hq!tA diff --git a/editor/icons/2x/icon_cube_mesh.png b/editor/icons/2x/icon_cube_mesh.png deleted file mode 100644 index b2acdd156d73ef7ead00bde2f7db1f6eaf1f11b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 681 zcmV;a0#^NrP)G*gudx`-N0I(9S;(b-7|IMhYK#YqQS zjrb%lXb|dB1Q!RpRdmo*l+rqOaL7x{(xpR%6cHD}*B*zY=BM}O{Uk*^5D4$yd%o}f z@ZP!bKZiD|X>C-~qvViS;4e=Pk@|H5WEM!Fy1>EIGdVT;V_yXZz{dufx8jI|5(oef zMkJA;0ujNnM2rHVz^b1~NR=JFBRIgNI3j%lQNWTdz3+QmbMtXT{t9TlGKcDI;D~v= zuAn$F_28og&=DzLY>UVROP3ZR^OC*)xL?3?)iPie)rUb~vxqzb@}_pll>{IWBG+*e ziPQSYNrr~2lK`0jjt2D&vjV%Zj>r=>f4`K1<6FUA@(My3I6D;FS%D}5R*@*+K>^Da z$Qp1BXc`(%qWXf#WKBJHMm=|ida{nNWPvx^xn#{mvYi26a-~JGeio$&d^PmR0Ixc~ zjG=uUk(+$;rzBTe1dQ7@^k9iNJHTsI=S_qq4m>NN1tN+>0!I?qE3)*KdUJ#B+j5g^ z=8Q;jJ4!wX_Z~2a6t_|7&QisX1CK2*&aeqY+M1AI%xMwOX|0u4weDUXm8vy2ub%q> zbUL&Z03zp6-f69D{QQOi2YjA^-W3qJ2W(kIJa<_el|mr6Q7NeBE+ed1;H?g;oxb1N zIgA{*4l)N!nhCp=kUU59MEjX+fL5Kig8>{|9SiY>vKmn`cSS! P00000NkvXXu0mjfrUxv1 diff --git a/editor/icons/2x/icon_curve.png b/editor/icons/2x/icon_curve.png deleted file mode 100644 index fb8c209d1e6a0c5f1863c95beb77ecb7443d36c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 607 zcmV-l0-*hgP)`9YAV&XvO_1BJC_Bz01{HSj(kY{ z3y=_h0T3~P+$P!;ruY9t{f{(zmi+vneKh=-g|#{KA&vh zUl)spF=nOQ5r*NjNfwIZ_>!bH0FYb@g5U)Jc#|wLPLdu0XaZ>NwBZau(hPw4k~QlT zpwsD`s#t%V0@P}?lNBp-3gG+x*>WtY=M(_L&mSbeIt7rlP_ee00suH)4oG&K0!Ugc z$9bN=cLtEAX`SSS3cy=u09lqT0XR{_l0LRttuM|1BwZ`VBwv=}sRATP(g1L!Vn25V zV6D9apnMB{3WDIZ698k(9Dth@`vFNg0RZqA!0A%F?fd@2>Y%9r7-QA}ESEh=cbm=T z@2LaCaeM>7{ffOAhGBcu_=y4-W7Z`-sm$Axv`R7`l`}J;!gClr^W{ocCh2k%MP{$u zV*w;d(y-Rv25<|*2M!o~bXa^a_JRcc}cM9>Q$^??}EO`Qacd-WPymyVwPiza)X=PXIsi tJpb-_-d3LH2Eb>M-vHnkb^mKue*u`)-stn`(Fgzl002ovPDHLkV1mmj4dws< diff --git a/editor/icons/2x/icon_curve_2d.png b/editor/icons/2x/icon_curve_2d.png deleted file mode 100644 index 69a6f9a9dc6d991043227f5bfc12d9552ff0ae93..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 591 zcmV-V0W3jB63Sa7JwGe08RrnAORi+L9jMefH;n4MC3lO3|u^+d^ZS!c>r%3=Dl8T z!CLzUxHRe9!T?ES8bFdHPk{@WR9dN2*75?3{X-JR@hq?+BFoOu+j_meJ2ikfj%R>b z5vhsDoVE6vG3KVKE&=D9@;%SigP)f zB3cJLo(4S7HH|=(NT*kyGWd{JX*4;1+ zUjU;7TI+$uyb9w?4>cN%0e~7L6+vkN&t=^xdBxP zKq{k04)8sQ9*T0JQUD*>02*}x*fdW zNB`CfL}?|Upp@DN@T|;B(-cxl>&gL~MNwot&wF6;_ktjJ0RVSwBM{LOW-j#_ zjm9Mr?E+Xa#;g(1Iy1*a6a(l3xL>c=U4T227c0ON{cX3~pKRu6H0lT;zA^J%OUTvA zgl!OJ{_OBRxahjw?oU_Dbl{lxdY7nn}}eHS+m6y&-~3cS?j7y&Xp0-S^iwV&7hS502t)}z5fDWjQI`#%=~as z0L~gP#teiI0Ptw?ZQe64%DDq^9G?I<1<)K0hwXVLnh8K_y%9wbn$0F!t=2#(bx<{c z^#~^Y-1EFu0LUB5)2abxx)0!5KVKMt)><<2J&P@aAc(2}nDrN1ep9IuV4nLxB>>~` w_%(o}#JUhdyjnOw7=}kg)W?*5zSO+>2dpOs&&PC^WdHyG07*qoM6N<$f;~_dFaQ7m diff --git a/editor/icons/2x/icon_curve_constant.png b/editor/icons/2x/icon_curve_constant.png deleted file mode 100644 index a6e32e046725a418a1ffee5aaf66f0e440814ae4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjY)RhkE)4%caKYZ?lYt`Po-U3d z9-VK`Zsct+;BmQF-!t(T_eS;}mg)@?X0J({#nL$|py7|!>7(`@nzi$PJ$zT}^2VX^ z#+pfD#?}nW{`Gd`I>;>8BDTG8dkpiWumyY>*RFYK{yoO2yiS-SPqgYF&kk4Jm}hUBh@>;kBg{A`TbEEEb~qU7rU#ydjqiO6g!m8t{4HAeyE&g1|P ziW%7$+rEEyC)cb%&T0@5c%BEX^-iPFFo{IsoIijYBv$||_8`z)wr;2=_YXy;9{?CJ z#!QIFB*~(P6amZvxaIr4qc+U72Cfyb!U+E4a=EuQd#zTRR!V&&nY2t{YoKgF1gzL> z1lC*x^ZC3cX`RzvSZ-?mrK&~>|=m5Ins^qlOMKwR`%+FC@QFcbpDm`?ye za%NZrHlyL~p%5q*i**3o0B%;R)!ZNmI4`0g2(pbv2!L`75LIOA?fG`99rKmtOVlf`M?NdGMOzAnFa71zyW{*lFvlsPHa7o0jC;9t@Gl) gO4bbn)A_jg3r!gc2R+FySO5S307*qoM6N<$f_!>EZ2$lO diff --git a/editor/icons/2x/icon_curve_curve.png b/editor/icons/2x/icon_curve_curve.png deleted file mode 100644 index 6476579a64b58e74853bd6e18894f9f6834af8a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 744 zcmVP)&;f@%HiWsP8~;&aP7WL%bj(+F=Ihlj1KBQ1+V z1~^j@Po-0``9}acDGm*eVD_nwAj|`k0HUlYB!IDI#BJLiQPp`7nFLVPjO)5H(P(t7 zI>$2u74etAk%PW)z%5N3+kDXH^Fy>kvZ1BmRr)aLW$>z;)djpinQ~vaDMCZvfSMt}qr3 zn9_-G84E1~MHLnumx**rHW~p$qtP`H83!H!MWCpviy|@+i9~Agzg)wEMdsS^4;uqP z=Q4059*;k6B-)DAGElF=4FsKU03y;>(`pFdRbEx~D}XU(u&V$@xLy%|1WsF&^ z4A1@*fMhbc4txTRX0zE?w;(*tw(XHZp|DvhmDILvduM0oQL$J&)kzJ{_dv7#yj}A= z0#)^T4^;bkN6aq+MO7W}a2Naf`VMshpw$wqji}zXl zM?BB_R?<+4i&`&UI*P5N+N8T#1jon6LuL4M+R_O)H?KnBNgvDa#PM7f0f0D;=Yhxl z;yur6$7hz|FRQDcjoiOKGgPl{nsZI0W#V|wE?xS05CLeH;Z>3|m$dA8-dw3v$`wx- zhIhg+R2YUcxdL_}=|`|70x+{de*X;tNq+!1=MLssOj72N_VdXkU}o#d^U%PBuUr|X zR=cNKZ8p^>2+k4&U+D7X{kaGLYYBnLf#6Ye2RMmzy&nk$!CBxYW+!Mims=z<2{`Az z1CaD$D!60`_^XMkfOJhkaIORV9B`BE#`g-%=BJV@vlBY!9(bMy@KTzOnMu{^`BweR;ett6sZLA&hvjjq6Zu@enLro z?*nYl^ZwF#LC9gt+JOy8`%}yt!^6WP-O6^UWgUUpdAoS=MoY2V7ONgbZ>ho75BId= zyQf66jv)0u&^_yu%=?wvd89YHNVH0HHj_Z!d7kw4cj?XiEvrPJV3yvUct=wD zlq;9Z56x@}_z2hlHY9y$W-oWnb2Afr_r4B%*_nB(&H=1axxHg2q_6P()43W^UPBrIg$sZFTiDwGyBNoR1NzOMil^|VqyPW_07*qoM6N<$g3O1( AmH+?% diff --git a/editor/icons/2x/icon_curve_edit.png b/editor/icons/2x/icon_curve_edit.png deleted file mode 100644 index f9701e05cb1fb7db2c2aea8854a7155b814cffa0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 954 zcmV;r14aCaP)*Xg09bR@;b#G)cXQ=~+`tC^S;39*VtI z!SHxPXDdUYluT@^ZP{F6oq+ z9RQFt5y$aBKA*o^?*&K}{|?wz8_$^T9BjLOert9)3phy&X0`xak#yNPcd@&>`)acI zx_aQYnf2syxoZGTUi_7vuPr8)ZTbG!`ws1WV1C7Bf9}D|$Ye4^Q8ZtvR9tg&^SXNA zeo1cuN74b3W8X;E$}LM~_6)GaIk(-+c1YT7X1jqN;K6J*n=&>1tAjKEuN?M!M@PrF zFF!jwyDJESA0@STELt4|zDW!wd^s8C(f~UjB1qMPO0V zsG04_<#KiF0f?gLlPHQ5MbW{A3N|6{2_zDLnbq@cTB&b=q+4c&b8frOGd!)+z_-n1 zK76g;N`Dt1b!TQapImpO*uIn)skHD*VM-&zlX~=D0{~_dfNr0mCBsL+Enq9gab@^n zsHh8tX+1acwNk%Ebpf1nmjEO^;`6-nxGe!6)W!^+K#b0pxjHnZHw&MsW3vDkli_1& zzD&$J)O_7))MmyBVy+a5I$xO9AxVE}fT`^mAc~?Jz)t7fuCA`GpM1VTQRBe=dh-F7 z&3JFQ%9*gw7E%Gq<#KzaQu!*I&F&0>U`f)swf(#X;4pBu0f1GN5HEWH8tvz+3MbXn z6cAxNoU*7Be1RB?GmM43Hs=K>l}cxU!=Ch5YisL~wZWk&g=W0rsTr>Z91VMIt~TiJ zhRJV~NBtWG17ieO_SEdpIG$Zsld?#fHhSVY`J`PpcsV+dH{d}!n-^Vy`DY?B6_S)RZz4pGu@dUzfybw;R zDHUL|{oKrit(=0y=xTg$pPez|n87!}GEaqlR`t#Cj}?BdZH1zK3n$gKE|={5Ki6vtGynhq07*qoM6N<$f@j>y?f?J) diff --git a/editor/icons/2x/icon_curve_in.png b/editor/icons/2x/icon_curve_in.png deleted file mode 100644 index a018d28035caf6ffc7554c816355711fbb4de736..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 449 zcmV;y0Y3hTP)Hv?eKlIl(YS(eQfq-Uo9&-46W1&GMJ?UU>~1&~~~ zePhgnQviU?g5P!qh~qc}uxv@XR;yh*0~lkD@cF~u1wr8ElA|cvAh}bJk8Nk-R*@u$ zpXYfSz@jDJE2UOR>JMR}43Z@Awbqw~;6ifW4n7eeilU7?&)XuhUYKesrEZGrr^*KI zbUI5~>%(EqiwA3^X?pP8zAtys?RKZLEb}XsicfL@z#87)`N|k}YcLpWHyVwX9|2ZB z4@x8i00N+yrs+W#hOgrmjY?$o^D=f%a{s%Uj|G%44d52QiBjsEq$#s$1R%LLEK!|g rUqqfsJ{e;kNw%xi>XrRN|Bt-^t5AxRo6#;G00000NkvXXu0mjfWDmm_ 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 8b8b8d7d8ac0ba6249b07ca2747522cc68117721..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 494 zcmVVkaUNRuTy8hFAn`f*eT5j)e%9BR_YSG&5BKF#sljG7+VO5EpG3NGV4E95eG|opdo4iwyxlR}i>TYC>zB1<>27 z*6<526bge{>#HX4HzG>^9(=!`TCHXP^tt3S0Q-?h+~a{bt2-97#N0;MD0lLg%D3I`@Fz&xm-7Z zRhN9^>0(}r!r|}|fPRPcUa3^hJ7z#cDVKDTNF=^GVxW{7XXa^##9Hf&7kEnpW+tum z9%`3+8;{3dJ7S=e+5|A;)QD);D;%ivRg_Al9^1A@0jx3evMYTlgt!T0Af;Sn=0n@I z2O89VghHXDA2{F`5i=hEXap}ChOuCpW-+iqlXxJaDa*1R{lWpqh=?f7%!l~-=L-Oy k0h|gUu8F7`1pYtb8|pxW#3ABKGynhq07*qoM6N<$g7>`5#sB~S diff --git a/editor/icons/2x/icon_curve_linear.png b/editor/icons/2x/icon_curve_linear.png deleted file mode 100644 index 9733ec6f49d2ec23aca773b31af572de0b6d5985..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 283 zcmV+$0p$LPP)8l3FsP?|QIF0QVA@Ck~GFW|1|v($&s z2XGMu-#`%@G|<7J_oHUA;-pa092YA|YBjA{1kaQ|=ic+nxd|8e>Ebk-!Z57%`~7uE zE5?{bNed*alI8(Ck=$uEnxYZnx*k@R;Nw$yTG$xXn}NLxAhLtq;QQByIb?e~~A6sF5SG)~-o9PkJOT9mmX* zGL30{Cp-m+qG$u@M%SL_-4q6pw36}8z8jtb7-N=_hNR0v0h0bC4U+#01(2*JjVOv9 z3I#|?0ZOG(u>b&%iRXLI^Ii%Cyxrj;GWYqfUI8e!g!{U2|JeWl002ovPDHLkV1j#~ B(0%{_ 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 cc716cdbe8e44479d0e11f1c4e3e5e6ee8c9a94f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmVek}cmM-F;TMOku;NB27mpFxxdt6L-zPv;m-y(RX!#U@D-?{g} zg}WY-706nrUDUp zlPI0^<+lN=syOGiRP{xowcnSI3wO>v^4@<0<`bB4`WAc~@iLZPq>ta|UC zrYzVJk=H%=jRp03eI^Kk72p-{aLCwM5Cn^182*hHM_!S&_PMHV0?)3Q{hrI^){4bq zGucS}sL^Olce~wPU~vRgfuF#KQmOP~*wBE$IrrFmf53>V0KRzdcgyASzYz-z3aqs? zRXqeIQ?~sLeC~8QUn`YL`#Nwh`afA!bJp6u6!I@GAn~WumuljCnUMxEJxaXg1zZ)$QBDlY;njOS|3vleM4~%bV3|^*mF7h^zyr f!0Bav9{^kcG0uWohZaPf00000NkvXXu0mjf4!r0i diff --git a/editor/icons/2x/icon_curve_texture.png b/editor/icons/2x/icon_curve_texture.png deleted file mode 100644 index ccdebe89f5ef69e10c65c68dc9c784950d56ff7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 728 zcmV;}0w?{6P)vl1k77sb8Xc^1hYbL(xgmt2xUziQ@t zGxNUp-n?NK_}4+nKq++`zwhfZeuj-$`se zXCP0Vwbs+-oS6>;*kw@GUxPlPPDBq)!m_M0sWs1%LGBFXz2PEq#q+$mWIj7PyHi9? zn`^YzkK5w%3do7K%sgolj^kVcu-TwyJkNX6wl8;L554`)w(S!{6emO&hDELQ<H zMASZW)fo_x77^VV7#KL@y6*Rc_kG{dT0cN%^lE;7zTIBD`k^s&)sT$fF0T!BPdb#)9 zbAIQ(?>+o39Czff08Kv)f?NS3i0V1Oi*O3X1q@cgwh@XbKYZMCbq5?O?ISmj0W&m|8Opy>q7n=|zZwMSdSsZg z`58Fh<-+xRLySoof3gW+)-GG-ONZh+D9aeEf+i684y7!`{(@Y5yak|Z&xUaAy1^Vp z^$bV=ix9#!V4yDF7;3!$?tuLbq@sDiV+;I>vH+ze@kfg7w5rL73(OlB%%V)#Zso-n z9sw|H7dnSYZDa{1==BC~rWrotKd8pIpsxJOknn&j2%; znh$_=88IeMJqw(!jN(3Es1m+~uvZzyKM*!hT|;%HI{h>iz2B06nh@V?0!SPd*Dgo+ z4DKsA7nSdqW_TQ(O zMwsSgt^+@in*s(J>z6ovMhagNutG zh)XvY2OXRQK@bFWse7Rm3jP8|sUILxL}>j?%{>ma&=eXQa$PiM$Z~Jq^IVcV1o-a} z-2;zPg&wP=ZAbzb0Wgvni}gG059uycM4tcvo4emNfY(CT0J;lZ11O{IP5^>USKdRA zqheZ=N_z%iQLp8%Xu1&?;tyK-6pYO}I+-D!lv(*n*xWTg0C|dJ mp{$H4D!VY=nfFrYr#@d@>_dGC)p^4J0000$A}Y8M zL5psr0V9-x+fv0pLN=vZMGzMXTBw`4>C%M@H|eU>N@84u;eK~!7Be<8r;EJAmpAVx z850mZF!1jEzVDnf_rCkh9pFQUtR|Uce+c0q$pa$tC4kLwXolo75&6wp`$$CoTXO^6 z`$Hmf5x}PP5M8b8~}H6zws_OgZQNSqcC91@HZS zRei0huf6yCvvR7{>K0XfpsKa_^RQN{ebx(K*A|2jUXk1g03tGLt=*IskD}-~fREBz z?RI;|@bK{TYWTWN0m*^H^TtM_u^}0cqUc(NH~>_lD7uoIXfzrd7RA%txds4CB?t5K z^T$*1Z!&5YvA3jlDmBhDkZz$D>h=1zk{SRDU32j{uDMXc-Te-zY6ZXx05&l_2jB;i zyNod>Nah`10{9icQvg2#7)itefRCMXzR*By;uL^iazuK?x6Zj6>B-FHbk5!Awf|>< zeF+Iu7qFY?9Q a%kV#$T91_>tD49F0000fj^@66un~3OZRw-5te2aFkA2TpWs9 z1t&pq%Bc7sI0!C+pmysZE}6oi4hkZ86tC9j5<^;(dM&!;2M5Qy$NOHsdq;qbjEsyw zhHJGW-rE~C&CmTq59??)FL`%&$|RY(1HSJUEX%4e^BRDeFnmiyCt7RIah&&F1-Vw^ zaQg)2RodRZ=#}5$fRu7l2vKL|eE?+uqv0wu^MMfJMoKwp@?`+VL3GYLJ6pYyA_sim zF9;#(0A_zF+-S903u#Wo9Efv_k&y~*ZZ^9QA_pwXsu+j^z?=|b!yqqC>Rdz)1VK<| z=6RE9h398XoSpUA1Av6Nh#X+%Y11ltY-|v5AYm>BdWJuqPJes?c=^!)5#5O02&734W*R# zds+t`K0cPZ#Q|XGd*e9HyOeUd-EN-(m`fAS=kv>@Qb`*MYY@3{%e(0qLff|Ql~QE@ zE`S>VZ{fNI;3}ocwr$@VNhjQQVwzF0J_u(Z@xGJzkH2B+eP?83WF+wgEv=|n;jhT4 P00000NkvXXu0mjf;5Xpv diff --git a/editor/icons/2x/icon_debug_next.png b/editor/icons/2x/icon_debug_next.png deleted file mode 100644 index b52e276f360fd5d3182a7d00d49e9bdad26bc67f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~do-U3d z5v^~h8}c<9@VM?@?G>ZEJSngIT2A1yJB#;SE2erI>Qa4 z3A@G1<~J~$kP~S5c%S!NEW@0zZ?Pw57_%QJW(vK^@FMI>$@eI+UWO%K8Qy0z9CrE( zq%KvhRO4r0IB`qN<>h5T)0EuPUkeoq^*x>>KKi}wd((BB4Zq}G>mJbIf3vTig<+9R e&V$_=*LWo}9q;`86w(az9D}E;pUXO@geCymBz7(U diff --git a/editor/icons/2x/icon_debug_step.png b/editor/icons/2x/icon_debug_step.png deleted file mode 100644 index e06a1ad56bd87ca054ba4edee4bd02a1754b4b37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}$o-U3d z5v|Dy5-%GBkNvoR>65(cqGfG@!In%m6(1hh+f_O_I65{?Yy^T%A?Fp0Zn6iQ*11K< z1aYz1u(-)Olu0?TFPX-@`00TKg$xHxKI~tbD#&bIt(KhmGQ8&130?6H&c=wg`S$1k z7VqgXW^~3-F8~@+FMd#Q3yJvlM*&pQa3ow{V z{QJwDyk_-o9^nP$mJVArB>&tLU_a2oRK$32Pq%8Wj@q&q1+fW2O!p-vB)KJ4uTBp< zoD?MMuvNjG{fNpTR-QL+)V6Gx)7aQy(!kyGjk~Rv*^QAw_LH}Khe}a6(Dw|Uu6{1- HoD!MH<;MzDbRR*h&yB3n3Ph#o|)i003~+FdkWs z^GpF3qL>QiZ<>^aRIxb2%xD>4HIuo#OEm8)bu~)xK}qIyo#;WbT>cse8#J(z&EDPt zmRb!bB65MgUEpISm%AG@r)dRN4CBs@WxXb%M9{*a>FI{G@5aZ&N^N)O`n{BCzCAeL zt3WlK?)_z1vti*aNZYflxi!PM5()r-E#?IfooQqEA8(@5JC-#EprLXN04w?Ylah_j0|5LM)Q&K8b2_NcRg>LWqU>wbvK`@Ny=zsep^E8b^_2-n>yRU-Do) z5@vkL_ zoQbwOm`4w8Qhht3RH?LaO4mn;$Zli4-Kl9K{Zmt4nt(M|HJ`t=>o~6foIOr56K!|u z`on9c`6ggISk-j8*8=8UqP|wbCG(mlfRf}A zX3v3Jp2maPM0#v-{B3Li)oP1C12{XOc~{#=D;CFZy#eIhJ)}3l$&q2huz&4b5k!X| zxNnup`@xN1$UI3dBE2j$A77_P(}vd8E*AnwGR$58XQpW0)oFHio=NJ8W>!;_6qdG;LUV;m40NVw-XRDcSR8*H@*8zS_4-}Xbe(B5rDkOd!*_X` zLm9}(DwP(}ZKRJATT3lUrJJM7!FMp(ZKG=DY7_TKj@(MXa=Bab)jc8JIDTL n_7m8`Yy)Uo7=9in?(xaFO=(VQjRb4mz(B*pAgd(Ann9Qm zLQJ%#vfun`0+^ZRa($f@qNwR7El=PI#zNq=DPa1D8xZX zL5r4!v#rT%Kkr(={8;xZe>?gnGe5l-a*u$pZkxvWcxvcYWC8P&eW#1X%4YzK;F=^_ zGEBN5P4R`=Fn$97^MG^IRr)oh_`GIr3JIxVG3$+ZGIM)J0fq6dV@0KBnDJ!5QCWr@ zh@U-tl_;&lgilSSjmQ32eZQofGyt<|Kha+?8;Rg?R0&{anjP(444ydws;=H@Z)wkb z9!4BQe!S=PQpK4FijaiG#JOwF`wLU}9p-X!)JapAs zzSpUBbxo*}a|OWl&AFF>!bERd*gZE)y5T?bxzYZnl2a}ySHH|aJp=WQt6wS>_4M3m zzejfJRN6757zxJH%t!KL-6ysQP@0oLX8;h=s7k%Vl`Mmw2>LPbxT4C3ew!IHLXVAk zi^~(BH489SKrm+CLYzbu`S6nGbCfuwM{i-EieQew$NPukN(Z6F@|N z?vZ=LFz8DgMsvJl$g3CTv~XO0J6tTSZH^6}aRm{dTL3uu)<-p8(){@HCD-L=!`6hP z6>sb*5i}c>d?(E3dfO{XZ)<8EDbb9_>luZZ0Ni)?Lp(K=HV&*UUn-W>Wdz;awhYwAiBF(^6$sG)Aq`}U&|FeSc_ary3?G>c-i*X0RNEd87!BbkE0Myk6f&} z;}zvb5^5So+CSg^9N+9(a5W!~6m6G~L<@;?!_EGNRrSR~M4TV*N$HC79Rp9*3KqNt z!Hfh!g!Pz79l>t7tr5jjL%-NDs{??l6>yhOb*A}db87gf;6i98j3+a<>umEh5#8S} zGZEJ7>#g>dRQ9W|^+&ei)-&0!V>VutgvGs*OQHqaG+wCnH5KW{BtO}AL6w{j#-6L<%A>~T7WfbcjM~=;6P4r(!Rm7=TxZv@{a}BTKyqBPGH`b`+0y{#n^PV&pI)&S!Pq6+X=q=#Jg!@lCJCK}?SO&~YTXUXl=%BVKWM9;7ut5v%Dj z%tSEXBE8fa6tC`!j@%mcJ$M{L9NOyUbG-0X6{_p~{uX_LGd}|5#9&$~SBl+YKLf4W zeg_<|<0-h$X~fgOO`DHBNvKoSsPE~GOj8}O0sPNmMcr^$MqqES&Yf^b+o0V^EWPlt?HWY|{5B-`64)Z` ztNV1{-1%;$*_;P@A*0R3?n{4yj0-6Daf?co!AE)1e+f}^`ox9qYcvC2<%Mr&7Ss+Q zy^$TEm9zk9>6*c|=v%Y)GNw;}(agY*9;+{)IP(Lr?uyR^Z`O_woN0jGCVdh{El_#( zbhi+jM_a2sgY@CBB68YFYjz%wi=Y)kmZIzYf7{Of2IYeuBNzg9od5s;07*qoM6N<$f+i2W A^Z)<= diff --git a/editor/icons/2x/icon_dependency_ok.png b/editor/icons/2x/icon_dependency_ok.png deleted file mode 100644 index 80fe7f573a1a3f710ca6c70eed537ed746906f61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1015 zcmV@QK^SjD#Wjizeuarl}6zJ0Ho9oTC;xa%Z`eaZOuM##h!Bf#-o%{5=g>s5Ls1aI4dAb>BCd6fo zm>tM)*;})uJmcyu|9JPO(dTM?&a1*X|GtIz%ahUMFRfwod1QFUStm`~;<@22p8-{* z*Eb9o;hboIrbm4SfM|=Kjgp7?k!&<|PMDjz zkn=?!ytL;|I1%CUT+0_h@KQsY&j10rKN^VAjF<;MiJkl!03fp`vD6ZIXrFT>yn9}r zJU*BHMoaZ(Al$>U4Ir|=+$KRNrJr=>#&`AIF0VvGliMu(Gr$1;;c5axRj@wl%Z~@CTm(#^6GrTOhOw*2i8G zPI!E7|9Cl5?NO@~$ob;r-hsz$Gj;)y zxWR@hU+UhDx|h8a!r+50LoNgn_RfwhkWxFU%%FKl43MU0>V+d`3+ForI-KW3*XQ#7 zD$pB%_)ldSVyYn1^}+#h1;hNX_mJv46J}$lZki$EFaXNB0M+Tzh?s}YccgyvRss*D z6S4k_M#St!#J@Mr#uc;0crCL#c`2}5?b>7W>FrchQ=oK}d!h=PvjuLzp=|8b&5Awi zi4YMca%bPNq&!2Kw$%pai`*1L*=X|fb$e?OEJr*y+(pEDK&ejBx*Z7GODcI}ERT%M laDz`zbi5z%R{cMM;~pp@yJ3QGbd&%9002ovPDHLkV1j^X_Ba3l 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 9d496688ccb71e6eb12e452580f03e70a60e278f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 836 zcmV-K1H1f*P)Iol zQ3O#ho;5QALnf2IK)o0QJuG{1cPGOV_M+$#KQ7`eh@Ys@pyaHHVctE=bkg1FPI_kI z$>&z}zV$x8s_yElhVNZUnrLP!^Y>2SxI#T(8-O31;kTeE;GR%5ugv2W128iUQ_C4v z27XFd_o-op0`4tI);2)d{@Nl^zk}^bXdKo%}n}iUg=Ix{Kud zd?}5sC7mlO^DK?CA9xvxZyU5~*CGIeZ0Fvp%`ww=LBGxbTvX}d8`a25BO!`)$otb-@i~^VpB}s6(V%0#gl8#Kxk?L)8=APb10O-Gn zM8{yHY}NB&h&E^LjhH`_{M)b^lP$rOFofT{!su0!%^ZL_sd=yYgP~by0{A&@oZw7e z?sczYnXMKhO%#;f?zI+HKr(B5G~yI^9IY?Ar+Pks<8L%q;Xcs4R0UyY4ef2!++e&w zw#R=@3>?RjEJgh|@M(!Uj-eKp9e`=5pA278op9DA^}lvd4wwzcI?$|x^%vFuA{_NNE2IDE}yYq7I#N{OVF=cd6j2mC_q~Z5D3+QADb&J9;$JXI<5niR*#e`$><*O; z@o!jc&@i(Dejp|$Bvx7=`WI}_M5G{C_!A89-a8fyy5i2f-ND2{ZZ-3A-#KUQ+}w8_ z@V|$Y-DuL(b-xE;sLJ4!+VnT0Pypk2^rQqnj9dXGO>0)`FQ(I(DobwC^p@3n+a$@2 zyqumrVA8Y(U=2V8qy;b?G@H){B?qtyAOLUx=Ndt)^~x)NaXf0Z-UcxAYmxifxeF3S zyZw+ej>oK0TM#+ZwftRMdrqS0TcH2|FrCg#h`h+uI{>pm7(NAny*Qo-w4McUmE<@8 zh{z5^HVnB`3ByeQFiFyYQqKScAT7wdL94aut-vu6D*)z#Fnr2(yW)n29}tL;*E^&Y zkwsOl&P%<%pNV)3=fYm(g#v)XQc4u(=S$d&;|Z<@I@*1S%kwH%S@V#F~k+E{@07cIFa{4JP%L)ML-Rl(~7Nj*I%f2+PfJzu{ipb)i{37zOGBfk(L;@JcV*sG4)p?Nb z2H@XN*52>N7+64NCO(@qy(9Jdz8)E=3As@CJ4h=)TU%R`C^|4n(y&Tx6`7hmL(**~ zem{=W^ilv!gPf$uH~adM!@kR1BLmvAoXWhVN$7i6a937os#%MSttO&EmXYi;fMJSWpn m1kL7JhS8H8IK3I22Ji#Xdq##l{EYAb0000J%=P) z1Vxl&k?%;rebwvV$T&Bf9_cBoyQ^(nId?TQHSeA(-m6<8uU%OE@ZPg?F)&lr)3!Bc zHYNGBt5%-p5D^)rP^OxTh^Xp0fKRD)lK@i9p99eeFdB_+`9GA+W_V%Ct+q|0GEOJ1Awa}fU4mp z06qi|TO_}=K~%>c?)*VSj#Tx1tTERB>fNrYHzW@u5Eo@x?uLcRvfPcBFGwEbc|Nad zKADb30FtL+w--fm6`lluvnN&}NQ)OoR-ur)Mc9O7m z>b+lh?+<#JBoy9xiM1PTl&qI(!lXE^Zn!_rxz2}%b8bfRZ)$)&0yGt`U#|eBZ4l16 z8GsY%xVD{hvnK$t;;~c%@UiJC2JpG|DVm}+$aR1aqAArx4nJ z$hLzpWB=2SsX#%=64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T!c)B=- zSoFS~w2}9a1CQ(cTH_09k}XUNdt4lw1Du?hPX{O}8hTFIJxlPyQ4>cl#l{ko9oF^# z^XKn>C?6Dh^^WECy!-7sr`OHrD2>&3NnsU8zSI5vAIq62o30aPzL!r6Shh@<9m%-E ztn_kRukmK3mI?j}%nJ?(cFcEiJ8|(0AJc=q@l3np9Fxi9}5qmbLfB8=VCSk!& zk1oS^FLrT9b+pYi7xcW$P^IX@P^EB&A%G*8fhFlG^RCJd} zIs1(y)z4*}Q$iB}|C3Li diff --git a/editor/icons/2x/icon_dynamic_font.png b/editor/icons/2x/icon_dynamic_font.png deleted file mode 100644 index 1f1dc52dfba2c2b5fdc5b6adec32d616b6062488..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 383 zcmV-_0f7FAP)bC$E7HT5Kt&fDS~NJJ2tO*dj$v;d@Z8mUFm> zSZ}#C%|oVIEjW(se1r=!RrH+XjmP78z<-B0KXhH^mi%#5RU-ZtP%PPW3RVIXsJ)eC zxlu|Te-?d@_-AabmCURG)ME(r6dC5z08=F+b40rz>Ul9fg}RP80FWjwen907-JL>X}`|QdI=Iy4-nDEz*5c3hq(l@ zdmySnZ0gOO71=Yv2^B?hzK dM|Kaa_y${)Sn2ZEN_GGM002ovPDHLkV1i$pqBQ^j 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 6d76303c81882e1659180be1c4e19c275dd4d7fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 379 zcmV->0fhdEP)%$K^`!Yw91b@% zXIJ3d1^2q+6qchv3h(PRPTMU$Rx1D(g+h;nckHcY5JmH$w*sfl=3IOT3Tp*GG#|2a zAf-SG%kjWpUErKE;Xx5$W|mw6Nd=s9hQ3U6166HAgmVcbyMTyZBU?LFJ?0Wvjt64N zmrBIkS+N`iVqI|W88N#8SpK Z_ym>VZ3Ug0*3tj~002ovPDHLkV1j78m(u_M diff --git a/editor/icons/2x/icon_edit.png b/editor/icons/2x/icon_edit.png deleted file mode 100644 index b9ed2c3e584a87bf45add6e23e46377f8dd9d6bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 525 zcmV+o0`mQdP)mPTBOm+W|m1Y7HPDJupx7-#M#ZoY|LySo@zOB;QMC&VHWu7rL|rhwJu!3 zl~VOMj$f2gN5f{wC7hY>04xAtB08>CtEagLXst_e97_O8R+|AF)@rqLd)7$=p67Ll z=m5Zn)g}OE={TH4002s%g=USO1UG1xCAh3wconk z?n)Sj?Wshdl&TZab+6aEmr}0UYe5j)644&M<9KK0Mi_=|U-fsF8XW^VYt|1cE+7x1wKT*1c@a0&lWz%_iNKpya+0(rp) z3QPdswcqxvm3WAxldfxDa zfH7v2fD?E^fQSYOyaKo~#_YI&13=OGUIuW*%uOLglZcv?N=3VX{+C^!OQj3&U7_Nnd0-3-PR)Q>V}ORdscB z1OIx2VR$@ioZ<4!9WD)>4VWk!|_&+68*A=9l~qA;b<5ZN?>-`Kc}8ByY_Oo;RSB zS{scbHW9s!6N{-=fEFIDeu||rPLY` zy#=ros~y*BwR4R|xjEynpec%5w zXFOe?NECnEK-U;^p$a$v9I>uf0CbtT=QvJ}h<^muhpGBlU8jbeCFzm;1e7*#-YmB*?W!WOh`v7dw zKl6JaSCS-WoO3?_EELS2NIn`4hp)Tc?vY*U;mLW1Mr^YhSvHW$-@q*1pol7wF3YvQ-ppexz%d5w%hIYuS#!1l6QUIe>~Y= z0r2V+DSnH{ol0FGB5NW-0PubP4S>B9j$|1BpzBJhb3qX7cvS!ZEL&?Y0Qf-iAPmDT zk`IoF9Vn$%wbuJZV;z%lEnkrA@) diff --git a/editor/icons/2x/icon_edit_resource.png b/editor/icons/2x/icon_edit_resource.png deleted file mode 100644 index f0c757016004b23c89ea50708a4b8fbcfaff17ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 311 zcmV-70m%M|P)LH*S;A7jfaZ@IL;4g2+TrRPa0sE@pP# zBIzsy&mie?H4;K68JJqud-d_U+L%y`aRppU`jzw=LfGc^T+Wnaz?GyU;MmL_V~l5e z1I$d4G_bs+bq3+ z7QdEYBlVJQC!er~ymRj25CDJ<0rV-Qx5W};j4MesqY|BS>#{6AW&ulKnEA%8>rPTi zPor>eX7^Q9eeR6O4kTSJg=YbySvEWiFtZmk`vJb4b2qs#z#rzUaO~2)6=DDY002ov JPDHLkV1gv6gAD)x 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 f76af85cc117b9c08921809cd50dec2d6d81925d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 705 zcmV;y0zUnTP)XA<aa&X3|uF2Z5k5uGRi;>?)r( zAYxfmfK?IEULfVXwq=>abmjonD(vsO(G_4b80Z6ZNB_b~uh*wD@2OHTbH>)oNC4nI z;Ps!{ZP?qJ-n^%s9n;r9IaOVb0@$!#^nExzjStXjnN?$}?-c}C3jrjhFhC&+;Fgur zY$gZLXt`W*%E%Sy@Ee^u2-rpMb&QPo+#TiL3Q>w>%$-$d?d6 zw?aL)Ue4uARhw2TD^a6=7JP^*$A>^Z5HvNRTAkdySag@*d!P_3$5988JHQ9r1BvgO z(mbj@q|;C?M~(ahcqk&@gTY}(vPZyc;JVe&=?so!jmBVyo0~IB&GXFUO}WPmE`hR$ z9JmcbrK+n59!iU28#@q7s(Kj1{GFO#I=$3fOrEIf(FDd{RdsW8?-N|jx-iQOu4XqG nT+M!Bw%6X(?DHi3UTysYogzNdvAnV@00000NkvXXu0mjf0+B!7 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 838f85b763017b07d711956ecb63aec0037855c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 855 zcmV-d1E~CoP)HTO-8%qIU0Mg#%>HLcW$d+l>oGi9DfMjR> zh~TydDI=EJmg?pw#Q>P>4_9b$fQTA8iz!aF@Yb+qfo-J#SP|B&u(A{YT7;tXW~WXn>5GOUx!*p~|SW{Y3+0v%N2b_k3G*{3*bIdv&{`&Vo(31ONl>)p}960xSzS@(rrU2w0P|HDM!mLwiO1 z*<8NRBgj>2EdKDzOtcQ=V$RkglZhmPqPk=N0G&&BeQvF4?m{#UxIcEZE-0!?HiBFY zrLV8DVh2&(UMr0XfQSx8KFvA#`1&O?l;P)< zj~jcW$3lt!fgt^o8N&88UQM^ZH!mIV^;2dXH-`FsOPU|dD}b+r>(nW7jLg@){{;Y` h|NV`{<wiB9UraVYf%L3olTO><7)w>>S4At^7ZDk+lmIvSCrBT2b&{ZHef zq*F<;rt=}GCMg+w7RXuxpz zyG7@qRDxnLtkleG-z4RM2f)#6LcKoqm;jW^VUrkGbHFa(==Xi)Su`3j7yu-I9S3Xx z5Ji96osx7G`q5GvK3|mv8Np18xDIvvae}iGgN9(|bqK2ufF!qg*5T9tGtsU_)UG+L4lB(03=KLNC8 V;_Red@PYsU002ovPDHLkV1huLxN`si diff --git a/editor/icons/2x/icon_editor_pivot.png b/editor/icons/2x/icon_editor_pivot.png deleted file mode 100644 index e1666e38de2ccb1af3e169a8118b42c9bcf555dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~6PZ!6K zh}Ps31;Ic6|JQTdRl2#k$p@WDR=Ub~g-s{rb5kvfzDv?boFyt=akR{04`2Mx&QzG diff --git a/editor/icons/2x/icon_editor_plugin.png b/editor/icons/2x/icon_editor_plugin.png deleted file mode 100644 index f6411bb32376401a9911146cd3fe25cdb7ba6455..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 469 zcmV;`0V@89P)5DXK}_p*&fBVOw(S^@7o`e-QQlGn5YdZE0SbU(<_>_*l=#PDvAA(5000mK!B9%s zC88$)a{zN9dR#7-XYF?TJ>fa~3>%Gx)yp09Nw}{oTA}n6Fa=EXU2VD6k;R*&@UsQP zaeNJ6YCA9kQ=Q8SR&~~{Ha7d1xnsIoQS96Udh)@>K+k&(!?5mLfcEn$Hfz1&YR&}U z=VxLArmMLWkcGUbWg!9mZ2{BOoC#p&9)MX&XvNi>39xmwe-yYIZS9hvnkA-Floh@k>SO!mqogeXH#2*tL6p)aP5iH@LYN g>=rUL_^)8#c_bhq<{T_12sDYo)78&qol`;+0BI{L1^@s6 diff --git a/editor/icons/2x/icon_environment.png b/editor/icons/2x/icon_environment.png deleted file mode 100644 index b8438202c172efe0df7f9fcb4a254147899d0323..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1193 zcmV;a1XlZrP)=;Yt!RDlRtzyH6#WCzmo_np3TlOdy+&Iv#h0m5J^P#~lR(oVh=w!6?BzrE zIkRWal}#;{HNJ2Qrz=7!mQR2?Rl~UMY1Lz_w);wq=@#_PDP5+lmSJzW*pQ zj{~@UmBk~u24GMKalDz+X=apCKF-X?n-nh-(RYSk(H{Un`^r|%tpL98Jg;wA1cD$~ z58x<(q~#iO9OqtUZi@`ee2|$B8hTqIk>~;NiItloqN7sE?4ksine>|9W|*r0hJ+A< z%)A-EMs2?qhT&*yYwHMrtJ=1)TCLtEgxCpS9{^?GtOanGnd_Flj)0VMHyStGej&uD zCisG3|FFBe`;Yea_CEo9WY}K>03pPC0A8`MdVSyD(Ubr)6A`^>C5%PIOQq6U0KM8? zsZ=V5P*V<}wikMJEQAmvXk3oB&0irVP%IYjNBuc3JB}02pj^A<>lF)rBzh-k)8 z+n2!Vj0P0KkxoebC=d`aGc6>jW1WH)^wTqFM`B@uS zDHRuE=7kEIwH7BpL?imVZqeV(iy@i?iHMo`5)qvzqHh7TG4mTnc)VXs0w)3V8G1$t z@l>SvzJG+72lWg;a~$Wi5&IW_N0|9ZP2gi8#50joN_oU2%giU55tszgu|r^+^DOy1-4Y>kgZszVGjf#^#;i`~Ka!i!x<08pOxYb=@BUTr`4`)oS(KNJ*tq z$57im4;KoBb&;=7D6C`V=$cmPboy&!BBKCO25vr^&HmItfQXog4p>ZgN-2i`ptG}c z4nTC>CX>nJUeuJms6F3jbu4_}-w$8__42Bz)V+q8OlBOww3RR%kszWE4Eyu>eE!DS z+1WJ!o-^$4>*6n)y@HlAuIo;khB^YefqWXkoE0-7r5tx0=K^ZWbW1v&erbMwejjT6 z!^M`CmY=1R6U;np;mm#CLXzYs0%zS}}9?*L91SbK2na>f?rUml) zv)Sx7cCCM-DZL6{_llZQ0B~LR6o7|N+jy&y)6Beeq2jK)Yj!KEY*;58wH z-3_grfGJYS&CEQY-}4RtUAX>8T?SAhq7zD~Df68FFH6ba$iBErHbeHJ1cffz za|pG11{bAk(Ho?@B-3$`SVEwMB){eGzHjEu%o7@MaeRU5J#Yh@RmcZN>03Mz8)AOAENuD18DUs+DCe}UW*z&VaFvF;4APtl<_FxEZt!lH$WX?d z0~dN$`lD~}{~s2`zl9YT->}{AVA#!Q_PCz)->^Tc!gQF zoTs>Qriw`$d)4tLX%j98%6*WSlH&D(hrgotl#z->3%gDGQg^QcF8+%C)BO`3NW_6c c?)x+DdsF9xI7SqI1jYq}r>mdKI;Vst05zGpga7~l diff --git a/editor/icons/2x/icon_event_player.png b/editor/icons/2x/icon_event_player.png deleted file mode 100644 index 2482c576db3da2a4d7e81dfb86a92f322e9dde70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}9PZ!6K zh}O5$4Y?Q;d04`Cwme9Ex_s~K{KU*Qt9kxSxhTm| z6Dm+H^2B`8Z1(Hc4Gc^i3JngH+*+UH_s>dSSI)r5B9Nf(z)*KTMda_HB`ybn_Aq$5 L`njxgN@xNA=Rh@Q diff --git a/editor/icons/2x/icon_favorites.png b/editor/icons/2x/icon_favorites.png deleted file mode 100644 index 7a63835b3de383533b8b35975480a185acd4700a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 702 zcmV;v0zv(WP)0yVMD#50+fE=yeTiJqdsSF4yIdx`ROw90KqT0F+WkT-RNw!=vg9krWY` z?#`<;O{YoL`j}bTYM{|Qx+efcz2Yx1W6V zDH31P005BORo4K?HJ@u`E}g1Za26Y4pmqWx@@EZ@+`SP7cI4FGh{$;nIRl`X)8n*S zt?fnRh0pTE#l=1VTbGsRMdYqA=6R;pY`5FPN~v)GV_9Cuaryy#&C@7MKx^IGfCTV@ z(;Bkn4tY9$l@r#3t*{>Ha+Qd1};)aIU6Je$I8H@JVEMWR0`-H#8(CnGB zmnI8?!lKyhy&m_alf*tZb{Gr3y~^UGx{0I3BSm~_1GU$|KUoy_3r>gTe~DWM4f3`Sf{ diff --git a/editor/icons/2x/icon_file_big.png b/editor/icons/2x/icon_file_big.png deleted file mode 100644 index 092132ff361a6e08521c05ed1e45190cf298e9f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 934 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSY)RhkE)4%caKYZ?lNlJ8qdi?5 zLn`LHy|dp>BvGX8frExMVh_}T26-+z{FzFCuQ^!d%1yiL1>fOY{v!_Dwb>@G(pElHm= zO;y)x*K}LslPj0Z4LY^`mi472TNsp*{4TXEG4(9p^lZzUpi8%dPF)8|Oqs&arv88H z5_ieh;by^tDSM5~O=hddOUY~w7yP*7Tc1hdx|gi&-~VjwZ1-1r>usgCbdI^Laj;8H z{KpR(Oke+cU8rD?+VfC)|E4(}RhPF5|CdiwYU+tT@af36e?0U4OuToW&xmP<{l?lk z28+F`WF6fYxF1U!|9K^E-t{2!t?bTqkw0thv6idseG|>Xa$(IqR|kf(uR~c_CM-4= z6mXaq=iTUQ zZujM7>?te-CL8yj3w`jb?RZY@qlfQ(&!6OY;Be{bjc=2dtnG+UYD)cORJWodUj8GwmJRV9eq!G(~8685new7E9)Ui cpW(~Bd?Uw)J(2rQ`~``4y85}Sb4q9e014=b4*&oF diff --git a/editor/icons/2x/icon_file_dialog.png b/editor/icons/2x/icon_file_dialog.png deleted file mode 100644 index ca3409029648ba08d5487e5d217686cfa01264d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 397 zcmV;80doF{P)T)f?E z%q;T&tfvvMa0Cul_l6>Jl!iQ&0Dw;A;7*YH!UOw%qK-oXx=wSXja376 r1x#`vo``TMMs0Pf`>#2i|3~o&(w|k6*{$%800000NkvXXu0mjfg1oFg diff --git a/editor/icons/2x/icon_file_list.png b/editor/icons/2x/icon_file_list.png deleted file mode 100644 index d9df3a3ec3be93ccd8b02f15dc87f6e806dcea62..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_c1PZ!6K zh}O4PHgYm3@US?PPI_Y>YIZS9hvnkA-Floh@k>SO!mqogeXH#2*tL6p)aP5iH@LYN g>=rUL_^)8#c_bhq<{T_12sDYo)78&qol`;+0BI{L1^@s6 diff --git a/editor/icons/2x/icon_file_server.png b/editor/icons/2x/icon_file_server.png deleted file mode 100644 index d8021a4067cf170ea1732cd3aaeff79795e823ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}rPZ!6K zh}O4L9k~uD2rysGfBN_Lx~f$oTQ{Ue+m<|AwxUH~v*zEqZ)`Ktj_1Tr`rRw3TJ)3m z5Z|4LrD?mFIUE?67^33s-~Q5gzUIb1ZZ^hApGqfveSMyFO&bq`oz S?}Qi7G6qjqKbLh*2~7aOX+m89 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 f503fe406b6323651cc3c0397452db98b6e32bfb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}LPZ!6K zh}Pr;iI)u%BU*L;oBunm7I*lC{}#y`48p3jRx)bvF~&69m>~Hkl zJ$ux)u30W};8hpnc~%L&6^UQcUDlnv@YAH6Vei2VDGAoanF(8DBz&0{GcY`?lk1P1 Sr{4~=jlt8^&t;ucLK6T+8#^ul diff --git a/editor/icons/2x/icon_file_thumbnail.png b/editor/icons/2x/icon_file_thumbnail.png deleted file mode 100644 index 5a8d282fe1617a4ec417d3e4ae0631cac8a13034..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_c1PZ!6K zh}O4PH*zv4@VGjbPI_Y>YIZSdwL(PYdY+mcdTU>P|5bV7Or)gSk!^eL_MUo?3e?3g dDW3yKD(Kd17Eo`!s2B|r^K|udS?83{1OUd`Ea?CM diff --git a/editor/icons/2x/icon_filesystem.png b/editor/icons/2x/icon_filesystem.png deleted file mode 100644 index 4ae0b3edabff4856776e0d9debd11cc99ec5f162..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}(PZ!6K zh}Pr;iI)u%LwNb+Y<~E6Rk5Tfc^@p0<>==O#VDNPHb6Mw<&;$Skw>$9w diff --git a/editor/icons/2x/icon_fixed_material.png b/editor/icons/2x/icon_fixed_material.png deleted file mode 100644 index 21bfb15838453e2c8f4535cda3d3cee407187f19..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 736 zcmV<60w4W}P)RaH^SeKi+4~ znS1ZKaMVrmc2rd5(b!5H(UYXGV$K@dzkj`IjOlXKox zYwfJ>`!7U9I|eA1%crfiPk{?Lg&S=NxMz$B+6E|aMM z%Nd5@b=P&@rNq~P={Sy$#c_O0Ri}W}oB;j6>mUfOWi>WMAPM_YG7w3j z4;RPr+g3AHtJODc004|fQ8bkapsJEAwcO@7PVRjqWpkMT$tKgZ&U<@%CtA%UA~!k! z7!AX4tO)>^Y$5VEilV+of2C6CcU^bB0{}#1TdSw`kZiA6HlnJ_YinyWwVb=Id$U@t z&a3KRi!r-eTB|4JKefx4g5x;P9A_tBs=My6d)c;DIt2s!nXwxH`}(9d&1M07KSY3y zEP!wS6+lEj9hSPPE;a$E>cSxcysAA*$|+G4eFa7iSbxPBbGG)9PJvo$XAf8$;9>fu z?l4KBPy{X=ka*GaysPOtvFF8IE`+|Im5+x`JLGy8^8 S{akba00007-F=LLOl{nEHq;9r!itfEEE$Ie-O3hOQWX`vMhQp^2i30lzf~R5$Xcx@$jjNs$MQ?VwLA)wl$L=5DN>>GZzrhtC$szS`y2&E2uyBw2U!@peP z{&be`H#h@SdX)G{e5GCvxc?5rl~fT7b1V%Gwnj4H0J8hmZ&dp{!U6VT1n#T4f3!=0 z#Yl+E7cM#Nxx%z3eF%VXf*;}5^rk@aLKV4#4*1D;d(Tb@u8>Nk zI#*&%`7#BFHT$K5)QoCxZI*z6(UNmG4BgbulFasddZiTfntuThY=;#{HPV=8%c>3% zoEg<{-;Tu6WSPL(l?1$^5CIZfxm(~J=gL=kpb~gcAS_pug9W%(L0J(29t6k|ShZ*r zIqVz)`gODD3Jb~W)IRXB`HP6>a=We&NeQGaL!NI296-S-N{)bfFsMq; z9J6>Yv4zI0bx4jRZ=81k5k1F_K8fXkMAQXvGyiU^M(obR|HA2K`gf0Xt_PlAq9jE_=7LUO(B zX|B$!8F0+3wrN)E29THQfKP*YJRcl99ZXaRM_YkGgc^_FS9Snx&X!$#3#gRf9ogj){cL|9Lv!uVCf710000zRD(qY~<o&A$} YqnD^k9hBEA13Hqy)78&qol`;+0KQ&XI{*Lx diff --git a/editor/icons/2x/icon_folder_big.png b/editor/icons/2x/icon_folder_big.png deleted file mode 100644 index b89600619a29bcc060e9b13b231078569778de0f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 991 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSY)RhkE)4%caKYZ?lNlJ8r+B(J zhE&XXd+WSkOsT}NkI(1&aYb8>&`MOWW$IPK zsA*4Qw%^{XpLzF8o_ExwE2|$Tr_NY1C9d3R?)3EZ^xczBrlgmaeqFz;f0o&I2Dil* z+clT^dbWNqJ6mVC`FQie2a%WCeI`dUXfDnE{rh*c=2HJXX40RYCKy!Yq}7|(o-ird z+qP;|RaTmO^;^>ymoH|hc+NKk3h&s%w5Rgs|6|G7Z8kbxNxNSvznUg{pul3!z6~2b zEM793@B5iaubw=4@^|XgsrIw&miW!R(-^n@yF>W<+4`QY+i%C_|LWM4%ASz+-G*H&$VHyxDFJVd9(NN?JFNB&SY`l`t#?{@yn-V{X8Cdnd3o{T%X(G z{L`CicE5DqlNufy8v4m%i7KCJt?EnH_1CLQtE#HDZP{Xy`D=v?i^1-H6TZw|GCggZ zwOoJs>x#HWhFg!*J*8a(-&FK{l3QS#=XGn{s#l&~FK1m}ar-mFj9Kpa^TKa@ka#S* zV6I$fXzBgr4u)IVt94HAyd%hzu|Bo`xhThiqi5day<=nC65*ApTi(nNb>>XolRN>3 z-KqB7jtmC{9ST?kWEff82bwv@ogulMH|E^?oy>BKG8Q=xisGL0Rj_>6dzej6{de|! zSqHC|yYKME^v$$AfA<7mg3-)39=|lp+5g{OefaR;7}Ecbp#2 z_&+T4s;#HL%H2=*`gE3tc-@MKiz}+bIE@?fvmlk&W){4XWR%D?84 x_Wl)miGNaAe_!9c^=sG8HK`Fs$|M<$^$Zu^9esYHYGOD@*wfX|Wt~$(697+zuqgll diff --git a/editor/icons/2x/icon_font.png b/editor/icons/2x/icon_font.png deleted file mode 100644 index b78c95a827a033e30f9cfa85ab6676f22ced79d8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 369 zcmV-%0gnEOP)+{|VV_bz0aOk|vna*7^#4o#S4@#uu@&z3c7` zv|9;*grru~CMO&-6VtrIcDoDVIca58!GLfQTy3^RB}%d>d85fVu*n%Cg)6 zcwy#nfBm2Z%)FY)d|y!%y#rXA@dJRSX|_|F_tIK#%$T)rV>EUT4C&;jzyUY_2jBo4 zfCD%RAkXu2Gp3YU%m(25{;e64QZA3l_2)ahuIr1oZJz;L8cVN4bkj{f(*tB#b`}J| z9Wy^z%zu&*RRGpn>rIj*pJVb`r(&Cg5FgCHKc2dQ^HB%^j4bZtr@-kO8O2t3E4w3X P00000NkvXXu0mjf&2pql diff --git a/editor/icons/2x/icon_forward.png b/editor/icons/2x/icon_forward.png deleted file mode 100644 index 60294493546de213b21febc07a95ef9f151ea51f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 410 zcmV;L0cHM)P)3kD>F zxCDD-N2nL5IyR4`trDkpoC*FZ@gKkcd-fk2`0L=|!FzurX$1fzm)6?1K?2UX9{`j6 z>!z;j^P(txpMZ&skBu>}k{HQ%1xP*zxtVkBzE9v-K@zK~dY5$F$ZttrSZm810_}FY z1%OQ>e(SMNxQ3Pr)~rDJvc2p;kJ(Fx1M)Z5(1Hx;VL3VvUq-B`T0>rMFcj z(R=>^VAdF3Pp8vKFF{W93hZ&4)gkHl-y|)RWoeBu-vGvq;V*0LjHHqTk~kWTR>9;g z$@yV&QouR42zme{AHsG%X(0zaN|1{l705+DX<-O@hhQjrN1&>zd5A9QF?AlcEClxg z0DM|&uTs@p1VL=-y1wh1+!7$U1h59MCV884EB%l71x``bmY0pd%>V!Z07*qoM6N<$ Ef-aS-u>b%7 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 1deb0664edd7b2165c6e7ceba98879d2e4e691cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 677 zcmV;W0$TlvP)OvcBX<;S-!qL-`F1e0{^>Y zl_X<~77;Vu=bY1>PA4rpms$k?z_s}f5n1S~3}CHo2a}ZQ2l|2lu{o9kSZi+r_-?J; zOVjl7bd2PJ8Oa%_EX#V<+FbxcYwcRhCwK;Y!g~N`eAgj>mn2^(rEZaY8=OpJV>B9l zY&M$@N!|x=)`yM&tZS`5ECujOHk>k_Rt}&M`p(2!vt1^@u(+;fcgv#N3t*^UL9 zv4B7Au|5BxweD3$n+7n(XaIes)OC`5k~)%eAR<@mFrNXK-0dWnegXi2%waDfYUub z^#f#C*7NUqEi%SDHO4#(#e%|!871%w>6B5l6?`mk|fFFZnyg@Ns@OcxF^agdKGJ} zcdfOTLS>YQ4C(?Xyoy8S0N|YaTE$dEvQq&RXi&x6Ik&lL{=cWcyYJype$Rbb00000 LNkvXXu0mjfpRg<{ 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 31cc130867c3704fd6ac02ee7e4a57cb0f00548f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 698 zcmV;r0!96aP)$VG3nL(cCX(5D{*5WwUwOY+D>Ltqn0JxYHgb-8O!T>~6H4c(;)1VmvY#zA)M06Rz z7b1G=`~LZKj+v*LG4ljezu&JD(F*__BHFR_G46q6z#{;aMEV2ZJ~Qu2DYu#Vq0vl; z>x04InNsQwGv5ZVmZVMqT-91X%>_uNtdnY<2mk<%&+{~ZO)2H2o06sFaYw1Noh@&`;-vKzPR;x4tU<)GRjI^t@eqyTieg6tGKhE<60IjtE zO8g7LFnn#xMN#yssGl0YWWRJwn2lz$`O8+{Xf%EjQ6Ye`f5WAP$}6zV#IoxD`3#)W z8g_dC;FA#IFp8psMx!y;)m+qP7C<_V9mm;nUH5wlfSEq?Eom1d;qW) g1i^)QZox9~7qZp`9B;K$e*gdg07*qoM6N<$f)+A5_y7O^ 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 6143191fc71d4d99d7cee3dfc28c04ae15879777..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 759 zcmV@t-k$+R)%4S+3U%v?yvdk69jF900NLpuOgNG>a-W=THt zCKGAy?d`oTm&JaZl2A~xBH+|OZ0yw3$?z+4^N02Xg zA4uL$Jh+DB#$j=<0RSkKO4qSp_Hm&_a>++{4b*D2?;`SOj0PSy8jY=i4FG_1?g94C z^Qg#3E{DjV0j1O|0_Q0r34r-DO()Vcogg`f{fp~EDbMA_!7GU4SOb_*N}bQ&v<`_Y zrOwuBwV$1FYwZaDpGnpNT1G@RopT=nY(`OJx(pa&7;%#W-_9V%b0xcsVYa|y*9(2fH$*i^43Yty=;AZ>GE0xOST>NBUeY0M#KlgGW192Q5 z7m*(r?E7DYjO0`lMZbJx(TC{v7{mdfBqFy$q_+Y|l1yh=_62|X`BBkw&Ykh~18)Vg zEPFCWaR8`@$WtHj*A65L`Gz)jMC4wUWs@S(3@M99ljIbDyXc-L+9O%dKoWcf`B1tJ z;FE|f)$8@I9bAmwW@WV22k$$-M~?wqL|`85i_l1Itz9+7u=8iFT^%Mz8-<@@U&#Q# pIk!1TtSHAo1`4n-VC+Bo;y0}#EgJn$p_l*w002ovPDHLkV1i5jQDguB 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 921f1cca4248eed5303699f083aa551b3ba00568..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 680 zcmV;Z0$2TsP)l3aqHvvpaItKtG--28Vq@}FqZTu1dRjb)BmwOJ5Qdi{W9cqEZ!;donVHWZ=VP&l-hlzs+0j=SW1c6)nvs!b zG4I)-0s7MRcH&ocU;s+Z?y;37lVUA-CFXrMGyojuMJ(xk)oRD%VOm~30mq5FdLR$I z1HT1otoR7ovU_#e*wVhBO=+rn5Dyg3<{9-ybT^SF&z=) z82~G`-EP@-y9LL20$>bXofpZ+*;48C&;S77fspG`|B)07^LCCz;X%2*V1158qsu znj$Mnw!{)7DeYeIFX{=Uk7@ij2z)<`EZ})PH`)DrejC82VFCWDUwr|fv)A8|mO`Dpi3;LZh^JdflA76S(rHgJ%i+71Z(;R@JU5T-*$#2!cR#IWIF& z6m7((P*^W zY&IvlL8%hVf*%8TuwpM0z{7gIe%$Nz?8*q(w*3OYjWt|u*6Z~{U7_EEg=(E5ilWUV zNj^gR36hbBw8!J|I{~$E1 zCjd@G#GUC(5!nH-TZlkjW=P)B^&-;F1P1^prOv`I+yii=spr0B&VZ{6Y1$WIGMT*1 z@~VPBT-4AojO=;(Rt159E;x>}m1kJ1)oy20U*>D8qAcl#4*;&G0?C6g3{R9&XS&gF zIJ^|c@!0Xk&28JhGYhUi^;44F!UXcVz;)fvgTde# z$;av1tksSz%Sz>Q`;qJ@rRF6lbrbr&|Ab`rgfGJz&-0$@ic$nf#-8VGi%4gct%!7# zQrjed>Ymc`0Li$~XzZ`DYcv}BB$KSZOc!J^M9y4EGRkwRaw2NYNSq5UBCR~9+}AJ< wRnLkSY9`FB;W}7%uFx}Z9}8;uAHN&l0m+ERs0O`|G!KmhzhH>c=LJk2wnsk41(mcyBF~w0r4h6 zj5Hqe2)>P=C%qYD1sTXpmj`D=XSy@(MBIa^Q%_e{{U6iaRSo=fW8J{Sm=4Gb0D$Ul zBZ{u-5N-j|LP>y z(P%Y!e%_}@7pm&27bSq~PPYMoB1dT)_a?@ieg-5LPUE;oku?AS36Mho6#!*h3k7is zS6KNBSlfl_!xWI4i7^L7=fs$UG>&g5as;3(uKECLyTxf|FVMkYIcYZcDDvBxERR(M zNX_!7XWbLYa}hb=_V!~CKnRGclKc=}1ehuu1W*DY|A74EjeGqgPb3Fb!nu8}4zPl^ z%I^x9=Bzjid_T~y+=Adkm@UT)hp@B-i7}mYaq*TS#~$&qT6>rY=AxR-jUDS(RP}F~ zB-e>Col1c0rL*o6UTC#8n^Dv+I-60{Uud;9y&&Ye>*W+u3CC(}P$|y*eI1R?vL4Wb ze+xYT)^=xYMh=j?8HH8C5KAsE?fdV>&Q7h?{@>pNbAVX@?mXjf0(gBl+(Y%=)#v9H ZYA*|r^6Gh+7MlP7002ovPDHLkV1jjq?P34` 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 0d02788040ba34c8c2bbba204a4b4e42853f7f34..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8264 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 diff --git a/editor/icons/2x/icon_gizmo_light.png b/editor/icons/2x/icon_gizmo_light.png deleted file mode 100644 index 2ba9689107f58cc036b9b51ae115c792d3d74fdb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6282 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 QZCaqAqJt^9ZT;+j0Ct@+lK=n! 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 78a88c55c16d3a078f5a2b3e89436e92dbacf6a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2831 zcmds(c{JQv7RO)x6n=I@PJ*VX5^05MTXzy|7tusSNCXoUt&mcw#r({iGiT;Bw_gZ(2Q@5J%mM8TbhNDMXE`I;Wj+ER~ zrJNGTwa+~CuEOV2o{Q-~x+mTt^7y1KBPp}b=5sZ-M_%*uHdBnY`LCzgp}#T*3PWxS zZ!uOfvFJJes5#VE*5-k|+(_q{G$J51@XmlQopMsFz%7R^}fKW80u+puZzVPAH)xuLU3 zZI86VyRoQdBav&JP*ZIxNTryc9-%R<->tg|%pcHFJ9X3grF)$RozL@sA7kVhB~%nz zm*!diQnq~V7&PMEN!++Yk;;bE8C!nC-u#~=to-Knhki%z$~JW6h$~yh=ibYItR5|% zG1o9?&2=u+cIAs6*Et#`Trg{reZ8tXp@FF)6xf~H4iWD^6k`2t^TcD573`O7HP@>P z%7h@!VxPh1CG%TP6Wi9d_B<uauBFn7s|Yt8lf{bj;MMSOjAA<^1&aG+{)w(#DW zIgta>EF^)OL88S@8|%H1jqB8^@pu9P*GppG;1o2YtPVuJ*Macr1?_RmIE(SvKR;h` z#gfPdNrroc%Sp`*+5{w=BdLNg>7X~K8joZ!g}zKtfOn#2GVn~FT5$XgrZ_e6X**zw zyjS9*6p)`eOZyC_Tt}U2AphztEfc0Fp-u+CJ`o(EV@ad}V*MeIj0Tm1@MzE$5|9rT zdFW!xDF${6*T5chj}`%e&;>`Kj}8_PV~+!!4#C}JxWl$y5)MHeoPph6Q@|3TH%I3n zNI<18;0_~HB10S%RLTHL$Sf_7fJAX5;Z_hwzJRDt0(Qx>v?Fjw4o7lA3A2fU^!-6l z;+1$W9i-3FT39&rB>7rZAHeCLKZNN;-e}=zCQ{9j@SeRZHIPPxe6;zN)7(ye_la|@ zmh7wO;n2bLm`a9#zWHo2;(34|cg=B2tSf>$1YI>#0an4wWiD1VrG)`3lfv5t5uqdP zvXJQ+bGH~wpy+?$6j3)kCFd33TdXzl#5>Q%=v~#l=;AS=s=&lJ&3{2yIMB41q9d-z zMJni`TD#@B;G`+uVG?z0~Uw45YyTe7W!S;J(nvxZgLs3^D4K- zygKEE1fwM^!O)mJGnS{@W+Dvp?7K^e?zzq1I3TJ(ytCAf0maG#vXT3i+wV8J+#g`R zR%kYEdE;eYK%{WaR&T-2^=wZiC|w?LF*zX5X^o4QvAWA%%+GX09P+U_bbzf71DS_sHwv&@{POS6E9AaYU4h!TW?Pa z-D*C4DPTG4n&>;foHNVn;R`g?R{_A&t`&*M647{$N1)jirK6u?UZ~12sVZ zH8?>9C#=9O0_6n@hfd`hL7eL_$q75Hm<~=lg2byZNgF$@i^tqc0g=ftNgf-hNd>Mn z5J$ldg!TTqfHA{hiU5H!NkEhcm=Sf1 z9_siLkQ6*-gn-e*qY55LK@}wojKJkaFoi?~u@nH2p>!<_oC%ZY*m5it)RTesK`0&F zLLg8gVM=#82yy^NC|JA-amAsgv>S|At)@9?^Kig=c<4sU6=Zz7)?p{6(;u zad+tZ=(^Rs093r;d9-@{94DF|80JA=v zEm?9FGb8iu*g?$%X1SA=j7poo-5S11xcKgFO7_(g1mxNg5_F|^jhk_7_Zvr`5&1Lx z)0K-0^GBV^lr9|vszN5#Z|k}A23l%aZ&V^(4u@e1wA5B?&3`q*)=qGo*lP4K8rS3x zjOaI{jrLj*tAEM4qC;o$r*Juj)?xH^me|9YHD0(Z^XO$ni?=J-KWfSXJ8^`=#GQ%o Q;q9f)PHxmXhrpD-18bAS@c;k- 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 631f03e874a71bd903b7fbda7c6f63072220d1e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3649 zcmd5N#-ho5Jh#jhT>A5IB9q8yxbzckBb{=HeqV#_mXiv{rw#KI{GyS_AD z@GUW4K{w^MGyHQ6^xCzxw$1T1gRNly*GAfYKpk*=wXv~JF@xKh7u?)g^3u=`HV;Pb zM;bj?JYh&=_0xTQblL(GTX}ZZX7USx%)@K*PW`hPl^^*cZC-51?_-(@^2mZGdqjct z@VJt@$JR5z2y+dSa&`s?7S}WxBuGgN@$bFr5*&-a<*WmQ4b8i^{l;@COWyb@ILzDu zF9PZ?C_znl>aGtvAf%eAwo7!cwOA8Q%Tp^j;s_LAaMRog*K3Ecso-{TV9#7K_??ow z1{8tGUG_=`D@CE=9?3zB|H@tF9)K8clMEWk7M4hQ5ZOYQ#K_2M1)}0sR3VwW%dDl- z!P`6UJHTWE+H;p3cR-8*R9s04m@8Fg-E#}f-LqzUxgSD*+eb_(pDH}6Lz2gt&l#@f z5GpTTr8|^G?uxs=15)R_bUxk4JcrQbBP=Xoa;@9rU4XAHwZ!TE)KyNhZ}V?(xw<{j zb`^u8)^WE5-44FOaqiJ}dyitN`$$?OcPd3sAvMV+#>i0^YC+eBJ1z{#4@qhZ_pD8X zL{iRRU#UKaojf?KIEu4zgJwO$e9kH9eC^AP86Fu5Vs$AQfto*7Ny1Uv(2eUZ3F+22 zIe)G|Q&aq8u2?F259Gt`*~;Yc1)SI(pV3E+>A5V@AsPO3Tu&l1QW^ISmL(Lp0_s0w zu?=RWEwt#MTe>y@P=ri6j-x)Sa+h)JP44nd9g;J<=5B^@(1>#`U zdy4^h3lPwQO#{E%=dMB4A^93}BJH8= z-!Jvh4#@^wH|9LSKoL#HI8P2rj4_Al4n+thSyh$Qiu`nG%1M%0xf`IpU9avEiUCrZ zD}dHWD#zvkjsjeA zUa74;C~h*2YS9y3tY7`p6#bYl2O$OhOr02cYWewR6UI*_sF}N>dv}}$>}H56n6s~^ zYR#%5+kHoA|IYjcM*L%cna}GNvbusAdW$=P?tl^7e^n{({Kp3WGzQsJ7LXbY(_lAw zt*yhH?6BSH5YkN?L$h^wbdywKz`WQ_B`FogizcfhHm$5=h*w~0ZAN?$XBGCggLKgodFdZvCAuQ zf{CbCM&VFESbTBfhbu*!7Cp(<0akoz$8Jz(*k3%sP$0fXRN-3Bn-bVT&CF;REXW+)P`5*YTjYoT#D2L;>()iR;0*(+RY)>ETs_VU!3<0=2tSU>dYlV z#Z7ghT}Z_HrGpSXfQ6(OUaTiw@vPe(;({wlB8ba>H_)CX}e4 zueP87TXwkxQuu?b=A|hMsIsms=8~VA!DT)tgWLa;yUt-M*AbwA`5V;LbOvda2Gku4 zkCiQa^EBQFL0RXFlF`}tzLM$1^2Imfd#S)zixo&6L$o}14qlK%H=PCtRLBQ|>ih|X z*Ju6zmiLgjr?x>{F4?*Qixip9hcAqP1Lz4R==~5E@6w|r%)gTi z`>}5pA+h)zcGHR;7R~W!uAJ6i=U^qP9(f#&c#MkIg4-S`)dTpw<>i-z@3}iGqUI-P zrg*o9TT&0%JRhdA8)vqg7=G3jSQRe%EmF?A`|vs>qh_pSTc$D`xkMI@h?Y51{CV#7iYs|UZMbbCS)Y_GTBdAe^+Fd~Z~`gb zM?C~`2(6zkNZrM(E|DckW&}6X&ezyvF!uD9*qDsQn!p_z$$F&OS*C*JI_F%axw$YB zY2+}sePv^|c(sDNJMp>d%$|Lq;}geSGTk6j93fcQ&W!GcHg3^g%r>smfz7 z znP_N;xL2i2EnTacpKbhz%X)8jWcbc^N$NMQRfa#wiJt z^;0U|*R(c;DxD1&cCvAY?o+UrnZNxLY|KkzkTxsRof297-!h*oQG=y&*o%zfT-0U= zeN5Jf)Q~D#exM_n{WyHRH!ko)e)NERhl#*{9~#i6Tf(KJ%Nv3(jp$|TBE>4yV0jEX z?5ZnjGa8?XmNNpnug`d5aP?yjm2bKAOG5Y3#I8wXH?h_`4ebtX5ubpgY+x>c^}j|A zn3kNBAKeN~^CQrS6O*h!ils;` zP;F`A0o`}rE_uH3dsl?nf!T*sPbRP)s(Cxb8uBUYMNjNIh_Bd0Kh~PU&jFih%-Uxh zf5)>iIjK!{;A`Rw6}f05q%fbWR?$-dpr;8z(X_~^KcZWFSmzy8<_F5Xb2g4ytOr&9 zIrA!8UFPBr@fY0DKK1MsTc(v;_GM6&xsCYE?YzZSpTl%!@ZdQ(F-ddza8}y_tE0EN zG`S(-rODh8rMHTR#K5IYBwPOafhNUv+!Fetm*sWAo#O`woU?d%fe-#Mw82q@(g*X; z#Iu8H9XG=%`8lKaQX1)};HL!rCSi-p_nnv^JdSP+xh5SfDMLqn1-9jjWto$^H+>`< ztiVs1-%De^mTMmqAA;LHW-sP3m5n9+Lh7WGR)tbX{VoS=`!z{ABwP>O|8gfkenX22 zilbp&tA}g;piR7%Ly+|_VL2zMR{r}|{Pu1gQ5Ig_5eDK!{Pvx6*w(hI#j-k@CW`*^ z%CQ)LJ@F@GH(U(aQX}h<7KVnT$oc7vdn8)@h^?f`~j*!-2ov?|UHr(5?J zR9HNGVPiI4Wpt93Frl%LP=CeGtzrLwPHhkafbn}P|61p`Mj)vm$MQdJn=OoDQ6uWq z;7ru1mZn^`Pv;h~3 z&8tN84;iNs4Qg=sqLl?bT*(tfYdz};kUw5gYxd&t6Ulsg>^v*Yhm#ZNcPxEb@2weW zU`sdMEgw|%N9}t*gTaDw{y2!Tt9MakRh4TWm%Y3*z>ME3_0>~oO8PWpq)^rGvcEl4 u;^475a=#$#*0rOu&iOyzQb6V{F=Vwf^-vf=Fj diff --git a/editor/icons/2x/icon_godot.png b/editor/icons/2x/icon_godot.png deleted file mode 100644 index d40c25cae73546f63600d0d7cc0eab914c77f18c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1743 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 diff --git a/editor/icons/2x/icon_gradient_texture.png b/editor/icons/2x/icon_gradient_texture.png deleted file mode 100644 index d002c8534c9e610030587d3a69bed343fb1a1e70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v~0+o-U3d z5v^~h*a|fn2(-pum?Y`uz52qfB3AAEN3Ay9(-&MV)3jk|jd~fS%Isq#D9psSFRO9p z-TeBB19wzI99*gy+!H7SKjIMjFVJ${$|*ba{B#VrmL0TZyIza zhCi58%=)8%>26Q-F<*( z@%@Iti)(IhHr(`2C}}Y9%`c5rH|$D_{1&v)OfpT3K`b@0%}8!>*P;Xle?=F8?*FxW Z8K?Ht|Gc5Za1Iz044$rjF6*2UngBEtgTDX( 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 d0056f0c7d2de8b57eae3edf7d4d4bab859ffde1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$qWpP+@3Cu zArY-_ude4l(dyCL<|N}MZV_Dg9$s{>mj-h>BpMcm|R4B>yyWWndGq_M{&;bqwS zInoLFM@r7IM!Y#%8Yh)7_efbBS3;a-*SkFi3GV{e-PL1B_%Wq=dpO$}CR1~NmKTby m0TOb|F9g?qS^c-YJZ{SM#97ggALjxCiow&>&t;ucLK6Vez=rhz diff --git a/editor/icons/2x/icon_graph_comment.png b/editor/icons/2x/icon_graph_comment.png deleted file mode 100644 index 3dedbfab52c0dd67f07ce1cac805f1004fbbf996..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s1|*Ak?@s|zY)RhkE)4%caKYZ?lYt_>o-U3d z9-YYv67L!Wrypr%=l`etSyV)%V3n$?t+3|0#cUG)#10*nwB=jDn^0)=r@7?8BLUf- wXNLp1-F25pOXzyH?`vJ0`tri|f*;HbyXPtBTz4=y3pAL))78&qol`;+0Qw;^egFUf 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 43ec1fa6d69c2ec647103f51eea70961458b8403..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 795 zcmV+$1LXXPP)0Wkq#oPmdmPH1I zHR*|NR3CR?319%tzPWQcyNpYvE+yWcm4Qo+${O?BTHw-bE~-A37sZS%t1hq}D6FX9d4Y9jR5;YGVkbaWinIP?NA6A>@Eo8C ze|Z(Mt)01N!TfmfV22<-0bQXU!-oCbmd=j`lM^GEPy7Z3#Q3@{u*rX$Skd|Gt7<$w zvcILQjlU!83jghYWZZ0WZ@-&U>ot~wHVxMW3#zf2_6l4D{CQ9gxQ^=a`D(-FIl%eU z+A;7bna=G~r=JDD??9qkQt8}Rsm}))1I?aiT3=%Dj3)|F`7LS zi2qfoaBzdK(r@a1Xxn=EX)K^rL=krTBHz3yW^N$bU!6r5G%=c8Z|aWuuouIViu@RR zh5;$?CFZ^uFJ}Hw{FBM_FHZno77wg*cqbk1TOw{xBvaKZu*b~nsV2<49)Ue^`osY) zifRHIo0h)>yA{8s-FjCW5jZ`vzXhOq^TnxDI^ShjComj=G;COBDxL3Y-h6QiV651a zSP)qDmR%_ox>r@>wsd|pmCo&~1D*xtb_S2PQlWd*GTd)rbFJH=jM$Lp{IlW1d+P5) z%`3MLPKLjOAYZ*cOuB)ls6Zgz^)z1SZWHm2{IBaN4mc_(7BHYPVnZf+9`Qw-9I3T* z^?)-h{#&$`rd6=pO9TTLR#f|d$px+Nuaak#UQKQreC&yC1g-%y9{@B1{OMU`Q=)xn Z>>r%8P`m3*<8=T4002ovPDHLkV1h18dvO2& 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 f29086e503b6459868f60b9177e0eee91d174315..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 587 zcmV-R0<`^!P)4G$ilF$aGp3 zy;yyCyptXe^Rn1acpe#X<$loUIR`4G&Jxk9LRTuKtP@dEjB}FG{L#K;bw9CT05CVp zgzawB%8Xe-e)So&AqdNzpcxJZgGQ1hcZg_DSupdxvbm7xw;fFVde-AOOoFaX;`bhT;&V;~W&0XSj@ zj2_}Lg+KdV3n9+?zTdAJGt(JXipLMgdjP9a$~7WNCk+|zkeROm_+$s1^u5Z#^*P$i zvMi8Np74Etbs7wq;nG~+`h1F+U&1~|Ml=-OVzH=a(bPKZ1kF%*UI4-)0E4_e{2kc8 Zp&wB+%zGE|a902T002ovPDHLkV1oM$1b+Yk 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 45e447050202931c72c0d9381974f663d100422e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s1|*Ak?@s|zY)RhkE)4%caKYZ?lYt_eJzX3_ zJUZWAG2}XAAad;E`_685gI!CT+PN3)PL`=|dcyN|;hU@%f?EoOvNAmvEnKkY{|~t* z?nW#R>TIR>Viwoc{4HXv_GhO@{ts|DR zo88Z8RuPZy!AA~@4wvQ2GVojs;bEB8SgX5aW4ic)1&M%a0f4Y`hsc zmuv5=x=Z(hpXK~&yBEGLaOYn8pWc#Bb}X59T0l4NcxJs1(D@9Wu6{1-oD!M-Q#5WAT+}9$ZUmdT$Ay_VnVGzrwj2Fc zGxwai-*3LT3kV^k}=*m|BQ0?W)o4d^c zAPDBXQOvgE4@dxDp8{)ASPucj06;h@!|geABEDo_IRL1^1ith>G^bL<$P0^#@^l!|MSDQDd9h@7rv>5%}+gR=i|YsVfQut700y^Pfs)HW^R<2b=3aC zf66lTCJ#lvJ9}#qSTL7*-JAKXHIiXwqCVypm~XkwYXD|T={}3)s=L8rx!Nj(VP>M0 z*xlyWow54@2q_-;&jPGjET{LvyaoWkQ2p(>L2c*ea6O@`yGEmNx-oD#9PUdx1n#W>E$hN2|eATGId!>|xK+l~4Y4;|#b)pBrn&!-uA!x{Bm- z>FiFDknP&ukgM(y;d6D0%Cf&`bYSu7>^DcuXhhAFsOIyv-A73P=F-zAjyShfDFPMX zmnucIax*uO{ptIp^}#~5+{dC(I84`Qde6H*#XXP)#7z=QBQA%($oW?@Xm zx_XzS;w_O7JHUm0kS+uer9!nd1!f6!1VG>zWn&>Ta}e}({S`!pS9aGx_CfCeeL$bW zT@~IJYP+w_1=z0b4Yd|)cP}!$TAD)i*|`SQ7x_wQG6b-BRvdQK9=G~kwa1-7n58&} zh&&Ae7;Dzr&jQ--s$ESEptlm3MnV9<$Nal!C$rcYv!)|bGs@ZQCSYo sa7mS~lqS8??#-EcWYlZ~!~YB5H@FW0_x%99?EnA(07*qoM6N<$g1OQ}j{pDw diff --git a/editor/icons/2x/icon_graph_rgb.png b/editor/icons/2x/icon_graph_rgb.png deleted file mode 100644 index a9c39f022294014427b007e2ae336194bed6aede..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 951 zcmV;o14#UdP)dBe6LCaQB#yJGTB!-DA|y&) zpnU)~G_usamr=w6L{|C=S+f8(AccScv9YbTB!ybYX;2HUXC|?Ut&A^=nXydlnWlji zoXuQ&{^$H==ALuzf&aRR%L=8G31AkO1fuTWC%`k{KnPL)SAbGV1-Jps1?VO482C;I z(YZ3vh1~`wuq>5AVTE!zjbZ2j#9}6y%o8>?_R+L9a14AN1br3oCNNLAoMdzJE~XhB zD2&G~^7&mdnHum&2=T37%uoO<0nA}pY9I`tUf0;#x`Sn@z`T?){@OsC1Q8SpD}k_H z=+4efoUb-}72p&ArP9nRVV)I>o_6Xgz)^rpy`5)(Z>s0Y{k+EYbKi;7+W_A6~B4N9-o~|Jj;>4{y`P~ee8c-5K{NU+AJunSev@Fyv z3_uCV>hvw+EF7@`4dtl>aA%5;XG5Fy0*pE9TW2nU`a};_W^-< zKoknBc44lahez#7dcF2Mwb-a!|4lTLr=od2Dt@)6#q-5fqq3f^osWj?UY|O3?Ew!~ z+@EuU_HY8ARAO-5DT0?13yq)N|1{i6OiF+kdg6R`q0$(r2Z|JDfUkfz2fbkwz%>19 z2%xRix_j9=QI#OALANfw>)(JuHTh31)VBZ{0J_dekf&-TyL%Omw(THojBZ_?4gwwl zEG=;u6hwcz-164iTV^XrnMoN3^o59rP$k2Q^UKF_WnRIydL{NqQ}<&{QN@#&ae;g2w4;~dCFm(weBTib15 zve`u0-sZhxkr~5qvMd(E%4Rvt<=A7SDYn^OEmEBEvN1-?%91_Ik=t`&&jA0{)&sqP z+X#HVnDq1Sx&H|G{^ES&dyKea!Ys~V8UZ>uW8pE*geKgFn!u^y5KcB8;f#&OfUy4q Z`wM^TQbD^dIvM}~002ovPDHLkV1kCQ$5H?Q 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 44812d8dd86d6238e71c4e4f1f05c1ae88618a7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s1|*Ak?@s|zY)RhkE)4%caKYZ?lYt@=JY5_^ zJUZV_Imp|fAi(myCpN=Vnt|*eqH$Q3yVox!|z9jdBn}wO{6FFr6g1_d6pj) zb+%xZFuE`8lHwz36uhm`)$itA;S9fDj|;3PemCVA!#v)Z zcL5NQtca|Oh$ELDj)=SzkvRZOM6$ppFv?)#5XfmFvJN~PFsvIdG!b!t)D;08O+=)x z)OH)nW!Tt&y*+PkY6_N?z_K77@2gCIz*-H~)?j}>cs-qlVi6`MBTMO#8SQp&7=Ud< zspRGUGq7Cl4Z8@fR4xHntwzKCA~za%aL_-nkDZ7HUUEbOCnox@W}1;Hv9N`%cAvjK zqP4l@v5h8o$G)>Ny$!=Zczcg?;@C~H)1-yXC2;2N49e0O)nj|Ke5LT`N6^_;9$&%HEFZ_6zU zh`E$0Q>E&kMiY}fc`U3zSQmJeO;ke%USAOmprZZih(7?=2MntN_W-}ue=Z`80krxJ e5qTye8GxS*nx;6YywH0YHBDuRPhcdew39P@r%QpN*kO zgnEby3xHnP<90eRwbX{X46+M5Oedxm81_~mBL(I%5$f}m(zR=&!d^hNp)QG}N+{^J z2s*R(j9aP?*cqfBMAdat@Uk?!VcbGlJi&VPs4~C*>kQ_>oWZ=9 z6IcW*3>L)-fi75X&=t!C`oO*hePLgLKCzFWZ|p5-fxQH+u&1CU_5fOADR3Jen}RIK z9#5qkOsgv&7~EZaLB`ft3e3a=OM!xfzyUZY+Ofd?BNsPIo)P5Qq1XTb002ovPDHLk FV1h88er5mw 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 b90b6a6190a225e517d93c8d8331e5c6e899149f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 390 zcmV;10eSw3P)*U#nwO}^fVR_5))s+cTlSXOP@q4&+R>f#kP_D3VqDq3)3bqQYB<8}|vgul9EcIM0eJ2MBnE@cWtSMO(t1i+DH&8aB- z?p^(HT~Hg-L`DuUfF?p<3Yvk?bbtY%pydMm6YZrR(O@Q304u*?VW5ayp!lc^*bN#F z%cbrKyp#c&=P>i8ol#u@JYC10_qjhrDL=1pdOj=bH$1&*EjmG??`pC24ObQV^S0K> zM8WYUP?}$=OMBzP*Dvq;1d(ykoc|kq7lr=3try7zwb|0rz~}zkxzfok!oj+@sY|Va zzsAC08Cva97Ynm0+%(Z(c3G<>VUZEYlZ~bKE*550`B)U*G`8B>E-kA(;MBFKKx_>Z kh3^6th(*Z#b?vr(0MDLgqa+2V1poj507*qoM6N<$g0P9K=>Px# 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 dff850df0399827073c8e3a22913d6d0c5337278..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 570 zcmV-A0>%A_P)E-<_Z*DJyddTs)LdtU=Rkc=aUE0V3$s$R}MXFkx%@GFR z?9f0f&(2bTAgiNMd+}2Z)fRAN9H4WgC&a%0=RkF3Tv#ITxa0)>uySoQRzn@=jtg|} z(Ac}co8RGVv-A=uA1vFrw>!mYuB#{Ws?>pE63{pd3J@X8RU4&FrmF+(Ago|nBVpG` zJ1k;ZYX@N^E3n!qbr5a?k*g-D!=d!MVjioptEY@?%`{41)4=Z*!bb+~9}$?Ut{UpY z9Ru)oad%EsULRJRhb^w6v_=o6B5&JO{Qvkcs}w#A?eItY#dyY5@AP4HrDTqJ38OOa z%H=-Nb`Vw!T6g7h1^zX@Iq9lN`{Ji+I|$E2vEIO#J6NqJ!Qht<`{e&G>e6RH&H993 z0Ix)ZC17s?u$~OO2jVxUcM9V9zzd*%44^*nTn1jne{!+=6Amn>8%Y1&N!2kdN 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 7363a47db3ca6f5424496a61a13359f53a8f1944..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 565 zcmV-50?Pe~P)jC2;&2aTH;tw6pib2Zk|p|1CtKh$pVy`v+YilUu}>unB*?&s1@X7g{) zGBMKKm4<^^1&FxD2S~oKiC|;tlViezN#xQQ#}_shY&`nnXar_bE`4p$H#QP%-23W) zyfGTN)QyFyFb~+g``xh-Zzdy`%3qus8vvVypNsNhT@#tqoeP0r10ZN^7{e@^yq|g* z6gCJNVK*kTZ1TamK(RqkmIrG~;N3hLn2fgXBOL!>K zLr+jo(7|`;DhR6(3oeLcmymU*g9ItAtv1ae{7$<&us`-cFsuL=^(xt!ikiR~u#ef^ z1-e5dYw3KeD@MIaHdN7zfFr}ua$_fy1vyhu(*g!?I8)J$WIje)ohz31ER$;slS0sU z^|#vtY4YVs+JRd&^xTFuaOk-WA*fpcf5MD{NwCCVFmOwOcX9n&ED`AYB;Z5!yT*pV)b z(qOS)n8~$ErZM<0XXy^Knh5&t1oQu*alJ`_?pVS=^DK#E4H#SCM$TS%CDZv<*9m0- ocmgJW08P+5Ix0LpK6!Zk1bDA%=3~{dX#fBK07*qoM6N<$f^ZzD^Z)<= diff --git a/editor/icons/2x/icon_graph_time.png b/editor/icons/2x/icon_graph_time.png deleted file mode 100644 index 3cf9bf2035cd5c538389a6470e9403694eeb50bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 819 zcmV-31I+x1P)P$&!eQKJxI?I5I$u9%3{m}AQW z0_9>{h39!c4?knr_)lo9XWA9hTHgYYiQ0(hcJ;@$ zrxmBVm$cTiZHUd)XiqOI?Wr1Zw%EP_aMi1)B)ZYTILqtoZQYn{8rQSE=`VYUKqa+B@xSRk0002ovPDHLkV1g*cZ`%L> 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 e339f6a1e8c2333f7f5022800f383e2c62c99e1e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 482 zcmV<80UiE{P)OJ@u$+L)fyGn zpC>?s%2MzGT3&!)-RuJh=4f^|bFWM8M5DN0H92#>IhkK3135W438b@VJg<&R&*xmR zWH%>d{~h2~!$K=E>-yPqHZ#0^_uD~PeYuR5*3?o%C<7QZmFc0KD}bx!%Cr@G34n4h zhQms!zU2<`^^Gd!PBVZNTkWh>bkWJ8td_Cl&3t`h)EprrPMd#cNL6g1s z`n`o9xPFUXBB0c+5A?s5CL^qfP;~lReZlZea-gqorexy-ICl@RVyi}^>ef(B+r2S- zee**s^T{|2<|H|+yXWEeLTW6-^T6!H*3b3_fmvrc-LRYnjO6#|BQw{<{b@;0bsVq1O5Nv+!3xC+C0g Y1u-)D0Nu?+z5oCK07*qoM6N<$g0|=5bN~PV 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 02e791574870fb7f5fd28bc1fee6c179a711587e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 307 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s1|*Ak?@s|zY)RhkE)4%caKYZ?lYt^HJY5_^ zJUX9VwdFeGAkg-({D^kO)7m6$p)CSijK$>KHgxRm3Nv&1;>1|YR=W0z%0IQ;mtR~z zYjlSB@PR|?-M6s0w=YmVB;wGrFr0fkLnv>~d>(7IXWM_a31l#Ylo;$x-f6)apKyG0 zVvX*cwI*I}`wl+YIGLk4&Gt@={2UqIDLpj@b>=73t{2n0wD($q;29~MuE@sJ4VMxk z*N9{^i?ZczbXvguCi{ZuH_;bDzd3dtyVoRj!#jYxnky@be}UOF#`5+By&Fy?x*z2{|VNFzBvN5Q>s=2{mkI$>gTe~DWM4f DI*oj| 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 857e006b6e5d9e21bea94e79044ad734b991c8e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 513 zcmV+c0{;DpP)8qO4|0vwLVe2bM0A1Ob9JuKLtv9Jm2u*`tc1- z%ZQb&&22H(tb+MOK+E(KXc;h{h_Pn1Y;A6vmJu6TPzWsn;v9f50Dw4URh7;7|`39JdTtViw&XSl7_Z|+t z{-dX9SfEIZEdZSfG-p1pPm?V^n0ZFdwFA8G#pl@;OVOQM07ZNWrEFwb@agcX3@Nkn@pTuP1q9I2lHc#uL7xXtnye0e?hO>mh`-@$bJZ35$9 ze(K=OH$k9n9`t?3HdM?qu;5qbaiC~2x*lYLWWWw%2eNTmb-_TJMvfh10MH~D>VkS9&~%Vxv|NOL!fy5uF9s|_So#jlh2%LP%hH71MtCQ| z$B_V!K0GX=l>etg|CvXB0@Hn)LR(O`#q+?5MXUxTz5;Yg;`rb zL;?2G&}x>tlrWF+rI{`U7fg2^Oj@7_r%ozrMHFgq_O4KW~nbl!kNdqiM3E5 h%2ApCEc|tCH=mm|XL27%E{XsE002ovPDHLkV1hYUt$6?d 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 38d355ef06b7f748241c249ea6c505cc934bde0d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 431 zcmV;g0Z{&lP))rlJ>Dfz|%57@f>Dq+BH1_fFSG}>v}vOBB$^Jzs_eRUBiRce9}}@cHfC*k$HnRiCEFV4a<3-gvp^?2A(vu?~+z$zL$ zv$nQK0#JEMQz-)J%=P)Qeybo6DYV7>GvYtnN+1}dCcIacYN zJ2F^*vYr(dz=R5^<>M9q{E@)=vsYP+0A`|)S~?NHMglh~wX6-mkP7bNse#zg;6|;I z)qtEy6x@Z>z8LgWn%Ccolh$?~s1;AD?Vwg1wH^A}!}V>`aW0SFPptRt(BKh}9A?LV zh@?!9yC0F1wu9mqD7XaL3SAIed$xC>$NBqs_hM~k?1!_awiD~g*X~&B@SJ-sy?W5U zLmlbFbl#Jcr>7_bhYTw>mYTDng8-TQv_H}^$Hx-^->lxG7_Vddt{F9Xq$ zZ)xV@q$eYIys~oh#@7HE%Ckrp&v^{UDW-Ds>P{aT+B-~Nneb%H`ccWAeky)HA36x& zUO!t!@}n`s?nMFuxC^PO`B3S1k&mRbxr-;OhGu|mV8_sW6wbdHKLK+cx)GeqDZBsx N002ovPDHLkV1nkf5o7=W 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 0f2ad7a83ada8815b1b29f3da0190602334e9508..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 549 zcmV+=0^0qFP)W^aDy1j{q@|Ee-E`w1(m+;H zCVm||HLkK~1L7dM@ugI#FSH^C#BKx^QC!ro;7sFjp?T}1DNZIEJ)3*(f#G-0xo`*m z^-wq2+z)&uwx*cai&a}VzxHSvpz9_-u@E>RIE8rda<6t{s-U1VP%mJ%{-%{b+V9Y; z1{@5cX12b&n=je}7f;t8%Isze#Wvo)3M#pS0Od3F$kM2X(RjC&59$sV%4h2lQW}Lu z>*?fZ3Itd<7e=x)YN*kAJQ+F?1em)NMm7Q!YJ7;Yqep@ObC<)&MvhmFy=FGF_tHGy z4;H<|Ld6taB3uG42Jg@65^#z7d9Ma8)=;hgjc~Dj@e*#ITwQ%~s6(q86tkTAn4XG; z?sa!#M>>rd0JQ>Y=Pro0#I64JnAq6~e3#I4359_>?6@CPFD{20f9sDO>Ff7_k7xpg zfpW(z8#Wf){uua>#st+FKO1%=xcw>cH3~DTGfUaAk>HEZfp3<^z^b#?Cc{$T=GVYS zmcBErdZm1KVr&R}_I+hZY3x8~xip^-HU!FaCxuCsQYpNj7d8a)`=8gtkSbSa^Tmch nlLf#xNo|w6K7S#9?Ei>gVU@rg0))#T@NV~2mb)U!A-a3E+CpkrPq5L;)P4ho4Yj8#qW0S^W69I zyw5%NzA&J?VESG^`ME)XAUFDf4guI7bV$JLP%#C(z|q}-b+J@fxoL_Hafh*b@ANMK zK}5d)GoT3WDZ6^d7#|dn{MKnO7~&4Iz=j6Q3QN_7KUMSsXJJ!a%arrlcU*u?buBM& z7B>8;V$b5bExPLF#)GX3h&%ws6lPBss*idZdBOB7$P(}k^!8r+VEKf&VP{^~mX6nJ z^N2hJ#(q~d->dRwOyZV~f-L>4*W7NoU4fQ{k3qjCmPWV5S~LMe*>k@MYN>%l<;=i| z;+hY%RVZ-jRsG8G&fGV?a}4xia!uh@$zI*c3drb!vSke< zI%Gvr6iWUh$i9T#dZ|#k+{@4Sf3*^#a4wYm*@W?kYVK|*c>ztpXdpYrYpGRIS^~8F zW3l2kC*IfVrNYX?G_OoYTektCV^9v*`Xq~2CZJ(}Vx?aH6>8i!up(2Kj`_In#;q|LPYv1i3*gF0000Q?iBrR<)c@2u;<1TqPnIS3Tchl&U1smpYfj+1ga31wR}>&HWQJI)B;}1_l<%+@!L0Q zDOyg6NO~G%?96}ws(RtffR!BU`-VYP{MJFn10aul))X-E1x%$xN9cr%m9cUy~uvA}}5gXQqz23OVDpW!wUyKHQuc zawY&en-+F~yV-m)ukg4u(es81L+^HmFS+Z^riEQWMtxwQI&ugCV5KlruQ1@1>i0>b zzYcz;iUYB5dQsrLM{^(Ik@=Eg*NU z?tH3vFPrbZqj0@k&B}u>JS#R(ck`<~LGGbCa-;FZ4>!J27^+9a_qXKAb1X{a8fe%J z#KP&t6P?=!5AiX|vAh64@GwxRQGos+g@OW47|2x+qtpWQG!O(cN-1zZXfndn_3fSp zce%dZ(}2iy;PbE>LUaR_n*k5B*p{)px|QrP#1h*!7J!y2fLU4n-q$9oAA!ay4%VWA zV_F?XS2(>XrqM324D9^}&>ryCF|Cg7<~Lve0C2PNJC(_YKL7v#07*qoM6N<$f_$V! ALjV8( diff --git a/editor/icons/2x/icon_graph_xform.png b/editor/icons/2x/icon_graph_xform.png deleted file mode 100644 index 4d823e2aa9ef7f449c20818c4a7c289a4de12ac1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 380 zcmV-?0fYXDP)U} z2`qAb)>}&5k`4>CgD~HW&1lDLY_1WW__X4{cV;sE!2)>meP>shRUd7aGKrg*3gZ^B`UX;>8BufZX7NqV1!n;ES)y&p|iz^ZLu&cVN>|Av3xu<|W!`{!?}KYl{{4ARx9E$83~ aPoFQGWLnv#dr=Jl0000o5qqa@Q-v- zfE_hl8^91Y!DVm;XZBP(dGG9fyIDviE*)DG?on6?U}${pU*GEu=dNeMJTL$Tf?4I< zaNArtHx$f%>gJmh$NCv?TRU+7YGrQ%6IgF$C0M_b?$oLO8=G=`2PbFiOc63Z{T=( TR5INU00000NkvXXu0mjf)m@GG 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 06826a1ca2513fbf20f054be62fc7a3bf0ede196..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 467 zcmV;^0WAKBP)t0TNIj?@>)cM6&my>bo5Y1lZaXZ|CjY7_#UL z0{~hhgNu4v4|oQ?wkLJ~#J(YozZsL;o`C|C>{?)45X7u7ln8*!t}SNoKnCW!0+@=n zoC!TebHSP_lzp3g!7~uRlywr#1#6x0(owM5PdhBolc}Q)xRMF?Ewvv%;lRQ#Yjt)L z@Xwua{DH2Uw>_tWa%Q*jztZ3DG-a*cf~5xvLy2_y<=sIuVo1{}fAI_i@CabNGm)y9 zz1?l@2|vhWGi%dUJOi1zKt$`7r46Z?RVjP9Q{FA`OAaN6j{#f_cIA@48S)N{WvNXN zTL70Fy@;+^6$z)GSwC|uTFW;u3GnC3O%Fs=@HIlG!@&NBeE^kGfjo)squu}j002ov JPDHLkV1k*f%)tNv 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 d274ad99a6ede036d6ec9679e9aed12db94e65bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 560 zcmV-00?+-4P)|t}11;NuqHl`wsfn(@E1P>eRBEE(te-F~xE@=;K0^;xTB+rv4AD-lS z{_wv?dA)e=o4*jb7MP10JGM4gY=!`1d0-!oYZb(npa@(u)aZ<54t_eURWMrz3Y|W| zc`o4oeyw7cFyK5kt7i@#y!SmLfkhH453e_0X9^zd`kskbmoXF7@{Q*k-Or8;e%|&y zSrS85E#K_LMh1`G_#P;UVbuq>lGsS#(U$L73MN@~_D(uBH28JH_oNgItIkaH$Dpgy z{HoXIBZp_Pt5WP3u?vv{u>-N&Y3)zj(+9C*7uQkum}8jBY2>IjS8Qzetk6&sR2pW* zgJMuZ_M&s2OKBUF3sBf9;v{=QCl=e2zs?Z(vRPX+ht1fb(De_a=qfAsrW)&m<_`5q z$CrXoVu`Mz3|x`X`grIsXAT04KMq2y4|?1m9ck0tT?j%;LCt9GeNRV6-ldcCK`4|! zFFJ;?CD4LQPjdkQ yW+s9*DQIpW!0hdyZ5mqyPJuH?Yk4^TW_|-|O~MyOI%`A#0000ngpdQ%52?@U^YioBC*KhObc)4% zs(A}AivW!y)0i$9s)5DFU~l`JI>lmMY5qdMWVX5?ey;SoS0h3deT^cm1`C;9- zv<~Y@HE;6mYy53l^6YQsIwL#w{nm_M@KeeklVRYgP?Q&}=g8pXp&~LkVW?TbdJe#; zGbj|j^Q+~CAIEi>lOYJl_iH$oIT^}I<*OgZb;0_*Gw4^#jb2|Asi1wiLI#Heh9<$Z zd`(fLdiTb0-5In)Ns`K|%QqI91T*qgKlV_Z7LA2EW6od?&B?cq!JI%7MP3h$BGr%e zU&{<^U9^q{6`L>=&5PE4<{&`JHfq99H2tXq0gt3&`Den+a zaA|M^0YfOHo+&^xFmPWOp1&`#w_&+g2)9pXk*r%?nPHjK)gUL|M z@gbiOI-}Ow#!F+;&j2Q#S?dTz3moiip9|LW01^P#&j4Km^hqdM@T=v<4ev#>HAO8+?=-oxT7#(v8dB5W>X+BmT|euFS^nx62;dPw zsO1P`~vz~{x^$awaW5k~~HxnKNQKqg`P6mPf5BmUkyMMNV SW)>s>0000 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 39e25ef9b3a8b9ff8cc1934b4dc69a0975fafd58..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 601 zcmV-f0;c_mP)RfA^2mtr8H$QVEEeAhtdLVJQ*}MJOz+Q7}pw zx-g;+o#==nnhrbwAVgIpQik>gy3srUq6A`-E}c+gA4BZMb`3-dNJ!+H?tgdszPnFn z8K#)xUx!Re;5m(3inNAgdcU~deEX~ViD3InQ7GA|p)0DD@`_dWAS{oI=y zbInecpzACh0Hxtej|Mreo^Lik0(2XVOP0?EklC>Pv)T5X<#x~Mkn{HyRu5gP5|JIc zRz+czoWI}hIh}3KS?1F3K8k zIosHnBwYXIJgkQsFQn_nsCk*n-FczanLVxN6G#*ET16j5vIbwFIuIunqxS(h& z-70GC0bQUQ#-}%gp{;=gwJg1HuM?oydb$N{MQ_(xO4LmhgqC?39Es}`qz)VapFr#5 z4ie#H!-}j7+OD$+B)3dm=Ysw09dPky8~hF?@i=|0f9yIl1<%=oU7#0B^}^iW5uBHe nV-adZS0>b=KgSeP{6F{st`5f`Efgga00000NkvXXu0mjf6ygoZ 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 32802fa1edb528e39bebedc78446513e880a9058..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 600 zcmV-e0;m0nP)raNIhs(<(qDhJ4e#|2g*@pWpYw zoH_qH61d)dMd|>8KFQZ!eTXMq7M~VNks7c9tSIbtJ#RG%c0F%ZVec$1wMm7V$KG1Y zcQ-rgWFxJkPPXN{o6TcyEz&Z;_1M6!OO;Vqv(|?75%C;&mojK;X`I_qh}9v~;0AfGP!qLbNwx%27iVeH1HPP{S=N zwFqWgG253l1F+O;B&3ILwY=C-C#&ej_%PZyH{mFhOV`hnwe6!{!M6a&kEE+t{QT_z zBO)xtQu~YcayxaxX(&o{0PM##Bc^PLl*ba4_eH4={<b4x zJ5wjj*Iyn02hrYlpG~Y2$5N|d#8lE^f}UDF^**?*BNyBUQpbhk5Qg5Wqrs2Bmo`_H( my5&M;U3O3YWsf;?X3uXMg~IYSjv}-G0000{*aR3NhQoTLc7V{-ICM`ZvxkcT4lg!~u zZ{z<51k16p*|50DHpK8H^eU?y=sD)Dug-CDF++rua!z~JfX=d#Wzp$P!ctVMMI diff --git a/editor/icons/2x/icon_grid_container.png b/editor/icons/2x/icon_grid_container.png deleted file mode 100644 index b83b1f4347f7478c838f0ac6addf409e33831981..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 329 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~Ro-U3d z5v^~h+x8tY5NNfx-r~ZNb&g?qLiCbeCBwH-L~{zZlFuX!Fz1% z>@MQMihox9ocL#6x|=fZ9_yC3I^SMzo3vc=0`n`?V%f&ETvt*=)OK4lihq({5NY(0 z*F`Jzg5;K8`x!2^=-Ze3@GVeQJsyz4DZx?3IkX*TkDbC?-;GvIlCju*3_b}{dhu~`dlqvPxHir@=j`C`RCHz(? z+LD(1=5?&V3eJu%oPVmfNZjX?Xg%q-Y5{W+YYJb7@!H5N)m`yx&)c)V->>nHkvB9+ UJGqC+85j}_p00i_>zopr04Q{VCjbBd diff --git a/editor/icons/2x/icon_grid_map.png b/editor/icons/2x/icon_grid_map.png deleted file mode 100644 index 83baf36c1b4d33dbbd103bd0c34259d4411e2638..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 378 zcmV-=0fqjFP)Co1<_qR;vbePF)fnS%f4ct$s9T5a$04*iuBudl8Qvj|K4@yfr8<5aLVka3Zz({O$ zaw7ou#9@+OO4ULc6(hdk$bfk}rv-{>}Cn3&cJY%0(`pJ=6|%mCm#@3F;RPQM@) zL`#Qw0BfHb-He|1@Lz{a+>> Y0qf7Uxcl`3mp}sp%Z2>L?c4VUy_J3_s^G9u#=NS! zINj~zv_sks3`_zJ-y75Nwx{h_zUiMVP@Z8cvzDDq;X_LnMWA~aJYD@<);T3K0RU`_ BP5uA? diff --git a/editor/icons/2x/icon_groups.png b/editor/icons/2x/icon_groups.png deleted file mode 100644 index 203d36071b38bf8eb06d694a9d61b0dca58a4308..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 353 zcmV-n0iOPeP)f9@|C+Ltn zbdAJd)WB9n%52$PK#eHDksuH$e4EYVe~)Jwn3%Y9M3!X_&bc?>W?=6^2=OSi)*E0p zuz5uujA#xp3q~{tK-M?nI2NZg)LOg!_4zfhPnxE;Qp#80uH0H#YnMu?bsu^FQLm&r zf^ygwa9w+6YmAvEN%Gxb?$sZC1m&01hXGtkDPOwky#e^Ev5EU0^xgn%IKSjLeOrLl z!D-HY_MmSMV69yO+lEI!VHiGl)q4XdrPjunIq(7OfSq&hT}ru#qG;1qUvcmno{F>k z6aH&pXhv@!0P+$2^FRpk1Qa8f7p3>a#D((}j3MsKt|*uvmcX)^|I5r|ccE9WZVj&);~6M`j|lTIumVOF^9@h||3-*0P`VhU z24YA}U5QZwxxzdb=6Kxii9m&IfP|~e<`SZ?n0sCITHfnEbN~hLonBT- RiCO>v002ovPDHLkV1nzaoxcD8 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 2d93123f207a7030d13bc856d9978ecc4b08e71e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 366 zcmV-!0g?WRP)+GLW!3->c4Vm9Jvy<78W}EGZ0n4-b04{+ZxUCRh0bAgzMEo7t0Usq0L3{{4 z1~&w-4Ai@54M3M6-bLc$+PaSexSnv}%0v=*{Oyf5fMSSd;w2Ex#d9EP#LWvK=~>bu z+TKfAOZt?wnRxeLX0J^E0z@b2F%kL-&vftJ%-%eH-2ee%Dig7}BQLfeYNEK{E(#cq zWi2bC*&hHa9Tr?{dr50Edua}Esv>k9L5MsRAAiHU2xNqLs<}lE#D8ltHFrm~_{ktj z+G{h2n%-Uw!5 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 3767cab1cfaa7d031e19f9b614aebbb3e87fd7ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 307 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}8o-U3d z5v^~h+ww6wO0>@(tBpu}b^4 z|Eil*Isa!`m*kJ~l@&&|I;Y*{A9vtAvHVRb)3sy9hxgsTw~yh@8FL52)W_;81Ekkq z(ljk&xHUE3`uq)<18i>bZhDtD`sr4GwsyJex--JG@Y&r3Q+LQuE=UZ1^INaO|ADp; z1ET;OHT>S4E2O7%=|A_L%NwP)a7~zV;Ft5Wh|{Nz_SZM2w=Fot|3iL5)(55w-)~3f w?%`TtDUg~V6M6cKROs8Ovwrhj`yUv~c=V5xCS#CrF3`^mp00i_>zopr0IRTmg#Z8m 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 3e4464f33e65134dd3c537cb8a2c0c2def91e09d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 470 zcmV;{0V)28P)5L$UzFZu9K3 zu9l>lD2OCCOARDqz#N*nmSfeJIk4BvOfAQ%nL{%d*MKjHVRuY`%LMc$!mSEdym%yg z0N(*P0`RD-rQ^g57>-p2lR2|A1hDPV%&!q^x>B}c8!*}27(1d5U_as>Z<~sHppiC- zWdHySyR$n}-Z0|cM7Y&TR(lPKk!T%aVs7<6R&k z2GBI@&eNi5g!$@N27b}i;((b851;J|X512pLEJdWmYP$OiIC`A2mC#kv3iqm?F{(- zfi8EqKI~D02xkED0lIf$zR#$9qmlNtEP-qe_)ftz`IW?Yo{6r;;ILQ|pAjVEuag^8~0tZo2$nKDt<8 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 6186d237428348dab88594c41fc96f45bd4897dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 688 zcmV;h0#E&kP)6Xd^#Qb$REvdZX59sFVEzMudCbO6^^{aIHiWRF z2XF3W-ZVn$EXhF(KqKhs1pXq1#(7qB0gSI6DW$Ndv|CQGLcLt8_jmD zkXQ%;*tdA$R&4fnemb?WYZ++(ZI8617l5c)27r>}HQ#og**7O)jJPZP`SS{-NoS9lu zxjE9kB0Tj1z{N4lZN*Q?;d4EZHE(?PDuo-s!XtfO?KP6)T)k67Tzc30a8-{S8}JQ#o&@TY5|i`5+kJh+XWXv8TwZ1V`#(4>1#$#+@R+9`Nj9 zFqXz}FXzqlw-J+nOp$LB5^<^8Ya~aKNj?n%Ai_va&=lzaea9JrxuTcCQfe3kzzUYV zUhXs_V6MP@^;`BLqy<|5t~(Orr{#YA{pRQ5fCq{MzX}2%!7tx*Yj?vG7K-*O0OBr4 z?K6Ey_IA5=Nm$}1PX32vlNDXbPp38jtptT=W?e}&L*P#Uwokx#n;A9Te4>da0)W3H W{Q8RmiUzF!0000IRRtcw}qq9#UN3gk*qecJH6 rDUiLVDbV1Sl2qw|70hl2H5eF9uH=!k$?Gu&8p`15>gTe~DWM4f)Qc@y diff --git a/editor/icons/2x/icon_h_slider.png b/editor/icons/2x/icon_h_slider.png deleted file mode 100644 index dee580d90996d813df5ff1aa26a9f4caa600b090..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 424 zcmV;Z0ayNsP)ZmPQMO4ooN&cPzL&0lA!Bj>33PH8=a-%)1}ig@lCvj(EXEzqupA z8GtI)a%TS~&PGA?jVCZ7HIN)gZWPB$Q2mq_C@jy4gZS-=1=TmR<>AD&Vv!BRMPvh3 z^$4^J+8xEw@Xvri$J-l$PS}s`o`;^5u=@TA#5JQJ=3PJG?;_!n=v?-$^VSScfTEjf zS;rn%7EA598*rOH0GY`Vc{SE49AtN&VeB5L_pi1QPJxw39mQ@OE|u=RPj}{-??O$h z8P_qZ=!#3b Sa)d7c0000o^soy3t4`KR;wl<$j^!N7kH>5JR>*5JB9-Q2U2_u)kAgJ+DiQdB({*Np_$rTtmB6p? z0usgoJK;Gc%uj&u;bPWUAUx>YfH*Rs$6?U!mo8u?VF$MsSWAGnK)7!U&m{l=VbF<9 zdd>vOOf66g=y$>;w0mLt&bKR;^Y5zAPhe^TED~lsWdx)rBY=_$_;WB_W(0bEcP6CQ t1ZVx9X$V!<{Oa;aGNE{B}f1O002ovPDHLkV1i5-tBL>s 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 a334dea4e2487ad95fd2dea6634ac7ce54263e98..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 425 zcmV;a0apHrP)L3W-qA2QIW81c$kTWMyDy2RECj&y=eTe-K1VIjKQ5z!GqhoSDr%c-%v?jZme`k`r>8~~J3)vfp^kIS?P?dG!^&v$n2 z@Jc_sb{n_L7_MRQ82U1^)DKU_?kWQW{Qe7W$mRR@*8{$;-iq1#mVeK{Q^1oSo86&r TccDIP00000NkvXXu0mjf$;Z9! diff --git a/editor/icons/2x/icon_headphones.png b/editor/icons/2x/icon_headphones.png deleted file mode 100644 index eca62b93725bd1f6f556609fc2884b9af3f9f710..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 620 zcmV-y0+aoTP)ga zWovDN6D-cD|w6*pffTK>SE+Y4WAo!3a z?es4KxayR?0+@Aw4lj8@Qb;a2@LvG#sOt58Z~*Xqe^XVj0k{jmCQ8QuJSUmD>6Cym zW! zpSL~FTNoCe$SnZv#PvyI%$XhmYwhJ^mxwI;zQ4I&diT&Zl55?!X<7h(UaxViwW+3k zCN)b$Vpj4D9CrlXkBXi#D`v$4A~KcSQ7V-_k4m6eEPm=M0HB!MQ7)H%j!Gb7R?PBn z$e9S__9_@-QXdkkI`G$1R{vf(^d~S8mQ0Pd(6(W>|8~6x0 z0tfIBC=kghD3VB_2`CL_)?mdJN?}o9W6hUlomjh$*M=w*_({{e`R#i@&A$a6dvH`z zl5x(hliVP=O7bZHc<(#Lm@@#!<#PEuNe#Zayu5tX@AqGmTmkT$q>*$@vTlqyE|p5B zBz>X4#l^+Cq#a31W6jC-?d|QyN~LlF07;V6#_^J_thI;ba`|L9Z?d5GzFO2gEf@wt zP%YwygqOVcIX)-wzhfpa6PO7E_bpKL02Rf9ufR;;Z)dshzkT}}CQjQIKG1dK7?dcEFfQ4}4K z>}TeKMx*hD+srlY9aIQ50223S^=wsTRj^2LPON3)b4I_r7#rejreE4ND}e zk^)IVLG!!t6FtSHBuTbN62RDEcj0palHQZt1+X^Ak=!InNyF%gr2TY$Vt%kagUD?` z9LF7!`rGlai{>$<&R7+xo$K>&6Xc9?lV)3m3BLSacI52Y2Z)oNM8FdhOJ2arji zH2^&EJa4jGE(Zr@AQGPia7uB@JJ0jZbuy83g0?VC^HBwBHx0ji3 z$}u8x0bKNbzsvXiE@r*};9G3#Eg?iXDX*?-APmDXBHA`gL~bUN>9Z{ByF_~02GVG9{{Fe;h{J$wE+N@yzqU0E{PZf!P~g6 zgD{|sOeUk;U1bJH}>M&fyCYlDc67mLNO?eZ$OAu}Iq6SDxkHVmV+Zny8T zZQE_d0mTxmtgKvO=9j8`2@4w=8+SSp_Dm>*7$KtP*!i>=K(oWP1~X5uudko)@9*F0 zl)vL05JHSZCzr(=0Im{IHJWfkkY2|C=7{K7Qq7eOM3?S!Ogv=fE8X4QuT+w&Ah866 zLSc!B?n$8rfNKXSt^^^(UB_`k$8kpgt8mOj;_Gz3Ajfgy&FcYJBBB>T5L8N~(x&`p ztyasLra8{cmjU!d;WYdl0NA!oNd{z8HBB3~ENcw_T-QC?Xf$R3oY*g4)c^ogx3;!U z0)Sx{pE`)A;0A^$1(dZ{*M$@!>TE1=D)H*%T zrUbTa)AI7NrR(~t6#j`nL+g-iG@sAc0U#}3#y|NYN`qYnqSI7j;V(qAW44E3SgF_R z`Lz7Fo=O)0zyuKyGfyjUmH4fDpi+XW=XsSN2r2-o2hHEhKvmPU;c~egluD&dP1A<= zNSc=4*1#_S9{@~vo;T2%Y5-ta)|%&e0{|ufe2lnh`8)6%+J%Oh)u?7400000NkvXX Hu0mjfAkT>5 diff --git a/editor/icons/2x/icon_hidden.png b/editor/icons/2x/icon_hidden.png deleted file mode 100644 index 09d38c5bef24f14b5c4e452b0cc2ca24bb26d62a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 640 zcmV-`0)PF9P)>}F?0(4|&CfP;3Gf|NpBnxrRiK^IX$Xe-Hi9om%Bv{!1qgF~L_y#IgaJqa{4 zG&D3cH2iNQNzyaMEW~l#9#+pdj@!nVg(OLO^;oMq`+1MV{vg@S@Y{JOc2lBvl=&hVOHC7{lwmRJEt7W0id%pe)O0wW3*L%$0wgoTlj| zVAl0nYoAwVaRbJf_rQgNphyCo?{qrfPBT2u^E1GQ+GbaSAegQU&n>Xl-c!}0viH}u ze3}n3j^nnfF1y23wXoLSck>Pj2*YqgM3(l=YCAK&@4xN$`{O4a-tYIvecyiz%(%To zWGM{8je!CH%CcN@6jvgqilSK0vTWY*9YIwk%d+{RDAs|gS`Uh%*r?YWYL;c$b;*4mq47{02UE!=F8P2dMGz9(K0 zIdb7i;IW9Xv$Ipx)pL#$4)9Y|jq5n{1l?|TT~#jwUxCu|yxStO2<#4;@CSB9WKmUb z00r>9EX&y_iq_nuW2GBo&RJ`tYE@~PPK=Czw!eUtvMd*)DB6UBr%i(( z_*kDcaCgVCwY7CtRp&g>`WwTr30*Fx;C?TG8 z!U5oz25yfVJ~BWn2xh>1$MhK3j0Av7B_XtaYI+2`leOAfBmg>{&NFbuWYRr`(5)KSmfp)W53WYbMQjaGM9}0jgm2(6>NMZA7`;5Ik{vpJf zDWb2o!w-di*#a(?V>%x9nCLEmiyeEDh+c|%y-LO6{$B&&m6g-F)mmrZ(tybu!gXgU zli9Hjz~ypGClYT5h4(=;8rN)9qSuBx9`_Ck2LJ{x>qO##jqpAICb}0ITbHhzlFVrU zuR;*vxns+0!}I2VWS;NtH3xyGv^FoF3$_48{wK68vjU$0Om|-tQI&l^4=G7$T@9`K zXbYg%1!{S@z|3V^AO3@Op|$7a^J{>y1)^TB60i{gz$p+t@8xzMs94+=t~(nML{EK( xkTRJakxX7CpuoTu16Hrzj&{Lp{Z{>V^%F}Ezw^UK*(U%1002ovPDHLkV1i_f((V>i$=PX#B7R0eqDz6L3y9K62nn^Q z2#E=)%!mmg1Va?TT97ETOA%e!tCS%!zK{y`HW{kK_ZWyR$F-fbbfe#N_q})TefRF& z*}xh8chE@|xvpCzqFEut3;+pWyl2`2ptRN-TI-J!6BEr-70_%pFKDfwF!Le+V}QFR zqW44r-cxU%zP>4ueH`U;+4o0P_Ng=P1D>(|IQDY z`Jt5ZH4*8gbEl8nI*jGvg z)2ftmVORl%VZ^U{Sf#K6BO@bA0CtCnx7+g_8bnl#QNM#hSOLqj+KonIj+ws!D5S({ z6VaSyS?z$3QVx7g4a2w`qugN7*8`vh-fiJZzc)=0Nb{! z0ICVGsy*AWpp?1~;9^8jx6|o_--EQec!)XE|)(i8Hf5MJ0Ua?y#p|nmK-?U s3bgR|xBLfy%}%GY9_{usoFNT=08@?-lRxxz@&Et;07*qoM6N<$f`G_vuK)l5 diff --git a/editor/icons/2x/icon_hsize.png b/editor/icons/2x/icon_hsize.png deleted file mode 100644 index 3b096dce884a1c1be2cd806e20034b0f66bde6aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}co-U3d z5v^~hIC32_5O6h)OPLfrEidGbhri|I;1^nt-Mn*`Z&XoKI1|lw>$}&_!gB^ZhffG3 z?=h)3zBl6BnU!V@GlTUWZBZAW_-g%s1*OArN7NQ<{S(geWkNkCqneA1Iiu~9s3U*4 zgS^hmeKPO2Osn*AVP=?e_L%}hf$NdkQVU!w-d|lRlWO^N>mAEfR>c-imt$Wmb!XXd r3-a>nFDkxxxOd$nz0*cKhkwM!3CCsaHVlygd5FQ&)z4*}Q$iB}?XO=g diff --git a/editor/icons/2x/icon_hslider_bg.png b/editor/icons/2x/icon_hslider_bg.png deleted file mode 100644 index e3c61f25e0d7ea5dd60a9a97a64f06b15c71a24e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UjJY5_^ zEPCHwSk2cQAkgxV-_OJMs-f?Lzwx|0M+4d!ig$2GaYWQ@KB;27d$Y|QwcBTe1dleR zJG4tBdnC2;AF{vR)?i-rrBdke&&A@4rWAEsF4+Cx@20YUOE*k^Y|oQ%F(%^IhT|;9 XrgDqOP0h&%+Q{JP>gTe~DWM4f6Sz=b diff --git a/editor/icons/2x/icon_image.png b/editor/icons/2x/icon_image.png deleted file mode 100644 index 951b2242f1736e4661cd3f2f9a2689955b3fc1ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmV;F0c-w=P)f`QZ^HY{$Agan{<~zmu+}~Tcn5IRsG-P$ssNgwZ)ziEFw82 zIWxvw1P55HR$~A$fLJLt4hrC$i$!E-N^$kNzMVh0=qWfll0#7lt5Mj==FLN5xLuZMkGJ64xUdj zfJrR?X`0@W9R1k7JocZ6jH(3kD1cIG4xoSR+yPYzq<0!_rL`XX!o0Ftp9S6y_~v)r yYP|y;KnGBMm@ESNW_ti6hk+n6lEVN#e?(tEM1$1;K$R8%00009OCb^DRj`TdT#Gxib6+#idy<SUKmU;t>|b5rUl>yl^Nz)S?=)1$KF#Ts~_I{C{tgw`OSWG{=g(g1-|~;gMe5k&XiCP8z+cNCsagffsOS;YZ;E0VXQAugpOah z4APbYV!UK2;A)+vl7*@3kkcrt6W zUebOi4#9(qaJ~b|je4EyfcqDqt;vt+Dd2%)*TdWj+@4Mf5)EuBGFpMd2l1@wAY7}! z#OLr}3a0>@jN1vJN!ZmEh@M!_NgXGZKb!({<)k4r6?@xZau7<5uZFblD-1T ziLV!c0~{;Ca94N|24@NOK+CNGw>^qX2v0)u%LjJbMagqfIbD#le)M5;BGq1O3oeG*yP-JiM{s- z)FQ?sSU2T$H@Za3!rLb>0&BIHJ05{&mt{#oB@*5MTh1oSF+0V~xBHG`TLP~eYV=GE e$+G|Wf3<%bn%$7^7`8J20000u61&3SccEhBq<2T&#$;T7_|=)a)-}uX^MQHm&75Z%oAWL`u>bKc z?n&Vcsj~|ARrtg3G_BJ$p7^A}F3I``b_HuPPs2Kk>fb`boHB@AKqS{s}KD zzopr01!iM1ONa4 diff --git a/editor/icons/2x/icon_immediate_geometry.png b/editor/icons/2x/icon_immediate_geometry.png deleted file mode 100644 index 5fafecadc3682e49b8b9487746ca0d7322332c67..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 706 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 Z>N|!ooW$|+QAz*+002ovPDHLkV1n}I;)ehL diff --git a/editor/icons/2x/icon_interp_linear.png b/editor/icons/2x/icon_interp_linear.png deleted file mode 100644 index 205f7febd5b4bf6f5bbca65a06b5da5d65498b7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 398 zcmV;90df9`P)1I!|C{l;r}(-WD&QvGoMD zbe_P_8g_;V7cjA7o{bn;*ku+v<4dNRf8PJSnSX$P?IB4liXwN;&7E`eq9}4n+{df& zq3LvLjWLe^dL^irR;zW_?g&3N%Y!c|jA5L~c#`DCETBu^K| z5RcBcQ_k`>DDbq#_XfXUWGmvA_55C-U~xj~tCNS1&%%F4nCqTjzb>A^eTDBS%e~)? zGsPL^Ua}Urn9&od8aTN)@!3zOVulwu8vZ$bespUR!}?2E+-tTzx?}M?;_>&N z+F@TO S%&HG`9fPNsa^w0ojSwR8)7Q2Y;xX(sDu*CMh5s*-_Gm5A(0ASMAu zmiNG2ru`w-7D0@90JsA7EPL~udSC;*4U;7v*#5wB;*9NBvB-qKsVRW;n|@b)oV5%< zRgY%YWFUIrQdMObe0t_fubDOJKcNT!z&UrwKvckErakpcZ)S~i?l84u)&nCDb1GV1 u1aN`?u7M8dMC3N@iMcMureyiQ06qX;5N!Q{C72%o0000FO{tCchYc7&92LPTdn`^7Hg zN~uF@?J$TDP!W#fd?*L?OZdJ~c*!}BTSVLdh?PT`l*)ITZ zhptmOz!>{cpD@NGX_`(udgq(X=1M8`v5R1}T6sc<=6(5I26YF%0C-&+9~fiSMAWtZ zQ)}%B5xuFoaSuX>pIiD)%b;=~%d!N(vWu+)z1;YRrPjJ~q!JK@;T`9EzJmw@;N~%M z&iOowqU?bH0PsBTT5G)z;0VAs0JlBK&+|NweBa;p8g2o61#qOb-hb?6^#&1HBKobA m>hmA`e-P1`lydMdSmH17g2pz9(|f7_0000LQA6fd;Uj z^IM<5&=Ki~?~igDSc<;@$2o=Lm^w<;#q-8llGQ3${`scj07r``y2+ZXjJRPze1(gw ziLMdn-SadYBu#$x`!yxfM5MVF1hu$0Cc^J;H*9|}1AUMpDXl}vKk~nDnlr?p2z!B*HQw#F% z4qWFpAih6xl&S*{z^s7q46W}StSrI6o08|8RI)cJc+kszzqU1s#E)^ wu0Z^D7?=Q+tQE3<21MFR6KnBJD)j&H4c;(o`%$P~r2qf`07*qoM6N<$g5|x@xc~qF diff --git a/editor/icons/2x/icon_invalid_key.png b/editor/icons/2x/icon_invalid_key.png deleted file mode 100644 index c34f2bc2768133f08cc69e68e4641f6fcb85e893..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 385 zcmV-{0e=38P)&>?UYw`Z} zt|Xam4ob28AW|X&L?sXD`&p>C%l|??s;VkQ{O=}4fpb+4MUqUTaRj`E&YLF!C`o3ym)LK_@kxG=Hp>L#VpLm9nl^#! faGCOeKdkd7y9S(J-ILYy00000NkvXXu0mjf^%tju diff --git a/editor/icons/2x/icon_inverse_kinematics.png b/editor/icons/2x/icon_inverse_kinematics.png deleted file mode 100644 index 3b10c9590c9cc00e9ab3cfc54f7a2d691c09c06c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 459 zcmV;+0W|)JP)T8$)M?4&?@9DmUN&ts|r|vUKAF&!Fl=0Ig_f z!ijp+>AdYSnGHWS5RqR29BMgp&RCP$?e`tTbMu{bBXX{j0iYI2Ib8)omOer$O`%#S z;2gTWJX;;mj0Zra;M1yBL`Kp1gW8h2k3EM7>a{QvfwB=ZhHF@1=RL3cg?505u8VT44MeMVEvRmC=d2CbtUirf z*002ovPDHLkV1nqH B$npRH diff --git a/editor/icons/2x/icon_item_list.png b/editor/icons/2x/icon_item_list.png deleted file mode 100644 index 11a375caac81fe385663a93aec3c8446486b87a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 338 zcmV-Y0j>UtP)= zJJ3=mEm{F>GN!@EyPFk4tRW=+)y&xP|Nfql4F4UtiDWp4 zd&``FJ^2E-E15V0m1v2Y{d(sEK-=>E=AOv`OilFni_NsN((+G!5Ye_##i^#={IT|s z>W_0VN~Xq1V;krn_Ffc~V;eHc56+xgFT&Lw2m+4wK+zkXS}(%ycOXo`pBE6OAWT6J z5T?L&V2krF%yx6hSlhsLVD6DH1!H*636MyJpppyluQ2L4CtwiwmRh1Fs0py~K)f-A ku@QCuRPTOzIR8em14YqgF{G+nQvd(}07*qoM6N<$f=;88VgLXD diff --git a/editor/icons/2x/icon_joy_axis.png b/editor/icons/2x/icon_joy_axis.png deleted file mode 100644 index 90f3d7a4447785cd62697a4bb4497378010d63ba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 425 zcmV;a0apHrP)F#Dh=3LZt#J%B3!XFdxHAp!u1 z8pU4#ock=?B&c_`E1$IZF9G;z`{dXHhTii{7=~O35!jnjY60MBjDSHXrEWRr@6GdB zmQ`BowRZtomQ}8?<#Jhi7jSI;1w7la{IpY zrNb$p%k2O_L^niK5m8A*t*fi)O2-%vJOH==kTAybLnk@83C9Rn0jL;br7>o8=p?)E z0U|Q?fKqDF=YyeaU-fVHxjHS*4#aVsODU5h6?b~X*#Q^LoHyBboFN} zy8u@@`rPiqPQfQU{|nf(rQmt0;x;=0#+W+*A14!#rs=EJ`jRpB2;ggKA@k)McD#1m Tx;YTV00000NkvXXu0mjfY7Vzs diff --git a/editor/icons/2x/icon_joy_button.png b/editor/icons/2x/icon_joy_button.png deleted file mode 100644 index a6b911ba1b70a4b990c0d54474a29e5c7505e0f8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 499 zcmVcd0znX+nRRoO5@PEGLPDtd4HQ@!6aNUI@fXnWL)6Mv z6AK$_S`tFoK&zrQ8_4b0xQM`cw|jgTb*jDDdowR{`!??Y{(7KY3G%6h`^|+A$59lu znfb`ISlk4XbRH7XrId0kr5qE{#X|Gc_r$8Jc$LmUDV0yD^Hlg^u}EGV0hCOgW5Y!N{ z1pt+_1uTJ`_<{M@l^^gY@b3qHiywHgi=FrZM4X)!9|8a$et_t6fXtj0`#70QW@_2y ppV2EKUQMUdYPnnOjWlF=&r2% aF+KqwO@EC4NsmeZ0000k}@P)O7J`d|G^cmAWOmyw_QN52?RrYZ4%5zB73`QWnLJV@11Y*J;}@$ zpjE3@|GQ*U4+_I@+i{$SBzFM#g*_9I(=5xzypAtHyK=Y3fl005FC83OpQY`%z`#&LYG;H?7y0F%k&itD-~l6&}l9ChU) zau~<)LBHS6HVRP6S{slYh{!HU9{@yTM)E{NUR6JPt5&UARrL!a(zt`%AL;r40000< KMNUMnLSTZRl>Yqy diff --git a/editor/icons/2x/icon_key_hover.png b/editor/icons/2x/icon_key_hover.png deleted file mode 100644 index 5dd96e8dca19028711d1281fde207c15cb6552fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^7o-U3d z7QIU+U*v62;9*_8dPjp|;eXpHf;@c%bsd7vt6KLhslU@IrnQKL!{LnRmSQOzW@~@G zgqN*vC-MJ?PiiRjWRCIPv23o?18YtWW&zg}Bi|k8%*vY9|BKcA(H?PU$$v>{m38-D l++w$m@nG8UEa>`Amc%1crez<`tODB4;OXk;vd$@?2>{`qMYjL| diff --git a/editor/icons/2x/icon_key_invalid.png b/editor/icons/2x/icon_key_invalid.png deleted file mode 100644 index c34f2bc2768133f08cc69e68e4641f6fcb85e893..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 385 zcmV-{0e=38P)&>?UYw`Z} zt|Xam4ob28AW|X&L?sXD`&p>C%l|??s;VkQ{O=}4fpb+4MUqUTaRj`E&YLF!C`o3ym)LK_@kxG=Hp>L#VpLm9nl^#! faGCOeKdkd7y9S(J-ILYy00000NkvXXu0mjf^%tju diff --git a/editor/icons/2x/icon_key_next.png b/editor/icons/2x/icon_key_next.png deleted file mode 100644 index d35b52d3c78a6d4e0e78721428dd45c7e6ddf2bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 579 zcmV-J0=)f+P)Lc!8>T8MuT55GYQ5#;XX_9a&ynr30~vc5KM*i5|By<4?#A6VFVX5V># z^Y3MW|6NqpK)qh?wAOkFz#@PX00clpL~lo<(c?y=@!^jEbUK}yF=i9M%7pP!01x9h zUTZd+UrPh%_xneP=mmhYzZvo_j^j&t2sH};5p5Po4glxs^?ECBObyWOc25CV_Us)1 zSCb@}Pm*L_M6Lk%l>b0PR+zb&wdbYWAo!f~o-y-#5!nV1{P47h zTm!In03eE@Z$$t^#J5(x9N@^N8qt_CC`Y$SX;bH{<%!G<}_Ki-;{9 zV3L$l{%zY|zS00{wc6siJ|eo{S$qf}3_}%$;aH%oKYNJio|j~UnUDH$gTdgK*1F|= zyT2t<-vR)S0Nlt;;-rXdJLlH3J=a=aOw+U_BFA%adjOtfjj6Z5TI-1DzGnwYsV!s7 zt}$j;DfQG#4ge3VwI62&008IQZ2+$dguEOMhc{=*c}VScdybj!Mp3j^w3d`AW?o?C zjiPa-{SWxMBhL?%%3E~#r@8)0A)2HLptLjK@A{^aMDw)^B#}-GpE#WhwWUbRC3OiO{$W4t<9|~K=(6vy85}Sb4q9e0D4|t AeEX)pH;x>xhchHCPMmpnV4V=#f$I9={SEI69pvW)&yKwGpH7RN6P~cIbl7Bf rihI(h)Gou#=c?MQwpvD9nIkB>gTe~DWM4fN%&_@ diff --git a/editor/icons/2x/icon_key_xform.png b/editor/icons/2x/icon_key_xform.png deleted file mode 100644 index 5749aac8f4d2db279e9692bb8e91ae6dfec0abdc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_;JY5_^ zEPB^YKFHhTAmDnxM^s`de=_H>4E8oIn*`f}1x(4jB?(T7Qp}=fDjFq}S95=qSO0x4 z@p-?%iN6(5yHBw?oZ;8W>a0W%t02vD4*XyowMn zyNVH)+ysyBw?z&5o8mK%)U3X{>ewNM;&98?EFW~Wp0O{OdB7}bURKaE(=6!+g1uI2 zSG}EVwEq9*V;Lv6EB&2vB*aofve>6~SJPa^BR0HqKMNmSUft&@P)ugK~z|U?Uu1l0x=xMzkhQiEDj{e0r#C=>OFjPvNnj#2-RmRxGR~K6YgkgA6sZ?G}ozLel0jy^N zKtxU7_gkhGLe#a^``_8a2EZzMYXIBmtpSK=5UsV=Yd_h?2H-3PaGogufLgEDtC^x) zF1G=+vjlLGg6%nAor3j2WSfGEqu441C%2(Z3f|%=Q$=sT1l1PwQ}yTXfq4K!hdzU} z#yo&y0M8E0p8y=CHD|A4Ddh;jic)H;TCMgS7=Kc?+bw#Y_XuFbIWGVo6SxO}TrSt> zbUH2{q*3z*01(lg8J{H}gxF?`Jpd@UHjn95DYa`-o+aS>elVF#c8I72VEhZlVz>% diff --git a/editor/icons/2x/icon_kinematic_body.png b/editor/icons/2x/icon_kinematic_body.png deleted file mode 100644 index 59298dfa725f5b8b4c736bdd5456de2a7d5317db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}RPZ!6K zh}O4L9Jvk{aIoZlSZQ~9dE14_)0;AQj>?p+GknmeB*?(P;&atB^m_c)#n-}^12^4$ z;C8eZ^Av>yhYbHl4o$vTAH*?2%htg+)^E%6z^O$vvHqEa2wEr%{a_-4y sW#udGI#h7>zKOkYcXk;w1H%U`aM3=9Dh#cvI-|6Bd9 zZ|l^CX=i57@iZ^UWStn|;71+xp$y4QUF zeX_sXV7c&WTY38>-WAg)Y`n+%{@xO428IT9^_8~4tD6`SfsSGDboFyt=akR{0DQzz A9{>OV diff --git a/editor/icons/2x/icon_label.png b/editor/icons/2x/icon_label.png deleted file mode 100644 index c5e3bc844d1c76017c26c3065d4bc5a8c19df461..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 370 zcmV-&0ge8NP)6zKcj0T>2{jaCAmQ zS$ZwN+(0-0cqE_8pR;4tFWKCONTgHy3kK!K!5#PxXKXmULaTs{@Kym^;f(?|!)pSz z!z%*uCK)z`3uKvZl_!b=5G&IHyRf3k)K{*Yhr6rM2LMdhi+knduOHOpW>Wa>nC*?MU`0;wjxMy2h-NZMIOyFk4Im>+;G1sPyb@)KE(poY12j=H~1YGl~G60&sZu);ECP0BEG!dShvcoP7tVHLXPu-39Xzc|rQ( zfp1MD6MpAuDQlyCrG#)v=KD%(rmwVSK$r*N5rAF*0$i<`odsD&=qE4?*0yuq_knLt_)e@|C>JK) z4V$xWI&*!v8(_@(B0i_vlPAL(GxQC(IlCk@Tu&Ab0GIOGTNSAy0&jwkI#YHrY)&Y^ z&Qkj;B0QFb`yl{473L-fAfnR&BXd0}e9x;u@Y0#Y0L(ZPFiv(p#syHd-yejb*`Y=m z0EpGNfubB+73+pJyJQ*CPydzI%^r^npsKp){gE7idDDN{C#u8+@H~`-Vw=OA(k4Xk zU(Q%rH=Vht@LkV}v{oE|U!L9|&{yBkL?7;k3}Wv`1ZckWtyD{Y88%0{8P#8PN=)=j z793-GR2^4Uh5x`~fu+taos^Q7B)=0J{Q1J# 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 90e43872979bb3abe0b65aa2ce16bc5977a6882e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}5PZ!6K zh}Pr;iI)w6$0Bz9{VlICS<>tO(oL}%&)lkuHW`3G;7y@Z2QR(7|6ie%?d)0E4+0Xt z%!~OBFf88LkZ2;_W5S-$a53h9!7OgKSWt2!b^0XleK~z|U?UcVyQ&AMhKj*cDm=-Cp5Ec_wGxDaA1i6N4R z0pcH^|AB)xfy6-xp<=qY@T2}*;! z&-b2p-~#_Uq~5^!WG-x@(*Pfy*A-<5lipTrym~83% zUZMNpy|(me^VRNvcq{BLqYfA95Kv+NnqymJa&Bqsazg|pK5w@o+;ET{hJbB@srVyQ zRpyp5kK)PfMm(9_m`~=)MbspqaNxTQ_zWr)xgA(l)tBZu(}nor&Xsq`TvEiEM(IN7 zveBu!1PBs#ezSPE%ExfIAks7uU)~+X<68x89+&gf0ul-Js1Pza+hZ*NL{Q81DIJ#Ujs}>3O;Y)lRH^- zpd(`;BM6%ao2vHXYE_$XjN*7Q`vzs$l+fdZg4HN)}{h*daO8>QmjGEK$0v9+7{01dB V@GktQ)7=07002ovPDHLkV1f)JStI}e diff --git a/editor/icons/2x/icon_line_edit.png b/editor/icons/2x/icon_line_edit.png deleted file mode 100644 index e6a0bc47776555a9bc7047b0504963cea41920ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}Qo-U3d z5v|Dy60D08M0!dNbm(pP@^{w%6Mr%e3hIqP)V<5G~>*D5zk&Yd#F((yfxDBGTeV zFQG`$N;gexdk5m8OcM^>PhTFZ+T3rf!yMy%9l zG#4EZ6Yl?Pr1~X@tRorFuaN(E)=H zz@EjOMqY0QJ$K|*JWO5{v|w0DZ`%MQJgDyYc62}wAy@?VfIXY<2pxsUYzfk-Zu=%? z4y8UY!R^5EMnPNYxtUg=mqtNbh?j@|tWHDi?pt4s4j70KK~z|U?Uqez6Hyd~pL5fs^#e>?Nc}1bc2g7t^;al}HVI;?%WSNl zzo5TBEOudaC!Gl6L^q;qw|;;^anprT6-Ce)(OR3BIWF2v?@UY^TX*JN&3*4V=RNn_ zJLg{LqKp3>veM*3ec0>!b9uxZ2R(w)kI)BD%H?Cej_)Y|%1?xkAWud0eoro}7NuBg zr(xPnIKkb5AN-g>WD2wZ>}iUxvZOv>4`@M!NzY%IlkTTF4x6t8Iu5hm<0ax8jJuoxCfHnEPfjN36ck*Q?OH9J? z-GhR8ps>@TXVckmuz4_}J*oMrye$qatVbN6lq?kF=I2gb%hwy_cbw zhiVyk*MZ(!2~9apZ5T?}L|RrOl4qcMBf(HcfG5rI(w?rVGm6ntj8L98KcfnW>iw7# zQg(dz;93N2EX9abL<~_QiW2C_g;ikIvg;MhgY_iQY(zlDqG!Kt`5Y}a)`}~EH>`@6 zh*JY@YA8;o(U>l7D}G-|)cxdc{*~f@8grV(m1p7>ZCdei*4}ksG|4B?_C2sN#!I>U zC7Wou9@E+I5-`z0u)oFlOm_N8l5Dw-i&AU==cj_|V^O`z`ribzpqK5k+i3eD8p#fO z>1?=9l+&uXz#Cw`1HpOVwJNTPoJwcI!FJ+ZbkPOCZv+ z&D%Ev{O^!x;QM}W5dpN;>LB}p#=n6h0rn`vxV;;NX=~}wGjJqeWDP8;FYL#mXW*X| z&;@YMvaFLzsVvDg0Pkm+D5*YB9Xv3`lu2F#aC{QS#J9k8-BP#PJwfsofY0OjBTvIg zGhmF_1n_BTY3W%yoo-Jnc2!8H&nq_?jWg5u&w3yDptU{+0L^CeSQv)i z0W8Pt??mKbtJQi{EEc$>hX02pH)klYwT+ap;e`8c1?n_=_JvjwH!lPL8F z0EckWB63$L_09MFH^!JtBqdIm=StQN!!TPY6n+l;YXDXz@cSwvl~gLVmC0m&%>5U{ z{I3FdF@;N;kAP8>6-Zx|Bo>FQR!1^G#0`SE5{o9EN007If*6a1U4FHbg)JT3Ah;5dvV1q@9=ml3A_w#X(R;Ss?j5;%Ke6(9guSZQB<_BmiPHkR+PT=5iQ@4U(sF nx!m49v33-Eq3}HK`Xszx@&xAIqK*wL00000NkvXXu0mjfsNy+D diff --git a/editor/icons/2x/icon_listener.png b/editor/icons/2x/icon_listener.png deleted file mode 100644 index 1441a81bdd7bbdd3e132efbb0bde2eae592a5f9e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 885 zcmV-*1B(2KP)GK~z|U?N(2SjA0o6J@5C;mtvGSU{^{mh{Psta!^7`GLj{BW>yXy zkiE{4r4$FPoe7JBk3`8ua&#aeaj~Hm#bNEt7W3`A-_K#q?E8K@t(`w|;5og|zxVfh zpZ9tH0ROtkWKR0Nr-z5PL#cL>s|08T00M&|@(jQoCmz2eiA2zJ0;ODT2gn`(i+(f5 z0LT+=I(@q-1nB!tsZcm2NB5=kX9PE}%CamTUa=A7YhG!ht-7g0Yyf53`Xkb0y z03g8eQfq4npxYvL@ zYAwj~0E!V3Cra7uHq)kqU?YGIl&dYWkNy4AjhtUhec#jh{2Q2iPJRrP+UzBhFRHCN zxOj1;61fMF7Q_73nK^S=xiQ(>8`Da?vtr1dZaRI-s(>CI-VVFrij#o@fY;UaJS4Y7 zDzRAS^X-)t9y~ZoksDT`QtK;2!`N=dP^5P5Gp7$k^GOIkO978viicb}A zf=rtxAWe&plQ*4dW-{sw5KM%l=6} zBvrwE-_wP{Wstik_<){RD%D*rZ#0)%C*)}d*dwXbhq?*qZ1y;T(^bIFy2<1*bM;e^ zdbVJ1M9)K{BbG`XtrZ-ou>$PxpRR*oWZb~-j>r? z#5B+dI8fzJ7!~@yhoPa_+Hp1!$e2DEy953Vfl@Y00MPk7te0$DhLln_8zoTxO-LS* z&d#rYgFq2vr<+b+YZM%qLJwfY01ps~m2Shss)2Yy*00000 LNkvXXu0mjf;Yg6L diff --git a/editor/icons/2x/icon_load.png b/editor/icons/2x/icon_load.png deleted file mode 100644 index 759381d636bc52e1a159435326f18144500ca379..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 523 zcmV+m0`&cfP)^4v#+Wv64D1+Vo~JN}N&?Qg39x01Y3F(FuPR=o^bMF;YqwJaD1fzAt}h4Y+$oSp ztnGmVYwht(McGXcuhD^s#QgtUM2@0Yb<*03a!V zs;-v+u$K}bgb<&=cs#xf+)wC#*6a1oq5-DU>Bcr-6u>4sAPRuQ8<0u|{1t#|2gCww ztOM!*=K$XO)oG_J%RS&;LjQiX1L^=L3&Pjl`+PJSSyhcc(L_j9-__?<=fB}__#n%& zPryz}(~A1dX7f?2)w-xot`aDUq8~!o2i^mdgvLKaihl~fTJb_Q*mJ!#t9L{ zRic%;DlN?c;8;p|S|_RmNZOt^kC^$AnMaDE2t`o@GmijV0f^EK07&>Jav$O-Ms!np|QI$CWSeEt3%=^f8 zVp9k)F3TweNS@kvF!Oblc^U%1O)htF0029=BDZzs724f40PE?65aOjNfTn5BxvgQL zum(V+7rL$oO#uqDqEJ`^@F&p&{P>8Zl>D29rfFt8m)?OMV6AOpewJ diff --git a/editor/icons/2x/icon_loop.png b/editor/icons/2x/icon_loop.png deleted file mode 100644 index bd1322ae006d081e88a384bc755c0376e8cc00dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 806 zcmV+>1KIqEP)Ox}wL`zi=o$8{^%q5Dmnw2F}?A+rf4L6fyGHD~-^xfTa z&z$$UpL2m@9a2Jw72o%bgMP0a7J!*=gkiX`y}dngBmfPK>AJq=y6&x`0sw$K5k2pB zNhqn)ahzye9)N{}Dye)zQ(>uYCbDru|(kXP1bUq?E7o`TV!x;o+Uw zH!_yLoXh3r;&}idgqV+_=(BCxt8D;|<75rP*hK4^|B_N(vTgfIw-G1+iEA!|m}lmB z0G{i*r>Cc<_W

77B%O%zU?(xuQ)Xn(Ag=tyUj2%mKhMO|!h;*92%BH7M<+l;+F1 zTy84q$mzOXRNI=SHNDh}=z^LQMbWDi=CCa5W~cRzX+>=i(NrgZlWJ1EUhjE{q?M*= z-_#@+sHUKH*2Q?##qFT3tLWuD&4A%i9LIQy6x@VcWXRISZiI&u8!e`?78OB{N?H k(DS+VU)9f5e5@q>15%VFmp8fsZ~y=R07*qoM6N<$g1KyZ7XSbN diff --git a/editor/icons/2x/icon_loop_interpolation.png b/editor/icons/2x/icon_loop_interpolation.png deleted file mode 100644 index 6009b5030050fd93529bcf9fe1b5e5ee7edd7a62..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 709 zcmV;$0y_PPP)jAU6RSpw-$+O5z+`UiCI)E{&R zq0phwC3MeJ+O>2jX*;F<3o>L4DH%FsNkEn?+(AoH2oxL3dapwyBR|QpWE;{#J`g;e z?!E8R>2!C%HFCmr-7lW!EzIjYmUn{?;z_U9J8ZRDEAtRQc{jA%Z5}SWLWtMZYW34N zU(2#8g+k#yfVI%H$2s3L4C7=T0xk|9`c^C!UzW?|KPlut0o;;~_&pd5R!!6Fj1|yo zwd#tZYyo%xU@?QP;~)qcwOZ{cCbS9Qahfv`H8o9Z04X_OS(d3N%8zh!7IFYsRutvH zah&y-ZEc*h5aLm^P6$v{bqm1FjKo<$(ggrwtNrqXSe5O*@87Q1 z>%V3dkQVX;!e33quQ)l7{s|^wyHqN@N_*>RkXwMR>o4X(9ATCmxEAnl3Fve>H(b~K zcqIZH$5{@7;6MnmKH2*c0hVP|Ak}W$wwEqDz_#tDM05yXssUvvAlAP}9T?jWg^eHz zIb&=az|U{O`ocK{lZAq@ErQr=qb6%x*5L;MqD>ff`3oQM(~GOZGd zjJCWu^L_uVY>Y=BQ~x#$+|G5OM!ny&m@CAI1E5%o^6!?Fr7tXnN0J}eqUPa{8T6;H?fOK5VL}X&EedjEU%xnQyA9+6f^503#wgtn2#4d%qt-V8ND% zT!$1`iggM&B035o(2B@ynx=cknESsTr#%;+wQYNn=lS!p0euOmKcfE%H~<&Mm`fu1 z(j?FdGytYalAL8(_NmOF7FfB@T7fwRSV%e={g$BOA)Cs0IcS21h9K*ot<(PdwM^LGd`a=S&Fq_5 zY0i@wIvB*B-}$DYuyjlJi5p7$3o70(-`yNGuj=IL=&cRm2@K2<2N>848W^`WEMB~P sM<`FgRR)D^vlv}MdDmLE)JzwiwOsV-PS;rxKvyt$y85}Sb4q9e04}RYe*gdg diff --git a/editor/icons/2x/icon_margin_container.png b/editor/icons/2x/icon_margin_container.png deleted file mode 100644 index 10eda265e096ebdc285125d2543219e3509f6ad0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 365 zcmV-z0h0cSP)h*=JU?3jPs*gG^Ic(@T0)w{rR>~0g&`HCH$^HQNq6mlq8O8Lc&LZ z0yK=H)~Fx>9k{1}jI`ih0&&zHYQen(v{MR{0`5$>fioBG&2V{VWefKY%oKsCh+vu# z;D84JB`4r7A#{@w=!Kny;h+J~BY?F6crAhlVLHFAwcZrI|3~u$c-c~1#=`i~00000 LNkvXXu0mjfbNZic 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 2507c969c3f80df366bfd156aed3385c97b82908..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 562 zcmV-20?qx2P)ToeXnM2Hyefl07#MqaU8?8Z8(n8 z$T*53c%FweO)GnL016R8V45bRl<<8Yb>k_oSxR{nvJ&84Q;m2It@&(#Lfi3lyIlw& z;CUXhEIVaXGk`)xJVFRer_)Bpg^aVlzJOYQ7N7-a0saBRar~Tf{!1zKpoUuOI{>eW z_no6{JRV26zVv#%*Mq?z+}Bg^gt(=YzF>?2z$XAVuIp}^%=^Ff2dL~hGP=*A^Z)<=07*qoM6N<$f}{BZ A3IG5A 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 079b3a664573755432c6f0a016a7bbf7a35653e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 598 zcmV-c0;&CpP)&@IiDO5HNH zV>3imr%L?<{Q&t06%vb;%}YlF62dl$Ir)6{xkKbA7y{->rtq7P@A=+O?=P$e@Y+Et zFL|D4Gsdok5FezJIw9ni5OUFOxBV9ta9#IIN_oRMf172Q_Vi5CG)V}#%k%uQ+wJ~2 zs(|ad=V_W=#c}+mNWlIlO&;48kfNs$NS>h5ZEMNGV}DowlMV`T_v!0vJF1jG_qgJO|S>!7z-YG)|HP zeBTGoIplf1c81Hvn)VPo=NuSgP^;CzG)<+(tJMm^Fa#mQvo#w61qdO)7=x4&mdhnn zjYmoeVHiRbMIfczEBUOzT2X~~c8&SJ1q#aX5JDi!G6;eI(lkBfDm8(EBAzVEU_PHK zH7+>Hhvp=35;zH*1dbx$IL^mLqw)78n<0e2w(VJ~)%yJStXwo6kI#eB`(8Ky0JnP_%$EU(F8}}l07*qoM6N<$f{V5j!~g&Q 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 f1d0ccdacab63e02f2fcb501752829558791cd5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 724 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 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 f5cc7f7819753c87610e7da5dcf955e4b5999e7a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 704 zcmV;x0zdtUP)gGh~j%&TeLB@5b3-Hx_xjx#!GzUhdbN zfukZK-T`-wF<*K%P^;Chc%HWe9M1`FY8$w1j9GC7J=dV```0|rTS>sH zz^yP0OJNw6RCSuhG-uHe@Z9(PtFBC5G>(;Q+=MADGJs2RH^iju~zP@osP1aA6p}>{fAaZ|_A91^_MxK``Sq z5IbAwrJ9IjzDE*z=rj-n!5EHnUMv=GbgSff-pw2aMt$GE&|yGTr(D@0@+jVLZQ9w{ z83Gn_7yxLoiV4s}m*lg+M!jC2Yp!{rP?(IOXp#M^xF;o9#l-l@1Kt?{o)!v)JUo|L ztmG*e?pO7^1`hma^jVS1z>h;Tu;nuF{l6Me)z^nb7m?Kt10u3~SO%gfYOz{ZY25j2 z(m3~n)TS}!T=OA00}9L!7>=qwNIpv{C_xas0WJ*)zHW?}NcM?spJNeGRlNiJ9sqw^ zMDC@V)Q*5!gr%6nl{FKP6wPlp|y6^^StZ8uRg%HRdupbsW^|h(*QuJ zR9dI87vAP2tLnO{UbNP}>XwuB$7F^^Co`Iny{W46*4k(PO6;kniaVL+uh|Lq`+;x3 mmWZrHQM7EW{n$(0qpiPUE#uVUuV+mF0000!EsaX0~UX9hvo@zoZYlRo(S=clC5N|GHKd^xwfD_OOu}j8nV86>c9J;0Pz!Zs~uI zPq_S3fGwP1w`Jg}zTyME*Eu|C=)8y5+Rr+tO&p6Y$wJhvz|$0bW*^}K*Xj2@P8Wci z;+@Eml5#7sg*OG;2yewKrm5ZI3!Y)E1;7dpFuC=IN+k+k+~Q}fF1dy+HV-F$yTTB6l)IPu%^SQe4?%4MF#*P zAyGaB&&3I-YF%XeSe%Ge0sBgv^Ddg=Gv%3WsxpDmIENlsJ>N-Q3bdZWmI1pDlC5v zfT-bq^bmZ4kJUeO712cG!?AAHZBA31E9`v}0C7%l#I4m-xVF&*?-h<-8-N+aKvXeZ zZ@r=LVnT@U{MFG`YW^k81k{co{HhhM^xkiO$~CVx3NkNLT6{KpmZD?^;g z;J}alfBtLVQFN?k7bswrWT+?m(f7Sp1 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 a26a9754fefd15b7d81af7e70f40a381318347c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 707 zcmV;!0zCbRP)F!PY=_XWREygmmHBBo#q>N3uhe;~v$Hpuv z=alxo5;r*hc60mSfK8Rp3B1J~nrX}q^fSMn1i+qFF9`hSz!7i@`~r?}`~`bby?)4R z|L~&4A!^TIlX2@R?{&_`fhfIkEj|-|*wUN>r--&0jyv;M90j6XPsV(1&#oZ! z1P;896$cO#O0$!sI6%&|!$4##`Wz8G6T8iAxCfTHs*2^L08I!P_dWFDGhtR=J6qNW z=k*{2{q@w;3p>zjCOqkJ*DVt1g~sxrgxOt(PLU-*9bLKJoLSuew p%y7OfSoOtq2ce!ZZoPjuegnKu60{0zXdeIo002ovPDHLkV1k6UJB|PV diff --git a/editor/icons/2x/icon_matrix.png b/editor/icons/2x/icon_matrix.png deleted file mode 100644 index 0ac4ae170b9812556cad71a40c7e3292de6c8b26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s1|*Ak?@s|zY)RhkE)4%caKYZ?lYt_6o-U3d z9-YYv67L!Wk5x>a_*s57(?-c)iH)6)nOe>yDjhY*Vi1ebQxsqD+Wq^-1HT2>F2u4G zTdsWcqT!vL%s;V5JOJ9IIGi+%CRk_%B5Ou?EPSMrJ fxa)Vp4`v3&?as4HzAGjGZD#Ov^>bP0l+XkKl4L@C diff --git a/editor/icons/2x/icon_menu_button.png b/editor/icons/2x/icon_menu_button.png deleted file mode 100644 index abf9b490e35df5ae6adea009a59c71885742bcc9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v~02o-U3d z5v^~h8S*tb2)Omau$o5=WDwKeybN=D!bJe$Ebec7IRR&$Np$WbJod%1;Gor rMVjvXac-EYtk^k6N?+)~AJ2Kg3*3@y{wll$dX&M_)z4*}Q$iB}5-xEH diff --git a/editor/icons/2x/icon_mesh.png b/editor/icons/2x/icon_mesh.png deleted file mode 100644 index 19b909561907f675cacd9776a90920d57706fb64..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 582 zcmV-M0=fN(P)R24;Gp(_%V;0}q)H77tOTiRef%-FPF>rne`05VcRIiC`{?Mid=C8Yl5j_- z!yPP+5uO4rB4b>yE3N*bh`G)O_fQ!jJOLb#F_zbr-TrwDK&QhUY`z2ah|dzoekAt~ zf8+|Ejhcv=0JX@}9}I12^?u@0UCZJ)AsnENYZf{m=E(=lx``SN?||oiY#{&Gw)pzhKs1hPGKvfXA0IGn<4Nx{jA%HR=3Imh{u@OKS5E}!mAfS@~ z@je%TP6v(Xf~2uT2>;&@g>a(lqJAp?osF8hAvP5RWd$qDG-0!T=R1`^+ZhC85KAU`yS z0=NK0T3T9YAteYY6+&J=ij5t69mQV9ZeS!!+4atwZzpT*1O9tRdcfJNtH}|_12e&S zsMKX^FnFyZUPezci=*fnK*!Sg@|5by`T4tZ@e+D|Jgdo(wK#_BXszGE$%HNdI*J6q zrku9c`U=2t1|VruW*Y=V%u_MM$|VT^hw<1)KGqo`YlwQkW zAA5{{BpnEqy7b9?7GwM<@Cr;54ebj`Oi@6w`9WXo~dLf zh(s^$A_))ZN)RkI0sufbnMC#!vWL|P!q)SLLzNyY6a{&*f-oWC0k{swVdomxdgccaOVO2w1+Djb?g1z_yq{KSZ@tN=OF+9002ovPDHLkV1l$O B^+f;x diff --git a/editor/icons/2x/icon_mesh_library.png b/editor/icons/2x/icon_mesh_library.png deleted file mode 100644 index 2495e4a037d03de32a006901c93299b390d0cbf0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 631 zcmV--0*L*IP)XIzJtmh!Xv-}8DjV?S??Yt0Cd!^V)6~B#PUqB%=>b; zeY%vnvv(Wu4uQ4U)EOR|veB6^qY7lOpJEPB!Szmb++W5Y@UkY>uy_M(&ul}@w*6|P zJPDgdWH=M~667WUM7~@hz~``WUIV_-M!YSOMH9*eno{o^6migzUBi?^l6Cb1%X|@b zBqiwh4|&T#EatP!TJ%IoB52jLkKFAfpQC-u&Pr$L@npA#vX0Oo@_yUij1dCCQl zM)xDoj6s-)zSHma(_9DFte|Y8`V7}h+%r~MOah|bIS4MI_mP-WeD7;+?7j9GFvyzE z{{#^TqB|klmPT({H2%T>35c6Fh8H!5f}bD`q2oSMYyFIlr<|T}{o+w~b|=7&G+us! zC3heSQ6_E{thW$-8+J{@(5+SsyE$L^_P_tNI9^F{MF+@ef5 z)RFz5^uyG#dx*RW+Svf$y(axFP{EYr_?s|(zB3h=C)$CcZ^ErY30JIW4Vc#qAS=1s zmsRAyz;EHpLy~nc#naM7n4!tsHf+dx_Xv+ogaPmim?8`=#awk~h57z+{RZP#yR)iQ RFX;dP002ovPDHLkV1mZHDR=+? diff --git a/editor/icons/2x/icon_mini_aabb.png b/editor/icons/2x/icon_mini_aabb.png deleted file mode 100644 index 25603eec4927d7883418e6e7ae4d901db010c425..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 695 zcmV;o0!aOdP)?sg50^pG+ z)-*lx`eh>w`8g5*GR&}=CU5R7ERO%3+elI`K^E%G)RA~8$i`MgwA0Xh1 zCl=b?e`P%gsWVVSGokYx0zg>v#xzcnzlCLEMQJd9_K{6>2uQWb22cx2=*RGz**Z&A z@bcsF?;T)kJ?g|x3Wvm#5vGR>&uH=E>-CPnDODU0w%pwobo&rs?%8huz|s2;qmDeT z0vP+%-}_N7FpvNvBS%sY$vD*aeXvs4UwE4)ZP>o%ZG)}#s3VW7px)+lmG=jMA`!^@ z!*CnBAZ_df$Sn&ec2c;CJParjfk-BTO0~heEnAS!`G`@KuIl^jB#>tEZo4q!9pqZ5 zEG;gc3BU6R!gPEl*SGV<^AmML7@lpXI|cwa0BwM|I2dhaF5ES=6J85Kw1<}Fl7S_^ z^SQ+KQK{1R2#!`ird_3MUwXS+zrl<(5T0Emh-q8_eLJ60YNz8|h|Asjg?SRQ0lsnP zy9C$Fr1t;Fr2v|JaVlM%{Wl`GCS9GST<)x^004;3O zl}4qc4WhyViFacMln|RQz)@peMgAS{k9-0%X3ThYh+&~D%Y{-ZBceTk4S*M)H^vB# z{;CV{v2RvY)yg?n5Ya0qeMryoi~O57=L!I<<{>@T?>B%_D&sci=(&E8w>}KGLQ0w3 zIs2#H7$Yw84e|W|M6~wRaU8#Et(#ljLwc@XG%Sq3(%&RWQjg^O0fZ3WK4GoR>$<)- zf``C=f#ZPNT5GGx0(4!M1Ni#yhBpJGX?l`U?xqgW`-EESrfu6d03QH80sKrEX2x^k Y4BH}h!o{37mjD0&07*qoM6N<$f=>;LZ2$lO diff --git a/editor/icons/2x/icon_mini_basis.png b/editor/icons/2x/icon_mini_basis.png deleted file mode 100644 index 276b48d7227f1a73177332f5577155509aa92393..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 472 zcmV;}0Vn>6P)BWb)M(Hw}M(YAF3?v#!uHA9* zK0ASSU2I9BUtN{PCyEyc(A%|mp|#3d*Yq|LXj5pG7YIylR{Euxl z8s;CxivQ)W^+(5B zK1Su6F!wPk|5<=rPFis^&GB0Jqj&)TWTbaQ-v8PF O0000K~zYI?UTJu0#Oi!zuDbj2P9IW51>W}4XGw& z)XEzmkDw(a@&;0xfNZ1tGZw~Vg}u8m1R6QzoHJ+6y>~8b@!uhx-c+N7>qcJIF~~H> zTF0=zU>m?$EOdHPSKuW?9y0lC_v%zW0PY@j$D6%3MYW-D1Q68$B=O#K78_t`38PRL zT8@7PpuW=wO7Si_CbR_61Cx(HIa>Q!!lfJd)dBnJ34 z4@+k2)v>gMei-bDGB7m=+84(!nsjM=YJi*b-B-1Orm4XT!^?KPFfr-U_|yQK!tMQA z5#oM<1pBDn1y14`MHzS+TsSror%U4(b&20_6G(pou|^1^l_v=!jqyngpfD8svnIA* zQy7}fbqq32_VH_0j89wuSK&!iTCS6;w(EsSyIz>MPOd5{Ere&ljq2uhzA|^R6%(K0 cv&BEh7kq8S2rCv^kN^Mx07*qoM6N<$g2+v`hyVZp diff --git a/editor/icons/2x/icon_mini_color.png b/editor/icons/2x/icon_mini_color.png deleted file mode 100644 index f4059bfb9144a1565508d5bf4fa5909562888854..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 411 zcmV;M0c8G(P)UqK~zYI?Ug-F!$1&)zgb5(5)|pf2@n!x>WB)76OaQq%}P!~k)E`U zv|VbhkaYBvR9qnB1kj`~Lj`y@KaNd0{JQbHdGATHyM_k;9a42*tf?03iA*bN6k+}{ zd<--JTHyz^HpZ9)kvrfLI0cYtydof~Pm_i);kY(Wr~+9Js1u7Gm_IT{Z00 z`&ofn8z0l$E;KGP_X1!{ax8NI)8-((-xY`qg5DgFM6zsECx93RcrONX`6S7%#nUUE zfeVkG=RmN@|G>*X+XfjQK>h9AY^UhVk~-dVA5eR0_6D&cqtor=P+L70OH&lk=rtHCvGj2 z^C|}bkStr#>GV*ws6G=MxNkg2wmPBH6V$?PUV{dQ;0p-xXU9Wz0G^fUYpY5CP4~R2o;?#s--4q9RL+2C9YLuP$RU6pfKvdNR^;i0 zM5=`mi6MYqHsIOL05X}hAu(e!Iui;2Mjy-5*8;k{!SmSz4Cpj{$=A@rVy;(xF84%7%B)~(L- z*>)3sZ~#T`-MXM0%?nYb|26~FXRbFO2ady0LHRhC*kAU~*9UiCQ<4#I_h0(p0GB;^ zDbyVQHAI!Z)-4$KqRKI4mcmsZRck7uKViW)X002ovPDHLkV1hf6 BnfU+! 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 5a79fab7219f930a8d44405f42d330d2124ee4cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 451 zcmV;!0X+VRP)SCD?8XwQE7fKxvZKg%u`KJ4u^X7xvq|FJazq-X9Vg4u=el9LFKu^E9QM zZ{#_A6WRfos-gDW9dJ>wxB=(_z)7cS+W_$NF-`QgQ7RAswEH6AJC2<=Po0Sc09jYB z!I9w49zdrVF0+=Fw!j^5agX92fUPCh0(_NyyUDcx47yCl=tXRlS546F3s&bM699pZ z<=7I47E*V763<`wC4WHdet%G_2iepXq(F8r^IFS?(XoxL?zT0_w+V{!n*Y7L*b&1PPO9zeeW>&-r zV8j{r5Ac&_zVFG}0N#NIAU(scYuk4!B0mUTtm@_(U9%|Q7}x{WmjwtTS6Z@AN@QLE zu0C$Ilu`{e`?GHNZ2$mQ+x{Vd=$ZHP!U5!xA@g)V*Ej`X!2ECk8MY5-<)?%+9U!;J z7l;$43S2a#Wfs+!Y6soWUqL0AZySnY7+=6Hurm&-&PKJd6ac_^GW!z7*RT=xnNjwE zr{F?J)2VvR?KlChC)PP3&8ZWN3_#ny1GtO!MFvn2`GK@#VG%^6v!Im7yn1#gtCs&H261nJut8ny`Tzg`07*qoM6N<$f_)XpcmMzZ diff --git a/editor/icons/2x/icon_mini_input.png b/editor/icons/2x/icon_mini_input.png deleted file mode 100644 index 48536e156c9b512989f0fcef677b60c25d602f4f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 409 zcmV;K0cQS*P)Z zB8^0=@?_FTW`nJPmGzF-40s0~flkhI{EBGK6Y2oF9oPX%Kzlk?y}RknenK5!w*wIv z2wcxO{urxS65YmUK)~U2tk06_MsHEdZS@8rshZ!T4-yOCK^0y5rnR$We1v1bP z-#6~)#}bs0s-Jo%G!SU-&Chv`Zy<=rQ#D{9&{uFyXwG%kRO2SnFfaig45FdE zQK{~>2FpO*Z4I>3M956fpGxT5yCt_ zQ%Ti^GYz2UXAJQ7uPg&I^DG7i22X?=7^BgZ5h_2(4gm`pt|v_Y{-&b|Ym;gYMNwcT z&Gi^fh?jwZ;R~`r!-=;tG;;tpz{tRG4VnMj;|E1+7*hPg(c{%o!N|=Q1)fo?t*rn8<)} ev`skT9RL7O@n~U{uQPQ30000al89P*c0otv|MJfY>eVqbUD1|gG9mqG?cfPw{ca{z0oI4aR`k`dgF=$=T z?(y^-%InxDl7(Er!8s>qXs`nKnTZ~kQUv1;ty9JW$ku@(Kuuzd%HkvHh3}WYNn&LL z1Y8l^X?Mnje-RLi5JKLijq~EgvF|`^_oGEkX*U44y%9mqEr7{S1+BdU{&nS5d+Oe_ zF>^g_o=hVcHY)Rksr1dUPjll(i<&h7$3Vb~xmVf^OcCC0h+Q<{ff$Xgh1*Iy^L{7+ zoS*|sDFOzb_WA!@z_>$ehPv4&;v|2;uvLBY%AyHymxv-HE@sYo^96wtS$Okxwg3PC N002ovPDHLkV1gRlo6Z0L diff --git a/editor/icons/2x/icon_mini_matrix3.png b/editor/icons/2x/icon_mini_matrix3.png deleted file mode 100644 index 276b48d7227f1a73177332f5577155509aa92393..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 472 zcmV;}0Vn>6P)BWb)M(Hw}M(YAF3?v#!uHA9* zK0ASSU2I9BUtN{PCyEyc(A%|mp|#3d*Yq|LXj5pG7YIylR{Euxl z8s;CxivQ)W^+(5B zK1Su6F!wPk|5<=rPFis^&GB0Jqj&)TWTbaQ-v8PF O0000b@?P)f3v%#kbdBrc#?Q20ig)J6t#$6wKpvY#Y0b0 zBlMp!BASav5J81rO7$u%#dz=}v`~AAr3cw`{g$+wcRX#9CYv-i(SrJ%=6z;%=3(Y# z-i818*CD+o*!cQHJNd_kuL^+YXSYGtP*ZSI<@@9EbO*rdRlqO61wD(%-JqQER{R^s z|FnQcOd4cyd3|BWIN)dLlfo^E>RDdi|fEpOz|48aBK8v_$r!VV{yya`9@BKwa7k`%xzXJnQ!z9 zoIKbFlnEoUw7kABSW9N?lETHkVLaR~)xqz8GBN7zUhfd`Miaw@=K*#LyMaLyZS)mI?aR}dT%~V&Ad{HcRI6I+P{jnz zA%Vh*D)VmAKY#An?JWSOUjmw;gw2#IFoiG`lvDRSKMVA6702y?ZqRcFYOkSzj?ZEn z9Ohd9{J#Hz;(%1IoEVzj+VA^*UcvxnRV@mY1P{h!cBhZI|6=?E4#BkpSx&w?00000 LNkvXXu0mjf_^b~> diff --git a/editor/icons/2x/icon_mini_object.png b/editor/icons/2x/icon_mini_object.png deleted file mode 100644 index 7987f750ffe684323fe18cff7c2c640485463256..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 507 zcmVfThsH+J_Z-8MF!1Azs#|Rg;u+39ec}p_bbNY@HmohsX z0GjS|Q8@Z7fMXD9AmoRuM!<=1^mfyIE+)Q$ESDl~P*)3l?+U=m2yQj-y-S0-T85u2 z_Z>hudLyIxmwDb1+keOn0)SyFTp)%kuBatn@ybN(I*PL`#3ak52Ounk3jz0bTDgLC zlq>ZV)oVm-foj}9mP-#XWpOY(L<-)Vx$E{yP1h<19yi0!2)K_M$Z}~?8R49Owa)@$ zw4wOwQvf8K6m$Ww^>8KdmB(aGPTUr@37{jvcIL&anT<(vg8-+j^2Qalo)MzM6}7(4 zs_$9Nleng9m1CU!6#xKQxq_vMml}Z#0@?ta;kqG^p^2ATD_5{mnvUeMW@N0he3at< x{%8O)4)w(|U^<^+WJV?(;Kz(iBEZNQ`2g~($Bk6cbM^oL002ovPDHLkV1nqZ`a zOrx`mZYJwTx=Nyhi`Gd3Z5Kcnz|g1G^mOFxZN9_r5E+QThvd_pK78K!BLm+iR%i~Y zG9ae}rnXOk1yC>4h;R(xQglFxOn4AvEA;}Vp}dkLoy0`KLH=EG5oW8v2&!P6t(1YY zE4R&`ffcXEV-+S=Xbw^t;DBF1@i8)El66eh%#&ngtH21zcHa~$ziu;G*~&3MHp|?< zy`YbX=tV2^p}Swy#Pzu{iwTT|$bd({Ju`I2ZFR?*I#29BMHfB=Rv8mXQW+TOY9puT z2EfsJNj;x;R_>liXjSuW77Zt002ovPDHLkV1gTkz<&S$ diff --git a/editor/icons/2x/icon_mini_plane.png b/editor/icons/2x/icon_mini_plane.png deleted file mode 100644 index 12b5cd26cc471346e87ee159cb631630f20b4107..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 424 zcmV;Z0ayNsP)u$~34V@CyT1g87ld(EAgCokS+Yux^1f zYeS_vBxMSqr%4O|+`GKkb*8L4&`gpK7UH%LBY$uZrDU}vi z@@t(EnGi#(0Ok2Rh;9loU|zbRQXK$KhQz@62nbku?RI*+azD12auOh5nG^MCI{ntd z8@*;5hL=YrX0w$MY8?{T0C*L(AIRx_p#$cW};ldB6A9|EY SK=Vcb00008&`2nOAO`5rfdy4!gOwGjpP&e_kuZc0 zLkFUE;^iwujO|#M5E4^{48VXeFG3JrZ0A@Suv0%FSQQM-e>O}z%5cA!>X&E&mY5s|OJXCMpEH}x?B43=gE;HvT~@=Q+-_WR@b zm*fDrrS&oOO%-7($rS1ZDdj<4qGn6S+^aUf*qTsPg8C_H$%_c7Pa||10>I{D01B1G;~_UQgHi^5)3z|`1q=?2 z%&2N?UeYN#@h!#qSpNrX=l8$XyPt-=26}n~a2dQi_ub@)00000NkvXXu0mjfYxL?! 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 629b01e72a76d0283ee455643fd8acfbe900b3d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 382 zcmV-^0fGLBP)^}>bSnQ|0^kRXk;f&hz!-taK<@TQ&sKdWDft_ED&SUf cC%k%qKgtnlpM;iUh5!Hn07*qoM6N<$f~d5siU0rr diff --git a/editor/icons/2x/icon_mini_rect2.png b/editor/icons/2x/icon_mini_rect2.png deleted file mode 100644 index 88b12e3a3a029c69baefc9352af58dea40d3f271..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 431 zcmV;g0Z{&lP))6qe=rf6#25G!QF zOP|sVk4LuvKEB@tv|Nu2^rPW6$&`~rFMS>)@*;{%(958U0~md}dB8Q?PoJTxDfKfs z6+p?XMb*ONaXwniwE=o1yRkv8Q;zF9aK0>zg!|c~DJyzV9C92nfaB#42`k(34%Ra# zPp@PT*0a|5T-H0~YBFJETS4A|x0S{dsdUQK;e`rLHi0%E0y(?`a$grCn%5A-jH7ISU08@@()0G|1|P=EFX&DpbC Zd;=IDyQDc#vd{nk002ovPDHLkV1n;6!yfK~zYI?Uk*L!cY)}&p?w35d75bS_~n+zY(F=-Gv}Oik|~h$-=VmJhGVf<&$MAAE&p60Zh*AN z13c`_+)mU>Rn-af1)v3>1VrC)n2sMsEJn`k!{wq)KwHMlkBpAD0&_c2iHkNUnYpZv z7vNG=^`z!;bi5T1==<)4U^8F!xn>-m4F=tTFr8O-pn0E+MnUEwNa=_H%HqScKG?@F zmnMrlun`OQ#+G?pd!|&y2bea-XXa}^ vYKTn!1#`_fIJHWb!6twefZr^9a^8bKaE4v~Ud}yc00000NkvXXu0mjfrqYzh diff --git a/editor/icons/2x/icon_mini_string.png b/editor/icons/2x/icon_mini_string.png deleted file mode 100644 index 2264451c739839161959cfa732aa9a3178022639..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 437 zcmV;m0ZRUfP)?;LrsF(Lm>MOz5_8K zTVqJ<;T5!`(S}m#Acjbzad&J~c42201a0JW_s+fdoXnh=fi?a+M7Q8{dP#q@T?Wp8 zLtq2os+19cT5F(!^x$S>K z9w`7g4+es?-)&WH6f=F(pg2$HJQXG2ASA$}(kPk9<6!dCj0b?tU{JqEKP^KZ=c&kB zuu8;vYGncp?|{)$QAe<9%z7$d=#YSFYnThQDqakO$HBm94)-*5Mo)bUsJ4bV!FNOa z!o5MjLoo1c-!+KPA~CtYikYuLxYjj_qN#-ANvWLpwtB3!2EhD(gWdxo-5o3KYL~a3 zT|~O`kSs1hr0ZF#a9NZ$U1R-p|JAcpVObGD0b}4+2~O5Z<>Q`SfJQOX&swRx5*!70 fOc`^HHRizwcn*G0<3z%~00000NkvXXu0mjf*R8{l 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 fa8109b88a5802a9c254f600f42320d06a5d8494..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 479 zcmV<50U-W~P)`rFB+xhKfsnu!;gea9tQP_Tz zqUvjZDLxA=43IjbaWgmT&6wL;D*-qKkOr^<0J*dw<>fO*C^KrmC63GTZD-r<2^+vZ zCw~$}j=-!pW4a@3fM(ttV4Q$=>~m?(G63Mr9}vj?(nYCS+-L(p?r|W^)b`>L3qf}J z6C2o*3^*uPPlnB-#9@bX4Ojia)p_ET)11o=>lRESE;}>-5#=)mdGimj=c9Sgc_*Sx=Cq4;7!dD3fA?9!RRYl?2I)~sdbYC*OHnMp42=7o~0a}ET4%;1t7er zb-a5mhUMjMH)_5Bt_e8&SrA7;!wc5{p8=xAmX@&8Won002ovPDHLkV1iDi(+mIr diff --git a/editor/icons/2x/icon_mini_transform.png b/editor/icons/2x/icon_mini_transform.png deleted file mode 100644 index 5144871c5c0c357a43cc8c6f50b6d4bf5bb1b6b9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 539 zcmV+$0_6RPP)bI>>9Eb^&r^fQ6eY zUH1UMdpzAjKz)_Yy?n9h0swa!*`Y1UM0CKw27m$p*lva9As~n|H9f$@b-5nXNsMij z>pkDE4Rcl>L^lj2j?^?jid4Hsnb_#QE>>v;jjN0Z`dU>aYft(8y>rVG(AsU846yLT~#X3tFrLee69 zIfi-wu;PiC8dKnyG4s&8P|B0@X(b|aV&cf`={H?f5c)@2kJ4hl2}!_jRh@LEK9{!;E>j5@3jOcw_<;nBzvE&qVzjf8kjulp2@Q_C!({-OCk3?BKFr d#6SKfegH9r%edX}b=3d>002ovPDHLkV1iKj^sE2? diff --git a/editor/icons/2x/icon_mini_transform2D.png b/editor/icons/2x/icon_mini_transform2D.png deleted file mode 100644 index 4237eced1809637f518138d87e6090d3a184b2f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 602 zcmV-g0;T!_pdof%+kraSpCA%%kx;2uih4j@$xwi|@qF+hSuU2K*s!d&srZ>Dr z^AF*}DqIoO)X)z3&(-YdwmRgJ2u}jWtmn68=5jjg^do>5V~*whhAs{6qcbQ^2ey7J z?S<%90Dv*6RvvUG)tdv`-xC1hFZpM6X;#>)8v-#{!h{Y{PgsEHIV_;nM*$I13d2M2s&b7I9U>rXI@TK zuOB!-q5Af$v4MpqQdsNc*)_qBK5EoysceH{`CSahCQv4^g#8Pz@CF!f=N~k`jCF%e zmacE0P|ltsU{_J5fp81Ss)mkbI`wcH!6_g0rRxCV@DdnqQ~op{?%kN&uC?>8lpl_W z@}jvZx$Z}x_|unA*3^)xg?K$G_jlVJ>^6c^woU>V^>#F_q7SJLt5d|`jf5e^gn0IIXRi=F-HZU6uP07*qoM6N<$f^xhS<^TWy diff --git a/editor/icons/2x/icon_mini_variant.png b/editor/icons/2x/icon_mini_variant.png deleted file mode 100644 index ae0aad16cf1b9715f214b402a7be5da906f82e68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 405 zcmV;G0c!q}h{a!^v$PKRFcMoK4pR z-3K;+jDPT~P!WKmK}SQ5H{c$)ObtiPMyWcAnwz$70P2HI(OY(I1w97J;lsZn^RaW{ zd%0M-IR7V77PO5aw{$ZtQ1@oK?T*5efTF{k;R$56Bcy!r$8`6lwM z8sNbnc#}zU+Hg#)yau=kB*LzzlkkmZ!OCk=!%-8_yEz;fz}9OTrRqpk_U2u})@uOH z3zhyL_fl4HLA!)Lpjol;O2po;68SIqOOgWbPIQ1Y#8=nr00000NkvXXu0mjfT@Sa( diff --git a/editor/icons/2x/icon_mini_vector2.png b/editor/icons/2x/icon_mini_vector2.png deleted file mode 100644 index 9e608e61c135bc999d3fa986424d5d5b7f1c09f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcmV+&0^1HDl6DLzckVHF4SXdlzaJ(+n zq7M7F^FF_v zllO&7U3AHL2Q=Py_0MM;-Amq!oHszQ zn!1ojZT(m#5O%q z`4S6TNR`JuYgiRGZWT(Yrho7ES~uspycBo8iJon-eDxpt97;#$&ObH&gfod^SDL zi`nnWt%<$@O2Ox}L8=H=H*;lna%OBBj8W|G_kmK12m+LYww%m?;0f5PQ+I(vy|tUR z9ZA~?_0ygk34lUf-1z*X7jiWBOdN6J^P_?o25^Y*0j0RpPUp=wE0j{ropw5pQdFn` fhogYG)Wy^=Ts!q$??nD`gi zQBl|_jYnc_r=hSg5j-jyqee`KQ9A^qA-fO~V6# zC@3r>TFR|(q`W~;#1jCi+yDigjZ+DvuD3(ws1^tm z6V%O6Kdwu;>rWcp9|E6yjcJHW2v$B9&IT^`b;MO1ppkj&fzY4MJun0f${v%dR;gJ&XZgm`{C7IWvZKjk4vd5MYApR%&R3Zo?mR`1o?#` zD*B~KD&Jz`mx{Z0K<7Eo4n3a&g+lddJbWA*4;2b7B9NQ|7S4NWLWP1CKQGViNFAV* zyIzjHq2B@v-D2(A&}|Mx3dbU{5!ELalgBLB&XlA2#G;67Ae;bEFNq`}@HcHz`Sr8YiCf?TG@rgt9mr~>gYQ-btrv^PFAR| zAbkWKq##nq5bPqvpH>11jn|CRRZ!_` zMa0X%Mp1#6p(~AWif1W*{W4JWovZYcHL-pf2w`{MVovwYYy4?{=Rl7lbcU`$!2WjZ zs0@^rfyL$QCAJ?`yuw`&Vi9?=A;hJMx5^s0s|R}j7Y%UJ+Jds9R%k%%Z~N{^sRkw; z$B114%%XJw1K@R>!PC+VOgfGcXq8x%lXwW%yDj}mK%6CL4V7-@E(o-Wo!lch$jVPc z?ivulXzEp?jHJwgu}UY`91y@r`YluW5k^hcNB~L+mJ!^Szc&a&*a|K7z6@pF)h$kx}MHZUgc zoNIuG6GS&abIinH1gg4l&h13xvRBBRAU>wi)@guMyA$0G6eDf_t@v1t6e!wYumgWh z*TBZlyUXM?4WM76VZR^4_1DiQ6Y@~+LOoAd{0CkR}2Th%w{5ToTlj{rmw~VsA|?U z9AKVv6Wup95m+2vF8RI~YXof#U}hJ<8{p0C2(Vhp3Gfa~fwS1Yo&N*g`*N{9Ns=uQ zsY5lY%@wRgJwOl81M~nrKpQ`>uc{eersG;wC$;(^a0^HX;oLd*@T&mc`&VEWzD>uE zm0OEVlO)-RSx#-PU{)QL8IxMsH&Nn32+r_!+X{B3B_fQBS5iI-~a#s07*qoM6N<$f}xnH AV*mgE diff --git a/editor/icons/2x/icon_mouse.png b/editor/icons/2x/icon_mouse.png deleted file mode 100644 index 9c4a76bd4f01b1add41bc30dca71a2fa54818c1d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 476 zcmV<20VDp2P)d+%E*Go@~$s=fq6?j`Cc$s%)S)Obp5JET*k)sCTw-WPLmoDJFZ;8n12H^{aX11Fw z&~CS10go~WxXEO4m@FV7FEWG!U}n#g1%Riy1b}Bv1Ri7**vmL;%N=9oxB8#MB@4@k z*MjI-@W0s#tP_}K%(-qNaFtPD<*aoA=NScjvVe%x+Ue>bB4^10RaK3Eiwyaf)9Lj0 zs^Z$EQB@CtpPQtcS-&WX^d|t|ocqOW6>l2;X2t)ld}v&WWXnlaQf86O!xjHpfnNbf}vag>F(r@dx-T zD(FxUogBLKQE?Dlbaj!?!5?swyji*xd0_A7&^$;lFKH6R#T*EnbCUCYU+z8R+yMW( z$6A|M~4akun!=tuKl4PedhqkvJsm8Kis zw0o8$$@@OQMNw=6cwL2!)3R*^>eKGPTD#Geyn6Nk9j0ZQfL}F#H3)*EJkQrIBhT}E zEeL`m0ILmH-2^!2o&(?_Cb_Pv(=5wYnrgBvTT#_1$@N;A6;?k1#+a#yyr}0$ZiZp_ zvZ*Ev!&f9X>p2nGGsaAtYFdwEB(*Hdj{vsndFR{{RekH_9;xa(kNis<$6F$DHb?*f zlx2CHoNG4 diff --git a/editor/icons/2x/icon_move_point.png b/editor/icons/2x/icon_move_point.png deleted file mode 100644 index 5d135ae2946130cd8e5a16c946a1ca39c91c2eac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1205 zcmV;m1WNmfP)oz?ECL|zW4if-f!Ul4q0lTstWKjunpJ@tOs6j-6Oy_@C(o@A~*gu zg{ms5x=U3Db?L~cYL_eesmNbc)qy7&$o`SUO} zRcSE}YHOjr9a5=s&pn`3L~d3Tpw6MW3cTtwI>ZA5)rrf|+Uf|A07XC0CL&rg7-ea@ z0_3nfa)7H>;o`+|>ubOczrhpWuKvqFcqX$v@)G*{oih`}kx&7^D?p?7t5ARo7nV<6 zLOSi#T0lxwUkVejEs!`k2>JZe3z(X6{xv~(Tv4BKQy^q<(gGq8Xm0+ARjWRxSX|A_ z%pu0cb~7=tGBkc@2%4Mymd#-T>H|q*W0eJ@QoXW$`&&NCeqg`$^}Wr#d!LibrI?$m zR_pmN0qX-H)6tlrDPe+YwpS{c5b06cp1Y3Wf_ zuc_+EnVFeU%d$@9a=8|NsC0H7m%V#UAPyYH8Qpin1dIkq)(3YafU&XNrN>Alat8Pd zct%7H6pO{*ZQH(_&1QFAzkc1DB_c8|B1eEEuqRBwuK|*#rpf{)CRS=Xy%(UNq2X^4 z`MxZoO;yjXTemJ}S=Q0v;o*c&NI^udg$d|gB%rponux<*5ySWj(2%G)5&6V0jA7fh zf6ivJTea+x;{9+Pe*g+9<$ zy$-k&>a##-D&G(rtSc*;bs z0IfLJsA`A-@A>jh_z z`IqDI_-)fPzXcAsA_RC>Rilp;;1*F4=@F4;oKLeafD5jmY2YEwHf;38p8!zRv!yzw zX`XgF@mn++eM3a%;R(JCp9CW#BWntULQYjTB$LT;zfV=8CG!6imSw%Ol(>HY@Lfgn T$5V+I00000NkvXXu0mjfQ5iao diff --git a/editor/icons/2x/icon_move_up.png b/editor/icons/2x/icon_move_up.png deleted file mode 100644 index d8d7f5a20709d5031be9d9721d4ce4342faa4cca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 505 zcmVq^IOlVOkXryVaq2UQqQzRRc0X}|AP6c_$~yqe@M{21Qp)*yz5be} zUm;Dg@B5CF@&W+UT7SdGan*60bKm!!i2=B-yAQwv078B~o)LSDvAr}sN4|n?x4Tj( z6i$YCbuUm#t-7vz`fC7vmaga3ePSTRQYKzO5Cj!M$h9^6(;BD&yc_4~VzGGH>2zkt z0x*}(%xkST`joF(=W3}`x@x!EQ<(wGr89KE7(2FWDWzus4lU4ya=E;l2|x(Z(pqm? zX`gexGswd^-v;1Y=`A5dD>VQBoBS~h!=~qXa*)CEJQ;>z6To9auaN*ueE?W)G#YP7 zg>lVt>`Bx>fGCRA0lWZsQA#x_r4J**f>QdRlxp_;aj(A0{2B@&lr=QfU$v)9rr%T! vkOSlZIY16D4#4w(_-_Er*K*ivmn%tM1a+w>?Z$D_00000NkvXXu0mjflUd*` diff --git a/editor/icons/2x/icon_multi_edit.png b/editor/icons/2x/icon_multi_edit.png deleted file mode 100644 index 93360b93f70afa91b917420708a7979e19365dc1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmV+}0@3}6P)#^3} zS=5(ek>@%6#$YfI|9e?K6l2VgTW6VCuV*oe2GDYNNaVNGWkY(9k zyWO64yWQ`8U2A=ylsX1*-7Ei`&1QGgG@Wc^1jd-5h*uq33#`?xNsBa+@mB(zE$?^lYB?=X&lF2i~7p%Kqy(3?TN@o05>bGNvqX* zSRIG8wi89s)URzkg5uZ%Z~)i|jiUa1nPt@6{s7&P@oC;Uj>?i2L(2OKlb1DbyIqXwAK$uo;3x( zB%qXfh49;63;dD*fcs6tO9JEZI0CTSB)lX*a@aJyB;cG|Bv1>yBp@Oofgb=)oO1_t wzyYA`t#<*OkQ^zcMj|rm^?J4r=>Pcn4Pj9{lxGEd=Kufz07*qoM6N<$g7?4usQ>@~ diff --git a/editor/icons/2x/icon_multi_line.png b/editor/icons/2x/icon_multi_line.png deleted file mode 100644 index 5d43b79e8a76d91d97db6ec36d74e3f2384c1a5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~4PZ!6K zh}O5$4EcacnXgX&@IU;c@LUg`ZZ=b%d%hMCySD_LdLJSkveli%Wy!hcv9i0bEA`)F zVP-gPyW!CH7Ij-z35FZ*8ei<+f63dQk&R*AduF-&>Mu19Fz}>)l#u;=;AS$=8U{~S KKbLh*2~7ag#5&*r diff --git a/editor/icons/2x/icon_multi_mesh.png b/editor/icons/2x/icon_multi_mesh.png deleted file mode 100644 index 35b99d669874ad651371ab7c7fcc06eecc68538b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 591 zcmV-V0H5JxI(x{umM)=h&(LnlivU<@ng&`{>R2g@0X=Zs>Th ziNg`X6CgxnL>TpCw|`luxK4w6s0+-9N{$hj0S?0%iy&>of;zFIZfc4%TIs dr@y`u{suH$xn645m2uA<_ 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 f69768c6e353bc76ca4985ac1170c3969f43746d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 653 zcmV;80&@L{P);eC~$Q?+Q zZCR0Hh&%&e0E~>agU->>_cp;NCnvkSvGEQfPXRDQMn zoI(^a0Gyg6c~u9XN|g?96e*J=FF^DOt`oPr<~7Ih=_&x#4gladz6hKk(f~fL>O?Jo z`-G?s;6NM(5JXv90IpsVK%AK*v0hCCahzHr0N^MJ>J4b#zQ5*7|ZX9Bx+xy)!|H766M~ zz(nsMQg#;TvewtLGojzj{DAckg+L^LTLXE%-#AcP(VUr`N!=#aU0*nprc!5}dng^X z0a#V@Goexg7I}j3OgJ{yK5p@MB&bmzg#(>_|4J*h2a$7#{01#^3} zS=5(ek>@%6#$YfI|9e?K6l2VgTW6VCuV*oe2GDYNNaVNGWkY(9k zyWO64yWQ`8U2A=ylsX1*-7Ei`&1QGgG@Wc^1jd-5h*uq33#`?xNsBa+@mB(zE$?^lYB?=X&lF2i~7p%Kqy(3?TN@o05>bGNvqX* zSRIG8wi89s)URzkg5uZ%Z~)i|jiUa1nPt@6{s7&P@oC;Uj>?i2L(2OKlb1DbyIqXwAK$uo;3x( zB%qXfh49;63;dD*fcs6tO9JEZI0CTSB)lX*a@aJyB;cG|Bv1>yBp@Oofgb=)oO1_t wzyYA`t#<*OkQ^zcMj|rm^?J4r=>Pcn4Pj9{lxGEd=Kufz07*qoM6N<$g7?4usQ>@~ diff --git a/editor/icons/2x/icon_multi_script.png b/editor/icons/2x/icon_multi_script.png deleted file mode 100644 index 8a7dd4ee112e8ed977d77be6c36cbe9373643700..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 586 zcmV-Q0=4~#P);xzwE{%s5rCf}^37U% zzr3fa3uLM~BPz?X4G}p7a3&(VF`i%!_yZpR-0({m0FG4kkePQ>^?lG8(bMsG{3%J2 zSE~8~z)in(31HtCb5bk7U)foSyo?EeUhHpbY%T%ZHO9;&??MQ?!PkiMI`XKEs{WWK z4+;Q)Ua$8I#kH>sBUL>JZA9yUwf2pwzOM6ZjA>L$rii`*=iFNq@$3{)0nEIENIZ!s z1MoP{^IL5NTwPz9rUt+kGjIDhZDQoi{Gi|O|87eT07=Pl3IM8Fc|cX4SCNazjDxxy zS-BVFdH!Y9GgV0HO$xNl_86LW!}SYb=G#QHr>gG&oL`rKs}KwZgI@qX`VZFHC$Xl} ziGX=H=ROlrwE4_udkitVX--uYqL(r9bs{Jr%d!pM&pSs@z+^Hx#@}J0Q!G7@EL#U! zS3*BD?4y`qrWh?l-UPuA_}Oh2#ZdB{h&HRo|F{nP Y0c!oYdkyptX8-^I07*qoM6N<$f^|9n3;+NC diff --git a/editor/icons/2x/icon_native_script.png b/editor/icons/2x/icon_native_script.png deleted file mode 100644 index 31cc130867c3704fd6ac02ee7e4a57cb0f00548f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 698 zcmV;r0!96aP)$VG3nL(cCX(5D{*5WwUwOY+D>Ltqn0JxYHgb-8O!T>~6H4c(;)1VmvY#zA)M06Rz z7b1G=`~LZKj+v*LG4ljezu&JD(F*__BHFR_G46q6z#{;aMEV2ZJ~Qu2DYu#Vq0vl; z>x04InNsQwGv5ZVmZVMqT-91X%>_uNtdnY<2mk<%&+{~ZO)2H2o06sFaYw1Noh@&`;-vKzPR;x4tU<)GRjI^t@eqyTieg6tGKhE<60IjtE zO8g7LFnn#xMN#yssGl0YWWRJwn2lz$`O8+{Xf%EjQ6Ye`f5WAP$}6zV#IoxD`3#)W z8g_dC;FA#IFp8psMx!y;)m+qP7C<_V9mm;nUH5wlfSEq?Eom1d;qW) g1i^)QZox9~7qZp`9B;K$e*gdg07*qoM6N<$f)+A5_y7O^ diff --git a/editor/icons/2x/icon_navigation.png b/editor/icons/2x/icon_navigation.png deleted file mode 100644 index 3cd838d2fc71d04cb2272ec04af5eb84d888428e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 534 zcmV+x0_pvUP)h<1_(iQ-521(p_@ zRkRZP6%nkp)6zmDAiA5`YawDZ+2qa!EhMMg*?Z5NxjUS*z!+nUfH;cQ<1j3b!ciEd z*#LXARsdY(9GWG`+=7@gmZ3Zn@NK z-udu(PoU^rvu_{CVxds;<@1_=934%$Ah-uPlTq?yottB$@uKDQnm`f++XFTSfa!$X z^5OInV94gM8f(nKuLy{vXdS>%-xpxjCm+-T46vuIwbrU@RhO{K_e)CNH*G$sCeY>k zTB!43sDPiouZ1=rh6?E8`&y{-LGuZ6c{~7BJ`B8snZB=uA|D14XZk+SCJ?3~|9l%=GtAY8D`BRz%!M6F>yiMT3 ziL@r__3O-&d*w@=5&!@I07*qoM6N<$f^+8kU;qFB diff --git a/editor/icons/2x/icon_navigation_2d.png b/editor/icons/2x/icon_navigation_2d.png deleted file mode 100644 index 9efbeaaef09565912602ac9cc4454741a8dfd68e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmV+}0@3}6P)(o1<409Y6EY<($x8HdM-E5J!P>i~uU zB$MD;Y@RrWibZi8x}WX}bPDCNxDO^^`gLsqBF{TYQ;qTZn+Fphz}CMt8q-zN!1@vH zAN_g(FYyD?C0=mTeEDH{{LF^WdIR(l8v&OC05O!b{vEA0P%cZVIrirqg2^5&Kd*06 zQya^yX*sPn&`ej~gLK{~zX<6Q~&?~07*qoM6N<$f{J?guK)l5 diff --git a/editor/icons/2x/icon_navigation_mesh.png b/editor/icons/2x/icon_navigation_mesh.png deleted file mode 100644 index 35b893c3bb67264753221f745e40c1571f545bca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 806 zcmV+>1KIqEP)Wwro$fvN z+;cwf-g_?h!BLmEJ6g>3U@(tx1+WlV#;Q)qPU=@86|jV99h7G zBr=PwWYFSFFQya-o~unFX4>gU$fWfqarXn^jTbR{-4*3N12m|2%hiqmFLgC{qZI%d z%5EUW3E(EM4&X0mBW$8i69i`f=H z9U{0LCc-_ppRO!KfpK8mZg&O%8f}NZ@HoZ3j{$KYZnrxJ0DJZ0|-S!xFs^frr-=nsz^8f(SbN{!`6t?7{+u#Av z;!LmKAkIHk1FsGGBX5o_a5% zq)<{oxq*)xK$hFfuW#k_^me`Hu6-d-)JRG)lb2*BPt-^vgt$++<*QhXTll}y@5b`Z02T)?p kS2uF0uZ9xaGv1NWKWnKFX9NO84*&oF07*qoM6N<$f^s%)t^fc4 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 404fad2d31812142931ecd8dbb36a6bcc287138d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 867 zcmV-p1DyPcP)9Au+Ks#*#gjGl+>HN2A6{`2(=AHlmG23j~Z5UXGc07Tn&=?JmbHUTApLyf^R1 zXXnSeIpDYpxeAv`rwsEGFkbfCJII9YhjDcU(UXf*doCGV>@0L9Sx}HHgG^SZkMD zA0y>3i26a)Z=@XVC_oLOu^r6S+=&y-eSvvAb=)a{7{m%qOl;Qcl}h~}YJ4@(FqcaG z9S4XYo*`u4d~z007YR^j}w(M2RI&vn2p3K`;<^NVBz)YO$DSARo6g z(9{zW0F^KtR8oG3J18mFvOu)D_i1zWUqijHPzLk$b_>*a2|onlVpFZivVc0Ms1E_6>joz_OWb7m7>Z?hSyCNbTwn?{W@ct5E7yQL4%+ z-!zh@>6)4CmN13@9;@od!f-7&Faf-;s_)!b?*wK6_f8;=<3|qo1%ML(U(KvH4jh2a$;Eo7ttGvtF`d@Z!0G*|d|n9@y7cn$tM8*nAr}1WhdsK2wLO@Ub#xC_xG|aTM>~x5jiBeVrIpxxHJ=70^epNuh*PvC}RI2@PNX0000No*)uDrn4KC`h3jH(eBp#f6cUhJvOubGxVy-z1qBfb%M*nC6EKacnDcgjxONVC6Kq7b$W_% z^BIP-${C2u@+LE}v0kiHZA_6UwQvMNPJ5G?j|#Yu6X-(zq+q94^jzZt&O#1!xq^Od zrPg>Tf@J^$AVPqL~%jVt}yNZ5wlQKu~$^@JP8!+mfV+OA&WzTaxAlFq{S8D>p&w ztsYL-n~nfu0*s~WO~<$Z&%VA+!UNz#u#>k(K1UKHD0W<%5&!_MomnH{3GhnCUsoGr z0JX2C^B-%sb5BCo&a8y11@lA`-!q3y^!Va5dLR;e{} z1aqx8!JL{47b>7z-*<``6`*=QF5YP-7!{y;KQ7*BCd76@d8^^a#g2E|@tjOHiUmdW zt3hBt6nTb(b;wW_0gRvIU|p5;eFCJs(fvs86RU^fXA4ehwJ&|l!Qy*mx$y&dpJMsWcF3eyEFRJvxlFG#RmZD$1@=+fW%DCBFG<)?U6kl u5{oJI)p2EoiJ^@n@o$U8R8Krt!u|oln*(hr;n8XU0000(;Bkn4tY9$l@r#3t*{>Ha+Qd1};)aIU6Je$I8H@JVEMWR0`-H#8(CnGB zmnI8?!lKyhy&m_alf*tZb{Gr3y~^UGx{0I3BSm~_1GU$|KUoy_3r>gTe~DWM4f3`Sf{ 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 95edb799364ed9a28601475c3bc4063d95970f42..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}|^PZ!6K zh}Pr;iI)w6$0B~!ovp8mlF^kobm9OIxcGZ-Yz$=I@L*EIQ9+&qmpFD=SRGi(7cM3J zK|rGPK!&BkEN(YhgI5iK>^;+37OOs7!R%Ii5J)gGv?rQazgK)N477v6)78&qol`;+ E0Ab`fC;$Ke diff --git a/editor/icons/2x/icon_node.png b/editor/icons/2x/icon_node.png deleted file mode 100644 index e487f988a2848cd0c182eb0bad0a42e9931ca70f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 788 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 diff --git a/editor/icons/2x/icon_object.png b/editor/icons/2x/icon_object.png deleted file mode 100644 index dc0a94aacd7487224ddbfe94176f9ab26a67da3a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 500 zcmVQbg6 z23Qb01dkITM@1B=Lxl=bhoBq-ElShGNnDpA!8chsJNG;1E>$t?eZwY}l*Y)a<@vDcOt q1X z_g@(f9KFfF@Sm~VGrzl{__taK!zhIa=`whHyPf&|AHz=q9e$5 zz_r`Y8Lr=cj$M)jN08+Jc)a5SL^^_G2VlfIg^nQE0a)Xm0!L7s4Jma5$qsO|R%Z|r zFEfZxqx1dz?%)};Ru4|0IeNCR6#^bM-W{S(#jDe6~(l01j%*5 eK$V!o7XSd&dXAibZ#W+S0000P)I(4T>XKti2BWgvppUP4^^U6vNvA%1?2iWtb&2Qbc<0Pe@0x2Ds`Z2|kft%BfaqUS?Jbi;O>kJHXXQnrK;hX9sS z0-r^_emQS2b8jFCg3g5aSSJnuw(EXSO5H^2CK$MwgyF5cGx;qbYG+d5g-$$ef|y@U zl-pCmIs*h;OXmr&UnHJ~CFbj;4KQ#aoiB{XN2UfAqUckGi)c9ytNRKpQ^7x?(a7>L z=MKBB1wYdHNws>(RR3f&%3z7;duam@kq)R z1FnwC$bdB(4FG&im8wFBL!F7=KO!RgtVY1G)o8rUJEMJ!VktWi;viFGjtGzmuzxn~ zajkYmD7C?Wn-&KEDAldFZte{fzJ`hCJ!Rl-5pF6u(VpcveI2IoH5881C!)Ps#Kq?3 zy+WKRVeENp#Jp>;kQ_6xUFr1(Mn+8y0H-Ti82;2@ta`mxW+f|ZK{`x`%ZQgY@Hb*^ tU>>DD!*s-+m)Z9#z1~dioX@~Nk6)u9*p^4v#+Wv64D1+Vo~JN}N&?Qg39x01Y3F(FuPR=o^bMF;YqwJaD1fzAt}h4Y+$oSp ztnGmVYwht(McGXcuhD^s#QgtUM2@0Yb<*03a!V zs;-v+u$K}bgb<&=cs#xf+)wC#*6a1oq5-DU>Bcr-6u>4sAPRuQ8<0u|{1t#|2gCww ztOM!*=K$XO)oG_J%RS&;LjQiX1L^=L3&Pjl`+PJSSyhcc(L_j9-__?<=fB}__#n%& zPryz}(~A1dX7f?2)w-xot`aDUq8~!o2i^mdgvLKa4nJ z$hLzpWB=2SsX#%=64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T^db&7< zcyzv>nt4&y$IqJD<^GFVQ&#-o z(3z)o&(GZLxpMJiIz#OOhIx(mI6sGHmT}&B_g$7xWRl+H*I}3TzWwe~>3_-TlIyKs zlSkJ zZ8r8v&phSW)3;4`{1>3Czv#XD0$rt-#^G_&9upTXc^Q~8J0-VF16PrT_$WOuR9m*>Z@Wjv{!TYPK9|fTuy&YZ)MA ztJ17Kdn*RTP0COO1?+yaz4mO>^I}lkETpF_P0A7g*%H7D19!)Qgwtcl`7a=9&qjS_ ziI(h-6%GzxuZazyaoQ}avepD55MEVP-f-Af%K!>A(QBCpVGscAd=+k6tU?6Q%s=Wa znC`XAeLsX|IE%xESqM~av26gwD8_NFVLt3nWGVaV4Yw^;Az&`5Y1}?A?T7G(BVy%A z0YV{?h66w<0e}lp+qtVQD+$N8*am=n5+g6b6XLxG~+c diff --git a/editor/icons/2x/icon_override.png b/editor/icons/2x/icon_override.png deleted file mode 100644 index d735a1c73482784109bc3481a7f01d5a75513954..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 488 zcmVP)`wz0##-A;3{jN4%JS^aeDBPD1AiTr6%>)S)_Oql3P8;< z_Y%O^7}NKCf8s1aMA}NJR{(X#!u!mPF+H0IZQG@_9+XfV0P0%n2WuT$U~}wcacv8D z8JjYD-fT7#?VHVJ%vgSA3s_I!pMOq8Vv=2)&+!%j7H5oa!Pfam-sBZOkQ#tnt@Yb< zIz3MbDAD=yNH}9Gpk(LEBX-7JBRa;h+lZa<$DJ_iUyy+0U8~i4vc-3Ag@^=7smCID z3!i{eY8ZxLH*Z}ShFzu9uxMVF7F0=&qA04`7DQ20B{>3MUGp6Q0MJ>l*VeDw#5yhs zorjQQAR@v3dl3mprrwt>07%b+Yu|S%d<*v2&ch`DtX3;C$;{%g9L-Hjhz!=j9Fh4>4k4mL-pAz8v{=^v51Mm!BafHGPk|WRaE*g!- e`w{a0QoaDQ@t|TlY;<7&0000ozo=Y3hwClNr_gvxqCXyH*EOEncDvk$G| zt^aRd$wte|745wPi+#J&*nMFq{`y27Q^pd>ptt8?t8cUBWLww#)g@O&jLh_ zMmRq>*fG<5788TPRWXSyZW9hB#|7bx*>6up?f$m%q21xmj7ocD-^+V^WA%kA_}Ceg zqPEO+dCs}xVc(Ijp|#I*Uv%%bt$!`f(x@Q7(&WIcw~9$=(`6A0_dt{D0xMinPM?`< g(dRFJ;c%gv+ diff --git a/editor/icons/2x/icon_packed_scene.png b/editor/icons/2x/icon_packed_scene.png deleted file mode 100644 index 00778e8c0ae8ba4e421ad46c2fb8573932b67aee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 569 zcmV-90>=G`P)ffV|9%nBKQxO+-7&PsUk+WBN)ied@U{;*F%VKcqwjQHQyieeV>_O zfI=r-{NDyilB}m`x#Bsc>wf+bI ztyXJ448vC>?`3I8P#6CIh@$AR=Xo)J9g^FF!Jv~hRIAmWBwyqQDy8lox~1m; zY%ac;B*}Vi#xBWQB65vnQ)|7M)i}Sh4H0>h8}P1PuiwbxAP8!n=LPuvWT~~b*=#lk zSx*>-_j#b6wYEDRkNfR*dxj164+-%X4*M9kXw=OYR zDfst(nMlq2<`3_Ue;(Gl`Rz#DbO(+tT6wVzdn=6Q{|by@uzAG3Ah_^HuG-c|tdHM) z;7FL?FK@oylJCK-r2OvZC!gJG`FcFQ!%=dkxVWs@hussZC*iK||q@UYZmh@}#yB8sczt@+P Y-+F7zQ&FC>7U(MmPgg&ebxsLQ0E4}DivR!s diff --git a/editor/icons/2x/icon_panel_container.png b/editor/icons/2x/icon_panel_container.png deleted file mode 100644 index fb2980ee8bdac0a1d65288728089b4da39c1aa12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}};o-U3d z5v^~h8Ri`_5NWfwUgN@bW)7pDWB8IV4-N}f?&%J5m_oCxOHv>3#m+q4rIgT`F4iM+ z$gL;j>)*@OWmDd7p8W7&eLv^y?{CY!-xTtdG*%s5!@OaV%d*E?_Um!RJg|3Iobq#f7af3hS$^e)%$ta3ufN9e5Ty&#>->v@v3n(q1<8I_iJYC75&%mzWK!dm+gcXfXFXFtn$=3J|o_Q%sIfWBt%boFyt=akR{01I7w^8f$< diff --git a/editor/icons/2x/icon_panels_1.png b/editor/icons/2x/icon_panels_1.png deleted file mode 100644 index b8386daa2e0554c63968acd69d942fc774e92004..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1SJ1Ryj={W*pj^6T^Rm@;DWu&Cj&*aJY5_^ zJUZW=HDqL9;5ck>VE+lvgDf>G8=S#BFF#$ diff --git a/editor/icons/2x/icon_panels_2.png b/editor/icons/2x/icon_panels_2.png deleted file mode 100644 index 4d9f3ef7247797b920e2dc4183bc1b0c3206b993..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_bkPZ!6K zh}O5)92prDc$hcx{a1R;lJds!oWtigTlPl2$?0PTs$yX9@HCPW1ThYLZ(v`un7uT! RuHid~@9FC2vd$@?2>@$>CJO)n 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 69aeecce346dad87842957d60d6beeb5b6c5a401..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_cnPZ!6K zh}O5~HVQH*@Gv<%R=HWfDreDJ)AXMuA_eir#bFcPt=qob-dgf64^TN0IKX;|ll^{` R&|`Iwpr@;!%Q~loCIEMaCSCvl diff --git a/editor/icons/2x/icon_panels_3.png b/editor/icons/2x/icon_panels_3.png deleted file mode 100644 index e889504f1584169666dd3fbdf963c19b8338828c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_b&PZ!6K zh}O5)778*La# eBKI?ag&O1!d2p95y4W-y#PxLbb6Mw<&;$TWsx4Un 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 1e9a17ca7589da891aba7d5672f742db2dd57684..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_cbPZ!6K zh}O5)HgYm3@VEpj^G*7@e3$Q*t-*Z_9RGJUaQ2%Rs+>(zF-~58*Ya-WDjuL7AP{)2 nUj9(3j$0zsUdjBtIYf{_XYWk@`d^2GEI@ouS3j3^P6zeVgCqyJb?P*?V)QJ>4#$b4@jj7oWduUA^gx5l}r4Xx6xZ>HExj WN)r5~k_Qq$gZQ4VelF{r5}E+an_rc(=^F64RNw4 zYIKk4g+LP@e8MH07JG8|jcU=B1%;R>(aAo>5h;#Wgky0HWem<)a6_QW<|q3^3JiqD zN(^koDlmbP5Q9V}!<T#=F)?K>y&!L#ql$P$DQ1gdR3j+D4+c$UyIS zSp%+P>}1wJgH8C{J@JZ>Hz4Jf)eTgRupb8Z!!Bjt8Wa6SZqqAL6_ z;pxKGc}tqGrwPu4z@Lk(n(%B1rhYmnNUp)X>CFYUYVP&0PqO3ezPvbq-<##^xLc#N z0ygPTGN8n}*f8wd_`NMX%m vv-&bNqbJ-Hb;9tXw#H^OT5Fv;wh#URmxruL`8Y^e00000NkvXXu0mjfX4N!l diff --git a/editor/icons/2x/icon_parallax_background.png b/editor/icons/2x/icon_parallax_background.png deleted file mode 100644 index a81046e805a7c0626a8d15d9532f6b443211866f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 335 zcmV-V0kHmwP)!z0}PR##KJ0|1}h;BW&Z8xh$} h0Vml^z?pL+`3998ti#mwCLI6(002ovPDHLkV1fqGiG2V7 diff --git a/editor/icons/2x/icon_parallax_layer.png b/editor/icons/2x/icon_parallax_layer.png deleted file mode 100644 index 285999df61c29358c73321d19cda40db6b396193..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 469 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 KMNUMnLSTYtW>(+; diff --git a/editor/icons/2x/icon_particles_material.png b/editor/icons/2x/icon_particles_material.png deleted file mode 100644 index 26ce8f6809b0896a65eac80545a29bccd5ce1249..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 657 zcmV;C0&e|@P)*r9bYr%rHqZXuvB1$so zNgS-}ZBA{2p{1#aAK1-KqE6yy!NG{)DiVu}LM)Zgklf>NCQaJpE@zqy>VJCQdp`dE z=kDJ3eO~z2AwdH)kvNXXWnci+18x@ijOt4ayd1m* zIC`c9au*_lp5~1Y?x?k6H%1(|s7N1RwkV+pya5)v3Ev$NyUBo#sMy!r~4u}9fAayGAi+2(DW>iU^c#?I= r0mw@7{Qf`5<9jdgkkC|x|KW#Ue1xv;pG)bY00000NkvXXu0mjfj+ZU6 diff --git a/editor/icons/2x/icon_particles_shader.png b/editor/icons/2x/icon_particles_shader.png deleted file mode 100644 index 26ce8f6809b0896a65eac80545a29bccd5ce1249..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 657 zcmV;C0&e|@P)*r9bYr%rHqZXuvB1$so zNgS-}ZBA{2p{1#aAK1-KqE6yy!NG{)DiVu}LM)Zgklf>NCQaJpE@zqy>VJCQdp`dE z=kDJ3eO~z2AwdH)kvNXXWnci+18x@ijOt4ayd1m* zIC`c9au*_lp5~1Y?x?k6H%1(|s7N1RwkV+pya5)v3Ev$NyUBo#sMy!r~4u}9fAayGAi+2(DW>iU^c#?I= r0mw@7{Qf`5<9jdgkkC|x|KW#Ue1xv;pG)bY00000NkvXXu0mjfj+ZU6 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 5762a0392e3d982db17db0496f3d2796d4186240..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~CPZ!6K zh}Pr;iI)w6$0B~!ovp8mlF^kobm9OIxcGZ-WE3l5oN+pVLComIqZS6e+82tp4-^ev zHC&7_n8ocT3uFbd_gE!dVO+fRVMeY6Sb~cop5MeedX?^6pcM?Bu6{1-oD!M<0r)qp diff --git a/editor/icons/2x/icon_path.png b/editor/icons/2x/icon_path.png deleted file mode 100644 index d10cb37bcdcb7f3d0a8fc90d81ea1bc9391ca2f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 666 zcmV;L0%iS)P)TI(m{7iR#IvS(}AJ;0%4@{q$V7omFqawm;4`Q)~o1H?+z2^?5Z0Qub`A2JX%B4Fl3(umy8G6&|UK(E<6TM&5!@-{>k<^>*^_YJVR5QZX%umQ@5bsXxvl4bBN5Y64@1?Lts}#IyC0J=Xu)_1P3$c zjg-0guPD0c4X@IImHZjxYmy(0NT=X=9jR8o&0{o8nHBJid1jgafH5@{hAl~4BzY)R zfuHN^=Y8LA9|;PMt}f7uGXb!DCcU=)=UP)FkaCh*RcIgr?bL=SiR z2o%uumAW+U;qum`0@Hdp0Zt@)IA;L!_HcPC>lmhwS718hjRu{41%_&R0ZTKkX?{n0GoCX_g{JIH?hw2W=M}W1poj507*qoM6N<$f-CSb Aa{vGU diff --git a/editor/icons/2x/icon_path_2d.png b/editor/icons/2x/icon_path_2d.png deleted file mode 100644 index dabf5ccc49b625c2ebadec49e7a725d6ee24eeab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 687 zcmV;g0#N;lP)B^9l?f8Cu&@)w5F~;iM%^H>u@XfP6oL`Kq_L1iqha0bylY`*Gnt*ljm)d`z`(qF z@60)K-p^e4*C8%nKAB%`wALF(Xahi*wdioJD>LU@z;E)@E6|4Z87UZ3Zt3sHE&v!; z0<87MtH}X$msRg-FmfiKVtX8v_TV<)O6&BT&kDThxE(S5DYru$i46wmiRId$&$ibll6Hiu-1Kr`6 zFFc6WCGNn;h?=I>QXgt>tk3AvTxVuJaRImUOMB8}4*FJ`1e%3XkHUdSS=p$$825b5 z0&d`d2ZJ4B=v>|qhvr^;R|S&OZl=^FR2)eHSS^{?YnfBY9rJS^^4Pc93b+=}2; zlu$iC*qyn)QNgAHCLR}uKt_SOEfTK)Q~rv*bo#`$kDC>4_(gXf70-f<)j+lkEGYWP zhAtwm|91CukQqt@5wRRV?gf=sLBjqzk&i$6aM^ltxL3(-c1b-?=e z3P?Ej9XK=4QFm8FV%OQKLSyKSgr;4QLu3jj z^UIA^WeBbO!xijHSL6_yf}n>Jbhn1$B2o}3HwQgj(x^;9(8FnDU8w4ga1ZB9K&?Go z(umuJesw6>try0c12y(=&IDL=7^F~D5$WNa3CMM2=8P$~Alw7KtzJ{n9_~Mq#xK_v V-(q~V^8Nq-002ovPDHLkV1g&NLmL19 diff --git a/editor/icons/2x/icon_path_follow.png b/editor/icons/2x/icon_path_follow.png deleted file mode 100644 index 8538b1f3b9abc8626db9dc1dc0b5d1065b937741..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 725 zcmV;`0xJE9P)}%ap_PzEh%KObrL!#qMM>3DniANf=FE)L|Rmu+@AY5)P|dzo0v*YCg1Ix z_c=U2-j4&cAtgV8gA4{?oC z00o?`0wABX4Ir4B8iL5l=$#e08`q^;ZOrj;WxKo2LF85}^`Oi17F!O$$;n-7>2xo{ zuvcq+C?rn-*cX$nh1QNGy>A+TGc((55S$RL2T1k_u!q2I3v3ktq7+Cbz75Gs9r^sr zq}*TEaJ5j_o3i!_M9yvoc%7Q%ki6KD%T3giGz2Icb3ut*gGk4wjDY~aTtHsl;`^T( z3F`s`)6=5@TyMhcmyk;YK8wf#$>%x@?@2zt+ze?VK-rk1N~y<)m0W<20Okq2A+VSt z7sdC#He*yT5__tYx*E&<0GU^wcUwe~C+#1jrUI+R>`y86u5v+=z);%vAGOkWBWfz3 zl{!<6DD!F0b7Bs}zG4;%JtA@*>y;6ZVy%7Q${dKafQ3Sj4Z~L;cS0haA(yq*{W3hf zOJL zH=?2&>qLuvfk3p9DqczlygN-qoY(!Ep`v6Z@EWPe71t3x)5}K)d08eFYSod#gih^0_cQ@>>;rm8gUI>dZIDtX3g`xU3K$8OMe~1 ziHG^UwB)h?r#1pylnwG+e=2q}%&;!NL?%B1$W;JaHW=&xm~tI`Y3StEPwN>&e^L5T z{tO`3st8*Fut@N;67?3~%ZRm{?P+iLUJYsB4ouG2N43l66@Y>d0-2`98)eA?^Q#~G zy0?9;CMZmSJD^>C1rYDrF94_el3VVINZ>j9S5@r5o$366h${QrM2PC>?~FdHW$>CR zo`g!F+gF-46%P1XFqvIx)RYmh^bRMWUzrLAJS~{at~6>Lc`e{hdg>ywBvNSZO~w~Z z0F+vwwRHnv1AXU$O4_)+{!Q5TL3q~c#p0sPl*CNJtpkIY{j00000NkvXX Hu0mjf+0{sz diff --git a/editor/icons/2x/icon_pause.png b/editor/icons/2x/icon_pause.png deleted file mode 100644 index 35e6b25294501e799e6c0f3467fd55421a0ab23d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~EPZ!6K zh}O4#y9FB*1YEx7FcjJI-ek9p>|~wG>cBd~;}MTLL-M12U*5j4X_&BI*>qyit>Sa+ z4L_Ia338s>xjFqlPlusa!_q}ptM`9>!yT-9z=FA<^uRvJ51c#+49pS-7}yLBaP8n( o&it*cp`+#0O1pL0{v4WjGUlsBURtVg5$FU4Pgg&ebxsLQ03e@6v;Y7A diff --git a/editor/icons/2x/icon_pin.png b/editor/icons/2x/icon_pin.png deleted file mode 100644 index d19fe7afef72ffda7db5bd5fdc691522f981fe6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 322 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v~0so-U3d z5v^~h8S))6;Bnor>F%&*rB$)GT9v3o;$s#M8OFknBF?hvl`Tg&jjs6U2>M=P6J@Cl zW_$ko__j$5|M^;(W<&-HJ*j+m*3eV1p52kzWy?!#KbPAHK0OmU)`XVcH{EHN_FatG z;d>;<*MBF!pFfcC;5l#4kvNy7tL9m83Qs*Yqj*!}u660xZfQ4EiZe63^S!LowP?rB zrY7f%wYFb8_!u_pobFqwu%1y+lW|Rz3OmD!S3xd&en&@72&fXz*N)N#($iOj{n5Yp zpHcjKy}<8(yKDaFO7Jd`*s*0zyWxUWyTe~QCO+$$xmu(*^VGBcxqp^dFeIf%2`QYm R_5}t3gQu&X%Q~loCIJ3GgAxD$ diff --git a/editor/icons/2x/icon_pin_joint.png b/editor/icons/2x/icon_pin_joint.png deleted file mode 100644 index 304cb39724a0989b00f288cdf95034e923aadc13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 686 zcmV;f0#W^mP)TkMt z_ul({c<6#FdShRj`T8C4I(@uHzIPq7ewEHn7k&yqySS9xxtl{GyfIPTmno+ z_4>LAVh{kQ4dO-G?T~(wYrcO@DfJw{$<}WKKG}|wm4$_`{{)Z}Zi46ukS07W!Wdu@ zo(5rj2n9F_;E3Uvj(b<#FnkpjO21ZfR-(g`FX8GrYUj{dfDfot_L|y%mkxqk1nwuyvtyB2DHJ}ZScx|z@4&K% zIHtY3`%*kFN(2}qI-CgsHdU>5S&GHI4s#?Q!hR5G!n*=`MF_B!COj3u6jAg2^A5Qs zu3JqrclUdM6cJ&)T=qodZbH{>OR0;J%Y8``d{Buup$>v29fptTdA3t1cmmu`=suz2 z_^e5IB0vYh5`hN*uIsU}ReGLn<@3u)2utgC0|98?ztIT)UF4h|9eoG@35ajvy5IW- zuv8j?QbmxJrq}x2Nfqsa5E;=#W)yZ6|8~-hD5BG zxVgBHXyU+Nq6v&F&XU>^;)2Ff5z=VlVhkD+7fCQ+z`=nK?Qu}N}ZrcSOj4ZZF$^9Cx^&jPjERtW1SYqcmc3U&mdoHl{<4Y+WZ43 zID-Cuai~-nA`b-U+Z7G~M7!xjX8hSkTkL%3tw3FX$WI*r!B1_$rnSFoDpK*3bw@-V zy7XCca)=D}2EUfy3BH3E!z5`K;NgbGH=Uib?F!IEl)4iH=f&CTx^`*bTB#V(Y@Iaa*FyifmUS<^%K}J>h%k}f7$!07(rM8Up1s-?`sO8g zr(FMp@su@`cxfjy8TtmggZD|^D=kI4QpPcza92P)WethQ2#6~yw*4fNp)VEP7@xLoi^#~%Sb)A&+kON9B@u$v>)m_4R}C0TF>o*~4dyVZvg7E+V002ovPDHLkV1lQb BJxTxo diff --git a/editor/icons/2x/icon_pin_pressed.png b/editor/icons/2x/icon_pin_pressed.png deleted file mode 100644 index d19fe7afef72ffda7db5bd5fdc691522f981fe6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 322 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v~0so-U3d z5v^~h8S))6;Bnor>F%&*rB$)GT9v3o;$s#M8OFknBF?hvl`Tg&jjs6U2>M=P6J@Cl zW_$ko__j$5|M^;(W<&-HJ*j+m*3eV1p52kzWy?!#KbPAHK0OmU)`XVcH{EHN_FatG z;d>;<*MBF!pFfcC;5l#4kvNy7tL9m83Qs*Yqj*!}u660xZfQ4EiZe63^S!LowP?rB zrY7f%wYFb8_!u_pobFqwu%1y+lW|Rz3OmD!S3xd&en&@72&fXz*N)N#($iOj{n5Yp zpHcjKy}<8(yKDaFO7Jd`*s*0zyWxUWyTe~QCO+$$xmu(*^VGBcxqp^dFeIf%2`QYm R_5}t3gQu&X%Q~loCIJ3GgAxD$ diff --git a/editor/icons/2x/icon_plane.png b/editor/icons/2x/icon_plane.png deleted file mode 100644 index a096e3006549a864d8ac33f528d5ffd404205fc0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmV-20nPr2P)_PX{w1<;h))XVnV1AJI!Q%~(_RCJKe={ESC78E^P!URCq@ZircVHv|`I2A(d zbbJ5DkElpW>G{6jC!#R`F!L9Kh=M6W3J3xfRJ;I6 zGz#znbg7~c0S~~B@(>|X5RMByG6 zQY9)iQX^6uByxY^@P5Qf+TY*^bl+Afn{PnbDX+`rCwplPwY6SHqg}^}(Rfa3_Qy!P zV5ds?t{=|ltZ)FCU;7Arax6n+Zini_0IK)=&TM9d_iN>)--`#i0JODU2d+9+OcK8y z8=!Nv4IDYn6+L)I5Wh*uV(`!3~WEIQasN~=No{k5`piA1cvq6AK?|w+*ya_(QGb?nk;Eq7`=HE{WNV#?T>7Ie({|4Y>^#Md5fwcd9wzRuhg$fnw Z>I5~Tj?3A>h?xKY002ovPDHLkV1hS^_0IqR diff --git a/editor/icons/2x/icon_plane_shape.png b/editor/icons/2x/icon_plane_shape.png deleted file mode 100644 index 8ebd38fe83e49ad8539831eee30920537194b8d0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 316 zcmV-C0mJ@@P)THsl>psE%G zqEmP*a)zaEfZ+)!3*}6ZE~G28+_12u_ote)z4y!cZVQg%ICUpBFGaEXNy@TczbMQ+(=^=tzCa?G~2>M=Xo=tpXJ&93*Sg1qby@>xsYW>>32 zSj6Tt{4h*{jyzTfS>3<=i1MOX{kN1;6|Mk8nKnG;!y{SQtmin6Q*Ud0d~^m;${eKt O0000d)Y$ql<2W zsGHt_gX6ga1$7Y$B`N+4E@!X>OH5oW91axEN$crgpDpCemxnij1nB7a?@-l*Qfk#& zd-hXvlx5jT6h+0<1f-PD02a!zwKn!VZ#M{n>uCwtimARaW}9<<--G~jSkq&S-72L{ z<2atHE8vpAFdx?1W3Ba}5aQECz$JlUW{Bv(_x;B-P1jr+)Jr5^hqk}Q;1sJd;rB+7Z;s< zgz95-EeIJ(TkK@PsZ-M5L9%GtB)18I<{xj)IseB!C-+{UR;~XoR#CLy?>mh~;{w1X z0FXTOeg7pbcCBpl(P(rO$MG$IRD6d2I%#A>#pl|Bwb6|Fs)+*kn~wnD?7SGfQ&vv64KUJ1{jaWn^6>9k?btX zDQcbzU^pBe#&P^a(zwsdWMu_NdH_&~c`ksel?g!d9Kgq~0rlI5y{*K(INn&A@n@2JDpDVNS*?CH>r_m<@Z3|%c#^Aq$z7Y zN^L=!n$6~G5CjL7WgSZjzkPmNlvnyep3<7Fd=zXwok2Ee@CC*&U(GH Skk9G>0000LSa|Nq}K zrNP3`hrvpUckT6cZO2DKvdH4heBR5wnaD$cQ{V$KuFJ#&u8^UTnk)i1zy;FfZ88UblCn3Xot*l>C*WY5XHof^OeWW>={= zBox6^00(itO5I*Z7l}H5nKm}z5{c~ULLUjl+_;7&0-OTxvsz?<*GMk0j%pMawK+(T zQ&%pD@iDFkTu`sBe@NipLf0TlogNa~*PR&=iCL5YvzWiv1&4?SsdKP{q_j<8iYD*T z32;LG`MgbfNWKt4C%}1ewpc^ylS+UNvW?X=CMbr1N`MjR)8s1CMN;SgPzf+D-WF?w zd{YTfhlD3BA>UL23`#J>7DfV8akC>YLcXa4XhQU-BjlUP*(R<40U_U-{Ircw31GaT zSVKa-sRYRUx~am1d{YVFm0*Z1LcXa4cr3vXTZDXT1yD5lQ-UG3SRQ_%5@1C$R{|gS zd-$bFfE^LLs5Qn#QDUPDgyzNCVg;p7IsqQYu@0vKY|y+W(+RLc3X+<_9hwTWs9fNd zW<-TsL;xjG0&EZw>dp-j!#OS+yr$lvv4;qtB~E}XQi@hru80}NCYv8?q~KtbheaiF zhrtjw-Thf0FBYm?AM~6R@ZF@LsQ^19HaJW08(Vn5S8^_r0vSs#B0^QS(l)>s5=`7l zpXLTBL9621hu1}_v21b=d?RHFpLIfW z5%tG8+$$*_@PmxeYMuus-cn9ok&ifiLq!fuJSV6un^Me?nY;a`az|!V_njbRDHF0C znsSlN4CRhaR?0dycZAFn!~Lg^h!P0n^K@)(jqKhokv+UZkIl8Tw7hKo0Y_VpBFtA9 QY5)KL07*qoM6N<$f>DB#&j0`b diff --git a/editor/icons/2x/icon_play_custom.png b/editor/icons/2x/icon_play_custom.png deleted file mode 100644 index 299ac3ffbc6c03dd0048ea1d039c4f27b3aaf1bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 572 zcmV-C0>k}@P)yx|Xzm?Y04x9&09Anf zc>`?C17LEBm1TL>Ik!#a@AfeD%WW7%(c95zbPjk9lt%%v5WsijalGtrE5#T90000< KMNUMnLSTXg*A=M% diff --git a/editor/icons/2x/icon_play_scene.png b/editor/icons/2x/icon_play_scene.png deleted file mode 100644 index 948a2e9ba5bccbfd4fe22b76b5722e371ffa0089..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 686 zcmV;f0#W^mP)m%Ja!QU-FqzDiDL|Gl1(;+`Ky`p`v1A- zp1BwH@V`TLnxI~<4|tw80aQe!qN+!MF>CEx0Iyqum6erzUtiy7N&xg(YcHmLRc!#% zKtWXjXvb|#fU4$_BsttpsyOG$K@eO|{mwZRk;g!g+8T|+l8mMSgM)+LfCt%XB64}nD%}TK8PoZCy*`k>6pO`0 z;DU&p0Y)h8K(XT@UiT>2h{;gB)r1Akif(>XU%DwRH^F;Ns<1w>V= zp64z2zF!lOA9O$};FPM)XY3BBSZiykA&%o)z#*UtRCBr9E8q7&cOvKn4?sk!s`>?3 zRMiDz%z`mye>TusJKZhW9@fL^xW#d-y(G5Q3be;?H?e5}&bhNdtz+O$2`H6H&zsHW z301ubeDApc`2BYbf?x(XuBtD3E+B=qwiX1zcsFg?mQC1ATefWqw%V3mAH%M1L@Ab* zmJa6g`6*yZL=N;+Kp2MO#+ci{@Md$n5)jAnu&Uk>k+H4T$O>oz{zj6vy4>p_y9wtu zk`RXBxbOS#MC1n06***1!$zZV%sDqt=61W2_~$e%6bkQKt=384DbVPJh&=%O0`-6L UF@;MJ?f?J)07*qoM6N<$f?wc0TL1t6 diff --git a/editor/icons/2x/icon_play_start.png b/editor/icons/2x/icon_play_start.png deleted file mode 100644 index 227e1b6f19b3adb5acf24a1329b2f20397098fc5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 463 zcmV;=0WkiFP)0}&btzluk_k$Jh)gNvr4ZuQw(XT+1cs%=7`t~I=Y(@UorC}YXiBMa zCX=yiwb}vad}7=JK9fYWuj~5LU-u&}0RYkNN2~$?N{q1wA;h_D+cQZB_+6Wfu@@o4 zY7zoIQvgnr6!=9F0!;u`5&{yyg_Ls9FpO(|Qy)|Los@E`P$)cxKg24al;WDE?d0?M zt6u-aHG(D)?RuWK+^-xM{Rw;#(V6SId!}iAMhT2kpy!;U3N#RU6A;mBm&_XiZ-OXu z?nm$rSRILvfV%Jdp8;+y8{Y5tAIEY03JBAhqz14) z)!LW{2Us_=BfwiqpwsDWn%V0lNgkU0c7ba%My7?3R87wd3$)wqN~u&jl=KuRE;=`l zxdP2*^LC|D*^_i2=}uO`3kjrqmK0vqm$|^4JtK)(^=k`6QFM1a9=|lRy+6qTnT1~x z==FM!;y8Y9W|{B#DhlaA(pwF#Ou#w!p;#<#NO}W|a~A-pR;%BF zAlR4m0Qi)=ZaPvu86} n>yr{@79~kiUp9BeihqwE)o73;{M7w;00000NkvXXu0mjfEAQdB diff --git a/editor/icons/2x/icon_polygon_2d.png b/editor/icons/2x/icon_polygon_2d.png deleted file mode 100644 index 491ebfaa78d2e649bce95d06bdcb6670c44f08c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 407 zcmV;I0cie-P)1mrh;U|f zIBEMH`yC*X^WI1$JX#+artrn#xc$&!E&q8FO)>uNIFbgi{pDwRe6Fr7}TtyU{Ys>^H#ip63Z zKp8+ev=g!T1!>;_BI?EL=cKw!CNLZh%K-SR+hHsp0*>Q!0k|yWhOvAI@bPbo0U4;k z7}F%8x1^l4_QLbLB}t|}0jB+}a;Xx~TD#WT#D5I{*4nPtn(s!s1eo^MVdW-leFx%s z03S-Ja~_B-+JuO10DN0(`v5AeW^ohtnZP4=V%i@BLC}y=4y2T?MAWd>K7_fYo4^Tt z?nvN?JE6{JMAT7Ab?Wu{B+5xCzdX;oBBBm}8NUgfz~v4kMoOtM4-ioydiA=Gq?Cgo h2pU9G*s{+N;1`jngapxuQvLt{002ovPDHLkV1mf$+(ZBX diff --git a/editor/icons/2x/icon_popup.png b/editor/icons/2x/icon_popup.png deleted file mode 100644 index 7bcfb114da703d302993432d2167aa138da07b5d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 329 zcmV-P0k-~$P)%d=6lu6blv6}VKtW5f zcc7&XEm{F>7^lI=$tEDPEC}JR8vlOJgBVb*C@!A-MM$}Wc+FBH_ b|BdP!&Pzd`h`J|o00000NkvXXu0mjfe{qca diff --git a/editor/icons/2x/icon_popup_dialog.png b/editor/icons/2x/icon_popup_dialog.png deleted file mode 100644 index 6920fa27bf3e22b6cb7b1281c2dd06abefe94db4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 347 zcmV-h0i^zkP)mDnoB)Js?i{cI7TW)88cd!xT(WbL*X~0==X&w&EIK t2Ed|Z@@-hC@}y$UZ|YZ*9ppbyd;ktsOR>PJ+UEcO002ovPDHLkV1h+3qZj}H diff --git a/editor/icons/2x/icon_popup_menu.png b/editor/icons/2x/icon_popup_menu.png deleted file mode 100644 index 4e0246879bf4b41f0bf572fd4e0fa591f1e99a10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 301 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}uo-U3d z5v^~h8S*t5h_wB8-_x+>QK!sR&gXHC=CWVeiWnX>oRQ;5iM?jRxm)RPc zf8yoV>mInFSSdI?{N1Mni`c;5Ys&W6#eL$Pd`os&@C*I&T_+1?$}rset{JeN;iH+} zrNzAkdmG#ig;*^3&9cg6=AHS>$`9YO^00fe#k2NZ&nwfs#47C0bA~7V*%=+Pf4|r? zYy$-6>$WgEIJiudS>Y=Y!7=?zDO2->9sFNPZ+Xu0yM0jm0gF`ig4gnwmjB6Py`v@3 w+YrsV$|29td^M-R<_#(n1D|qoThzopr0F%0Q>i_@% diff --git a/editor/icons/2x/icon_popup_panel.png b/editor/icons/2x/icon_popup_panel.png deleted file mode 100644 index 15d977cc81a5c8da3326ea1d2334b4ffc918f61b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}ao-U3d z5v^~h*z+|Rh_u)DS1?8%6}DU@d@jb(T=pwlQNuCDnYIFFN=hH?jJVw5mb66m*!S7D zo^8E9{U7r`+Y~9U_@9$IUzWK34gK5M7V%`ZkCn2|a+A1sF-N_`*&Dt&bCr}gRIHx$ zNrLH}Sb@inCgyd@8&pdQ>&x~WxX)d|HoNB^m&*G4Z!S&YRy!v-qcZKzopr0EO3WBme*a diff --git a/editor/icons/2x/icon_portal.png b/editor/icons/2x/icon_portal.png deleted file mode 100644 index c934e65fc4dbd9e1aa6ba6b4adb7c0eb28b8274e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 855 zcmV-d1E~CoP)IWXk_Dk6YTf=pC-urctZDw$HW~@%V z+waTweZL>xFw7g^e_!Nv11Az&m8P9!paVe5sys)`(?Zv8QYiHCp8zm371Qang84Ft z{AFw_ih0-~0ll$0|}w8!L~6Pngap-{eDN5vB;1_EJoIe^7NvDj@d2LS5r{agUL0W6lF zfR>_RgerAZ1kiw9^UTa6)dK?y<^0vr=sYvWEg3}NbpaI8={5%1P12Gs#EnW}0H6zT z9n3#V(7@i6M55I*0Hi!G@{*VNfvse} zX8;0r+oYFn0ie_?OBS;|%Nc-~>&>%I*B9LO`~3b7mMo(Ba^6aB!Dh>}wDiL*0CKtS zHf0?EEe4?)$}IThoF+_lLI z04{1m%m9FtvJ*s?0BpColSXLDCkUtu|<~Gy&ui3=J7Nt}_Gj{;kwJN_QU|KLI hC>s6bHS_;ozW|UP7Qybijc5P>002ovPDHLkV1jRVgcJY( diff --git a/editor/icons/2x/icon_position_2d.png b/editor/icons/2x/icon_position_2d.png deleted file mode 100644 index 176a2300efa3444b6c321d96aa971657c1d7494d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_cbPZ!6K zh}Pr;iI)u%V|u-}*Z*xk)Bo*Bn&NR8wIW#uU4vH*f$Tk22_ijA6|oI*+ZHniovunc tEBzq`BxAtkcDrRUpG4__70hmo3};mY)FwE)d`^bGWY-h diff --git a/editor/icons/2x/icon_position_3d.png b/editor/icons/2x/icon_position_3d.png deleted file mode 100644 index ed19f011b0d618fc7b96507d565bc3817b0720cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_bwPZ!6K zh}Pr;iI)u%V|weKo%z{*Cf(CBQR%qMCX+zn9;<{ajEngsSQj(Ii7%M`_C>>$P4gl? uv)PCPWkhz)GPe^0sDT+<3NATD%;7Liucf zzSAGCuC)TFIrXP>Iz16lbG?WtLVy{?lv`2nK-H-idDwKYWI6m*iek#Gs047b-jrh$ zB>-3JO}R!h^4hT4XE<5;8?E1>E6B`U(5DRzZFK_rf#1W|aw|GAA2zx080?3!L0x?knFH(kMp~`>vB#1E3ZFqb}&WH2x6rG0000ae_R9)POs8)I07Yrr0l zd6NdNyzeK5h&Bw+JEkGaa3ARNXk4zuAH(^nht@~}?? z2sm>`0VhDfFyP%D&UL~@59Z&p5c>>%=YAV3H0%I7>j9{CgnrM$&6IPjtO7-^B7k2A z)&np)2PcBi;oQjl$mU}H>bFb<0FyiQLhIr94%m>7EG|R*3(PJ#Go*jQt=W|w{MFaf z8W%u7SO9`{bAWbV4(RTR*GWVA>H_c^l0dLh<%F7lRIidQfPgR#939U<|5jL+k1Q=i zA_D>MPZuvrxB%LGj9M0#Gr!>RC-)akt$^^P)U@g0N1X=tH_@t+W=`&+TWY+NT54(a Z=r5*yiaRz~G06Y`002ovPDHLkV1oO*A*KKT diff --git a/editor/icons/2x/icon_progress_1.png b/editor/icons/2x/icon_progress_1.png deleted file mode 100644 index b73dded521fba2afe5a25ea9cf35b4696b2c59de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 781 zcmV+o1M>WdP)Vi|K~z|U?U%t$+dvS8XB<0$Min@sh#-*dnsVrc1H1sw(U<6B^f`K{ zRQ1+#54|Eel{mBqnqWId5VZ(XAsXbhcY45ymi5|6tlr?iL_0e>|F@f6uMP0ng^MH~ zA0M|((_CSUwO!Z!DfR_H@C5*li0HH9I7j~#Ac~?6=X`^RmL@UVw!cXLTxkB_oWFA% z=K~^&@q)CfPS5js52sdIz2sob9i`|E(G9to2zKeV8uohMV&0m?7SIUmK7i(iG{?r0z$jz#Y`L% zhM^4rWdzFRYj5{c~QqauenwdpL$IJ z;yC`JN+zOl-3Jj7ja7ZRu3r}b_V)H}5%EsSE!+q53K7Y&tN`vWFfo3&xw-kb0001> zY1*jDe4dq%?+yjT#RDL@z+f=gZ8RE8Wgdp1jfl&PvCEyEonPX(e!stN7{(eAja6fV zAh0;+P1ki#9!y#Wh~wBVD*yl{5iO~9wyx`2`DJF7y-&n(>=(w#frEnsCblQ$h}e;H z%S1%0IfOr%NdC*@+{$;tI_3(9%6(G_(ChVd&UtfD^NG?l)qA~OVUPQGn|00000 LNkvXXu0mjfCHZI* diff --git a/editor/icons/2x/icon_progress_2.png b/editor/icons/2x/icon_progress_2.png deleted file mode 100644 index 19d89bd3693fcdb1f436722a1d7e943ed6db34b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 785 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 XN#LVz?R;mI00000NkvXXu0mjflM;I| diff --git a/editor/icons/2x/icon_progress_7.png b/editor/icons/2x/icon_progress_7.png deleted file mode 100644 index 96316b54cab99173bb2d6e34f3cab3c3b9daa1fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 815 zcmV+~1JL}5P)~3}!;C}}$L%z7U zSgTg66(Pi$ZQI|YZJy^H5YdQp{@7}@MtO7Uc}Sk;)ufc$L{yeif~ILPP7nm^0I*)E zRJL8$eP)c^?(OZ}FUrlb8athiF&qvLgCMYosGP?v000q{gCMYm!{K44(=iGgXt&$G z5Mq*7ScUKVqTO!$g$*DgS(fDz(ZW(DfSac2AR;Ygz;T@V`T6;5Z4@*S6DJ}}nvOXG zM8pvBYqQz>l4Jq^H~@@GrIM#6@_m1Zh|g)_j^miMTCJ(}o7;w0S6A;DW1qv%Z-c?$ z!^z3XYz~PC7nM}y5D~hrYXLwt9L&HpO&+TN5g}vjVo0C=P1J8d)?XG9d=_zRFC4n$PGxw&~2Gr$;omy+u(04yB23PdDCTuo~8eSafn zfQXKh$WqErh$xpe001C_xJ!wz70LI4e-pDmqJF=BplRB=N+^{|UcFxbRU~<@*W1!{ zeOHYKLGU!aPt10KVHk;*h{>)q&8jG zA7Tbtt=1?!Orpqjq$U9o$uvy|{vKe_`18)r&hMB30073=ZI*bRN<=v+CVtErQWNz1 z{Xw^8?$b`nsW3!m=!vb3TamQv*jwMVwY diff --git a/editor/icons/2x/icon_progress_8.png b/editor/icons/2x/icon_progress_8.png deleted file mode 100644 index 95133b380db3981ef9beea7266e1ad102b4e7fd4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 791 zcmV+y1L*vTP)og+dvfk-x-Hcgn}cA2m)+sKj zi1-lz-Z_r*A>9^+;SmvyIOq4RR%^6qPBxD~M26>ipA5tJ1^{pKctVJE09dcr>)SyP zJQ{{E+}qo`otNJzYV>`-+3)v%8HVw_NL*vOCWLSXgTZmT-8M@bux_0N^Jg{+3dHRr|$pJV3<9JaOOm?M9>VM(y`x8-`)n5JETwqo@D?A)?G1IuW5N z9t42{09G;>&$ex@odGH3c6u^`AaK-~C=yRNx#9_$Y5vT>a5!8eqMDK~V`5R{hyxMT zE-x=%WeiLvle#VuBCgI`$vOQ95m$9>aU5@C3?Sl~j$Ex)|1K*&MHEFhIdQGl3!W!t z+pE{>9aSoob(OHPvJy6%%~A`o+wE>K#&*@X5aPjg-9G@SU0|A~_7E|dOkS4}PjYVN z#AjMF1Dx}F9hr#6Wq(9OG}g5-#_lo(TCLV7DJE$wR8n<7M6zw$2LP_bA9r?k{$&gR z02qcbED~R2CY0KtGja9AkeZ;^>m64rl}INZ1c8Hyt5Fo)93CECr~7rg-7V8JH;HJR zSB|BWRo8XTpA1?xz&ZEw5&(cjL^a*YW{mA7#mv&2C&+P}fOGC;`l*4_)6*#ZJ{3pA zhRV$Y5p5(Uyy-xaXQXlq&xB>fH6{wzO`(BKr^BR_)n&z}h~t=bI-SD1M`2^~InKi{ zY)C1$H3ybFj1h6@x-OqboO?3@07z~)w`XT(YnElzb@f~b@nD+fh%t7T-sdlvhyTTS Viw3TU@Vfv2002ovPDHLkV1g(uXHWnD diff --git a/editor/icons/2x/icon_progress_bar.png b/editor/icons/2x/icon_progress_bar.png deleted file mode 100644 index f9a243032eaf0cbf7dec86839a346def204cecc6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmV-O0k{5%P)V2hh6M&llHO?@2p+__svIRW)xk_syT` z54r#2RL0p%y*71){bBA|DHRxJGxhDu`pN}D69u9`6sVO=I6e`}`oD5fJFvsM4^BDV ze!+(;{2f>X49ua*TR}h)8G^~qkiS9Ab3tH`_Lf$XCYUL(4G_FlWujtQ{l@(|!1|HM aKjjN(W>5<~ZYCH20000(9O21prZ!5CAC8mwc@)K-3y{{ya(&ui@%E=OKSp zFEB|`mOHMhn*cFHgp?|j)*0>h_gMn4F;@Xj001J0$eE1+fb`QoZ(krH2g_qVj_vbT z10puKh#s>AAf*b+11zsEZ#AH_&e#|TbKC?{T3==h@T&F{BSqKO;vColjMjiF;ewIS zm2kmG=t{V7By=TQC=$97E*J@23HK`r+g)*|V+q|6HRrF21D(G8T@N=wG-NLR0$YGh YPawdaWa@(^b diff --git a/editor/icons/2x/icon_quad.png b/editor/icons/2x/icon_quad.png deleted file mode 100644 index a4074cd5b6390af60cae89f4cd4ee6b84ae8f096..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~7o-U3d z5v^~pALKivz{7B%>{Gv*8^7A))e+lH>#5Z#b+LckkZ|11+t$NhMfqXtq;1SUz8^S$ zi2rc#=Y-4OWf>fnSH9Su!7%x*;2~y)b;oYaEEf2B?2~yz1w+G0>+)v|D(h8Gw+kamHEkA*>nWryA8~hR`5S@VKHA6)8RYUfIX>L`l1T{HnH0I2E0Mo2 zeE_Bbe9a8aSZl|c007K1;EKGh*XtvtQt4H1Z||?X06jfDJ5dz9+}qn52Jk*@4d7uD z0Lg1<1LxfI(9lpjOW&Zu!NH$NlHAR7U;lHH-rc+D3g7qRzZvH_`-32emS89b-%}Z*a9*J!P$(DijK< z07f&z2U!ivsHzJjAGPq?0k8t#gNUp-=hXN8A7L171Hk6y<{9VQMc?;Bl2-uS05AdI zbPKQfD2kr61ONbQ?Hqtv9RG(ZAvsqnm7bWs;Xfq#Hmt z00P+BzbYixJkR^=oLd(9v%W0_}^X9Ov2q0000Vtqp zDZ{yq{%8_5y8W@O1TaS?83{1OU?$H-P{E 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 f855fd8b569bca223c566695703fd458fc8c84f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1077 zcmV-51j_q~P)8a(@cW>G9*5z{a%AP>le(8m*`Bk9P5ZMDv1Gg@} zT=iVJdSwB`qRqF7N+*E8ey1n&eS@<- z+cP%oZxq$xoYWlTs6K<{DUbgu|{N>#>yn9~~?f!v)?bPY(CA~TIsz?Yz3fRR{+{i6+@L%-)U zo{212SK>s=N=@4~fH)AnU%;tQqlgQ^sqo8!2>>L9{T-@$5I{xV`89Rn@usH1%wnd+ zA{^doyV-ujaZ%j{AR@aQ?qKiC{W)WDxP!flJPRPI+v?5Qx5MGBwo1)45HRZPwMYLp zrz_Wd0RVu@6MRFJp6q4Q8e45&sVjPpxgv>mXAYx00U$`X!yW3GUsrG^j1RZIM)sWt z1{`1C;*&tYD%m{h>qTkL+8lCvf*tv43qF~nv2QOhkiBe4t~>j3Ddqt2XzNQk=0_dw z;I2Zo1p!3RbLmMx!Uq7T-c>39DtG=R!pOPw1)m67HUL0V(_jW=9KaIJm+Ei81c0iZ zDfSi>U0kBvl>JdM0LTP@AVrUBMUP}E+?W-cvk8rc+gF(O)J{dN%Wy5Y$$e~cwg>CC z?D}3h0LW@k#FFy>W8vo2VzWQ3a;*cERf1w-e=#0u9WYd1Z}9g2tZGb%D3maPq6d??q{5;df#t(!ijo#8mW6VA|;k6{;;6;3}|eeqPZ}#Lylx#uW^nN7gODnff{kqyn`@K=k=O`|BB(*{Vj3GIiF)phMG{$a?%wU*MG$@E z{Ab>K3^T(n{Kwx6ov|Bq#%`#DBU+Jze6$aP0;j`LNZ3Nn_3T2;695W@J<`}c8HUG% z5?2*4!;AF>V}=)Ef5-sYzIK#WS7aa4S5Jna3hY|n57i-aFMy_HR9T`m+ht?tY!JTS z9gx{Xu{eNQcuXcroCHA|yzadi(+;N4R2r7=@HNiE2k}8Vx@-Mk)n2smA($zzXIxgVkL`sJ=ajPz1KiGsv@m2BJt#z-#vK` zTrAazFzWeUK5k;=J!i}J5UJjYF#YNt%F&SG8Dd+HiL^Oh3BD^Q(&nHt6;d1^=OE)_OcVLO6lw5g_AHU8^7MHGcHI zpXK^`pdP;0EQ?McGAOb1m@AmkY)>6TJN(3@2p^+0}OC1ZZONvXthMZwgZO`{ZmQE z4!$GBz~H30o}o-F-hGPhk}dZ(c`jGzcs!Y*&-rhY2LDo-H~%FWBsiC*zW7!2Yer3L vkrR-ytD|b+9Fbj-S2d=Zcv;2bP0l+XkKFGYZK 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 e496cdcc2b8904b78fd140f05df35005698ae22a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$qWpPY@RNT zArY-_r*HIPb`)saZyEH&&s*O01E))I(&~%CN0d4=`97I6-tcs~r!Y$`l&e-iv3G7~ zMqjLSw}RU4?bFZw+?|@9Zddj%w(Q}4Zzpj+Iq{>fEV5O$POu5oIIwLA1J?o=dQc^P&QEQO3@n(p z{8OYP!-Hojps^%N#5h#%*ittCMvY2{@Q2y)%|l=y$S#B dB_Z~|*orbe{XJdkJb_`v;OXk;vd$@?2>^n?iQNDI diff --git a/editor/icons/2x/icon_ray_shape.png b/editor/icons/2x/icon_ray_shape.png deleted file mode 100644 index 54a1cf8fe964ef1d1973bfd2a868452d35b9f1e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcmV+&0^CdMCXa(niJnW|b8SW2!K+O z0B`IXSLJ#P8=QvYu4`rdH*}hYWda7fu9fkpxH^sRf866tcI^uQ;AKpX3;VFR4JUu? zWA3rB00000NkvXXu0mjfj=kwz 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 2dc7041a93cc3a29e8b5b46ba12633b3c869644b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v~0+o-U3d z5v^~h8}=PC5OBS(;K!)0w9qk%bFGV`xYPr&0!FUo=}TKyhb+)OoMkLBgyKJ6! zs%zi>`dNp5HU75~swynIrs%}iFllCppQ7E|00tK3FAZ_Ee6tD|Uf5gg=Y60m%&6qR z(!n68z~s`f&O5<$eyiux56k~8Ql8?ww%knhJKMY2=gY%h{FrE>UDC7Z_+m{<^Mu!| z+aeeCK4glH_y5i|MK$1-z_vAtdt7GN^CkpYYSi2k;JtJ^U(~>q*>cyP=<7xOqSLu1 z+f0m=j$i-3NlYN_;XMXEj`trF8l)aE|JbPK@1qpIFV0avao&mb2fP*rt#FBKZ#mAm agDIgbXj$0CNN-?JFnGH9xvX^df;IpmM0MPOTC_@31TVC@Sy@UaX=m$`$KmZD!TYyko0KXMLG5-pvOvV6W zkLfwPGM^h@84)x9EIxt;fW=2p53qy?0-C!(jV~Vn?0G>nv;^2^I=uS*v90;RGlI4H z0&&7*cvCHCZ^Nq8_@W1J;ULA zl>zpd%w{|&09IE7pz11(84nAGiQKR#%<&fLyDgV>x>5m rP{K9iVF8E{lIbxwA^-85bMKFPZ}J239tvw*Z?*Z4 zmG5xr4#XE4+(y|RzsVNpj{w6iJePK7kLgo3sKwY+79E6&W42G5>s2k(OMRtt^^q4M?D?y-k{J*H978_~l%_HT8V-ei3)uj*uhl^5J~QA|<1hdOqmdf;OLbj=e(ocnW*wTXuzeJp2F#!VnckEF`G>hJ zbE;BcFEXblc4;qhotpZDahf%zIJ6*C1!N&bQP&o>rhe2uc0 R_!s~H002ovPDHLkV1mpFxrP7$ 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 51a93cdb1da23a26e3d96f2ebb76219913191e26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}VPZ!6K zh}O4L5Aq%|5MX(}C`8ao=}V)xQLTej*Xkm>+X?ceLP^t<5zitLN4_N!^Km``(U` zRl|XiE5PBa{))YK@27p|%way}@cvO0^Bk5b43#ruoj4fOB!a{|66cEo9mT-l>FVdQ I&MBb@03HBOHUIzs diff --git a/editor/icons/2x/icon_reference_rect.png b/editor/icons/2x/icon_reference_rect.png deleted file mode 100644 index 41130f7fdd2d577f1190471f94a4fa65dfe4c9a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_bwPZ!6K zh}Pr;iI)w6$0B~!ovlyl%s43Emh)%{Q_QmiM`mgm&XG#E!nn90L2rSW#97wGd=jMx uRxrEC8oX)o-7i89ZJ6T-G@yGywp7`Z9?C diff --git a/editor/icons/2x/icon_reflection_probe.png b/editor/icons/2x/icon_reflection_probe.png deleted file mode 100644 index 5604b403df02545e8086378fcfd44e05643f3632..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 533 zcmV+w0_y#VP)`pI?phyhzDSiTtxK<;R!SM5b@p<%iKi7T4bD3U4OEY+ptaZTw2x`iCQ6pOqjWu(X>*| zFxq}+&M?{;O)D{T696Uw@kJzRNy{4B!{M3RnO(Sv1`)!&Y(C$M`^_AGn}z7vvso=< zMT)>Y0Du=S0Kl>D#YDfA2c+MB2+SqK6StWShz9_GjHaC?*;qUv)#^6@bXbUiw5-5M zP*5kpViu`b)L5Yazhwu21Hb_w6o7@$(-MgqD|9E6v)QX0jRr}!;)SqN)}>`NHUW5t z)p~%aGxLp<(wLj(S{aQLcFMXWs$+10dvhDBpWqT=%IMrQZ=;rzh0y1wc^g;OL8&YE zA=!aMsjefij8*DxlQ{oM{;eZf${@)Pr8|P8cP!r$WPcZvHIQYpUH|~IQlq3-vxEHr X>8%ab03}-E00000NkvXXu0mjfNKxq^ diff --git a/editor/icons/2x/icon_region_edit.png b/editor/icons/2x/icon_region_edit.png deleted file mode 100644 index bcaba769d49119457e28b25d55c653bed1833f15..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}{PZ!6K zh}Pr;iI)w6$0|NNa5S)M<>KPX?hJHaV>iP>ShMXSQ;$``6~@JU60A?AwEXwn=-}ws zC^-A)V%3K$nB8OzUNr==^GLDxG+nGa2ozvs2oqJ&`|W+?7SMPGPgg&ebxsLQ07{87 AS^xk5 diff --git a/editor/icons/2x/icon_reload.png b/editor/icons/2x/icon_reload.png deleted file mode 100644 index b13c8581245c848691d1c3ab92648ceb8b3b0cb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 786 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 My85}Sb4q9e0JEfMBme*a diff --git a/editor/icons/2x/icon_rename.png b/editor/icons/2x/icon_rename.png deleted file mode 100644 index a306a7b8c8a8b2f044b87cbe5ad34e2c50d5ce70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}FPZ!6K zh}O5$9J!bbd0g*{=Pz{fH!q)cTl845iQcY>3PPMWjy}=7y`^?ZWR1qTzD2Ej%Zt7J z6PWc5@ZGs*9-X~#_xiv_{yVB~)71X|&`)78*zEqy=FB%;RU2kGd*O@r-*w(Qa87}t z6r+dXi+(0lvIj9u;!Csox4&UYa?eJ?#g$%*EX?&YugjDxi7@N~x{JZn)z4*}Q$iB} DeMwGE diff --git a/editor/icons/2x/icon_reparent.png b/editor/icons/2x/icon_reparent.png deleted file mode 100644 index 3063da4b431622d4acd0da56913a65e0dcadc7aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 741 zcmV457C{9?5N+JJar!Z3n<)Q)T!d6e!b}W~TNQ>BtvC0!m~nV>=Z($}lL)`7 zchCLabH4A~bMHN{k2>){PaPQ1Z=Thb$j zljA!I@cDeVfmILAGB5-%B+h^L(|8*6gh}$#*rd>>1o|P#l<$I zRHBF=L|Y&b_+c&_)o(AmYr=gBM)m7XjeG|*yOtyzHcyy^S+qB;t*uEjkXLYk+?MDt zFkd>?KPOP$(YtMBluh#<16x42%9b;JINg5n!2yYH>^StN~ZNXT>Dw zYc4~V$*3y>JHcV&n_+4;Ie%3^R78Fnrlvg=Pzm-0lsuuSR7$(Ywr$t+%vOqjD+69v zv6M38bwgHyWHNco=ktvN-Q@0^k`AjNAe~N!vf1n`aMIkAegAY<;)|)cr10fx=013z*rn=vu$u`Y!ynQfg32d4^po!u*MvrL@go zZfIz@u{9`UAQ%iTIF8c+#DEO20>o+w4!Pz=N*UH#Pvw1OwANFWWp%c+v@BKY@BhUg XZ=dIwjJM!W00000NkvXXu0mjfvCdPe diff --git a/editor/icons/2x/icon_resource_preloader.png b/editor/icons/2x/icon_resource_preloader.png deleted file mode 100644 index d48f37d21fe5309456ff731851462193aa396958..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 609 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 Rh{yl{002ovPDHLkV1ji17C!(0 diff --git a/editor/icons/2x/icon_rotate_0.png b/editor/icons/2x/icon_rotate_0.png deleted file mode 100644 index a4524b7856bd9c8a89d42c92f92ec7e969ff26de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 878 zcmV-!1CjiRP)*?Ln$!f9m5B>YXwbIl&lRDmeRpPnHmNQMVS{=1bHOm)xo?2sy|?q*%{lj+ z@4GYSoO=g&-yu~Ol9VJ#PLUh~a1Ovx0LL?T3gADI3nDVFs=swiKt?=H@*4mjRm{6A zBC}x_&WQ+H7LX*#36l3nj#ec0@gsmqRjnUbKpe+sNzMWIphfZ>yaq6#s!z+DL7CAQ zbAja367nq(`JUvYA477IL2M8%UDmgthjkEYQWAh)hRO^iL+T z@NHF9ocNmnE_?B>0F3&dqwoeu3dwsOc>};TRlTx9z8AtUe5tCR1DFC}9oG>6cS#mD zT@YZ5nJ6i^8CAW#AF&Try(J=Fdge2692ee9E`X$n$k$%LTr1=|h@$8wfJdJBdZ~ak zO-E4d^Q|BVW?Ch8a23VE95TiXHwm!Te(FYv$ipxUU$)Dh72UjR%cf~j0Jg_#4r^^8 zs7(}diAc`n*1(6JfL}VrUXm;4$_0qXQFldufB(Oo642Mzx4N$Y0DB%9?O=U<-JiJm zd~h9w9dB%G9P5;T?(S|s*IMp#jH__kFbIMX0DtY4bZ7KdfryOkCcrJiAG}4EsuEN{ zA(x0OGzkz9zg0d<)AVG!%yAqK0w~OwMx&8W$6P=ZMZW`BcGmSY8jWw;6#(E4fJ4sn z(%|6WpG^Wpgd#HQ1z$GCTx*p%j^i13>Sg%KeJB(XNr~h5Ie?EHvjy;ls(yDs@@bMc zQ0%nDD2mRx_r#`3HpbKd{EY4M+r^`Muz?z6GSZn8Nwb~yC$@_leElK`5aq@yKkpKVy07*qoM6N<$ Ef)bXSJ^%m! diff --git a/editor/icons/2x/icon_rotate_180.png b/editor/icons/2x/icon_rotate_180.png deleted file mode 100644 index a00e1b727c8303c315e080784035db0f5322d5e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 713 zcmV;)0yh1LP)Ew4Kg; z2RQ1Iyhf4|1i^Wd(*Py`3<5Y4mqP&GNj5~Ju9SLL7(g66OY#ALb2;z3B_d0%>sCdC z2L=d&V1(o<$%&l7S-l1@uaxq8257ZfS4dU?oH}55TfYFzDWx`SMaOnhYkigEh9!Jg zM4pnI?*ZThfM>q%PuYrHZy*SQ5o64o_`;;BB68RByw5S@zTeiOp8zJZpCk1KND9f- zOn3xfK`C{s9ezNa1n`7p>Y-BrTI)H>fLl~bJ?bMksY|U^YsLydQbgo_=7MU0;cYEj z0m3jGNBTeCbsT50;BWvK)mo2r0T^ShCtV`4?z--$5&#g-rfC4|O|KmpW9nsu1AvHh zvXW!qbOzvUSpWb!Ssefo8B96`1_r(zDgc09CzgI>Yyhbz-r3n1DiL7Y2JkiMa2#j+ zPytB3%$RPJl`bNUE&vg!XG}N4Fg#lZKomu_E&$K--UHZ5_>M(Uv{FL;W~Ea3*aaXW z6p^Kjc}8o!P%yx~OA?bOjwO;RY zO#C2uJKLmMdqUs$r$ppAfa96cZvZs_bpVfh2;X%a=bG!f**|UHrt~t&H5Aj7&MKu| z*oxMs6aYNWYXZ0k;8h>tO_CS>6%ORwn8a<=GJw&X!J7b$Nv;D}1F!(#WD@QI_(rlRA`Ml2H#Y+b_!h|r08SNr?gtU6`o3Qm5l(F& zj^ibgHIl0Z!Fjy_P*K&+#0H`$x^Sdvp0_n;H~=ggV^+otSZlARvqa>n@B1H1Fo0w>%^JX9dL7AH+b9DL03tGC9Z9)b z6p?gN%@|WF$;0CCU{nDSSttos%m9E%Cze@cT?W1$pn*M?fiM5n0Lk5hqKim#%z%iL zHth21_xsOA+~EO9iK3_t;B?9SwyK^Po}?>45vi682Y`F&lg!eXRN)nX3njr@K@hB^ z`^3z0oCGQuG!OIE50ba@P3l-nrm7v18vuH9g!eqpyBUU|$p@T0VHk!lMdT`g?{k3f z1GwhWe=m6xx_1ZPYe^<$~ZgfU2rK`B!4$tr-9q zV^&D6C+qnM{N9><2Cye0O>1o<48!-6Joj+x7Y9+_8%&q6y8r+H07*qoM6N<$f<2rf A+yDRo diff --git a/editor/icons/2x/icon_rotate_90.png b/editor/icons/2x/icon_rotate_90.png deleted file mode 100644 index a3a937892d62ab7cb7c68fd363dbb81ca09abd90..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 805 zcmV+=1KRwFP)2)2u7XT7STjq5jL2)pNr{?ZKq)8<%Vz7-q-iL?YXC? zz+RW69Y|6<&pS$T48RD0E&x42w-4Yu$z>7AE2Z8x4InU{AbAbIk(BGMiO8I7+c^Ih@ist``8Nlv0J70bJKTMKTBAP@U#w{Q@wllv+yaw2~UN)~87>C75rE z$ODp7H2@p{@TgEIj3#wfJps@2`iwCzgNb3~L}bQsoG$_7uJ1NMKLHHKUq|E#kQ9>h zG4mpTX{FSKvU#042;e@+$fhFzTIhDV9WL)*4Lw*UY^HjM(HlwK<`#^hUJ4gexj z@e0Sl;TXW{RsjI0cvS#Iq$@n4v$ONte+2+gYhr0cCJ7+2+HJj zY&h!$x)Q#L1QJPcUH2J)7qpKy!-H38mDNq|U^m6aXB@SwSfl zo;P5=Lh{&7=0M6Hlc0>c4qzaq@hX5hrPRW|2BuD@0HC!VBsms*&%5#W*K8fYhKMX1 jWAd3y=6x;e?rr@6G2tAqHRb%N00000NkvXXu0mjfQe|UE diff --git a/editor/icons/2x/icon_sample.png b/editor/icons/2x/icon_sample.png deleted file mode 100644 index b01674f923b4f1392dd0963a905c028764e84439..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}RPZ!6K zh}O50H}W+o@UR~IaI@#{d#i^ImzIRdg}m@pQTu9}M{P)(CX?%;94RyL$mpKYyiY@I~6l~RL6yK z0F6c(0H*7>P!2$H0n~D#>>|9H5wGk*IRLYE&RiuIypw@?y&Fgy!1bY=1EdEQ1e=(( zk&<&if#zU5jpuz+w|ll)+Q;mn`ThqNKqHapY7Q`m**k^dY-$adz07{L)0_q1wIt`E zSM(LkFg5iIxRi*+cwPW}DR>X3k`CMlwlg!OrJ=~aEiZpZx`WxLoF03?Ju{PQGV@!Y zwY3Yx@eXh~BW25c|5i@pLdtvv*6ADqFLG*k>o$kPE^w;VS|^U5;C5jzd7*CCZL#m4 zaap}yA6T@Nm5(rD5$3vJwwqU*DQO<*)yd`PUC?T+<67xbHGpGXDGZS5!qHJ3fKwGa z2huKl1rEjrV4cn((rw@~$4B#B3&UT30w8}EBq4%e3z)CcL{St1=Pd}HRtBglMNx>^ z^TGJX@O=57(y|&fPmRY0Fhc(UCI!%+BtRc&aRPn+QvC)-8Iq+{EOUGS0000x&bfJN^Z&SxU8t%v;IU+Lh&+Lkp-UDh z9lB(J+|b3c&%j>^&Ecnx_uj><&l*G}83jgxQD8p@4&7T3c`p3`{pRQibX~VJv(;b% zbzSd(2Vfmj(0lJHK~z|U?Ulbu!$2IzKX=BaLdFh)PvGw0;4al&luQm*T>2`4i-?0D z4d?^d_y8_~uOSFJ2E5kV>lAUY=Kj?T<}+o;{q95Zz3)MT2U)IqzB8oj!ohI737pm< zaCKL#3OT(6;y)L-c+$%)xpaeO&3AJrf#hv;24c&0U6!j!maB=EK$fc>nj_oIf5TWH zROp-pLWa&-Aav-g1zbaCN>o1llu!V)-N15A+HFTw?}A4YhN2N@1R8;_vpVnGX7}nm z^ab>t$}doK;y&ny+60a_#K(C0xsTx4WMJBDN2V=kBmi)@o4iON_kfY<;GhBk2ivVj zv_7d#03h92xkhjqQo#6Ml@y)0pS-Gd+beorF06aNHk4I3711I?X~kgpzOaJ&KgO?qLF91zwh(A_wrr~{CBZrXEYi)LWp|+E!TA| z0GLcBv~Hv8x@_Heq-Y-z-FcqZNn6KP%-;Z90XW$B2pM9G-HylOZYIF;J8N-2woE&&Yl#L6tgb>^J&rsFuDiQz{ngmSQt^xoj z00vUZc68^aXg)P`MUCVYyy!;BDJC?M4+TZ^Ob%Al?HO z4_O#^f-W7hc*sH<$qPco!R8CO`92=?>;cvU=e!AzUPdZ1s@ZKeMF{NpGq?Ec8 zLYzt|1K;-v!w}E&y7Vf5+p4P0qbSOD21wKNNNfEKIDA@HN)g8~#+WV;01wW&<2a7L z1IRYFQtA>o)LMT{k|a-(1mE{5%aT0LyEX?n&{|(KhgJX~#3?`&MH6F8XpCVz9s^Jm zMIQiwFFOMO0f6UuADcoGdsS6^0X}pA_@^2G^h+ODtya(8FBXeuNB!+4Fq_R@1z_(9 z3;+Yb0I=Ny%jL4(2f+W6K%>7mT-&aHsrH`00Pqx`0I=5HH3e(!ZcfW6+u~4EyxIH^!W`nYIbc z=kv@tcMMzuk5WoTqY=~TwCnHZv99YYt@WqLWb&gs_j}VX0)Js=jw^W~00000NkvXX Hu0mjfSdPgh diff --git a/editor/icons/2x/icon_script_create.png b/editor/icons/2x/icon_script_create.png deleted file mode 100644 index f1e25efe1c5908c06eecdfd34b97cdfcd700165a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 491 zcmVfSRZ3k8 zAeby>~o2sfVqA1Eb1EgtssW!2TU5fWTUNYm9jVV66o}%686Xp7*W;LWmoH^?IFKYj3T!Y`0qg zf*|OymtnedKuUR0mgPI=+}kY6?gO+Y48sQ}*ladC7+w$V9GK7NnRD(8_yqirQZgEi hm`637xL=wIN{f>i8a2SKoZ zf#9MYnkgyNp;TSOsV?eZhYW#ERp{a%ib5BM64DaLCKyVQ_g=0;^U|C6Oq-@vq#g*| zckX%T`^mlMp2vmrZgQNUQmHg*n&yg#Od5s}kHum*jzc68=|`&pY&4tA`BWXL2Sj&0i{5(xkrjmAj;0H%%&0K@?zk;uis5iEPN z**q!0P(J`?YX1SOK@)6kZS|a=o}TV`)c@TT$mMdU0`S*Y;4A<(fCqp&PVm4*sGEpv zMx)W2j^pfADwXdd^6XCnY#4@d!*QH_fbsG1=hbR8`bPk?f4;B#lgZ@Mquw3323q3R z9mm-NP)kc=s!*8ej#Gugj9OY6J5_*R#EZpIJnt>aVAWEsnT@Y&_ z5W4tXSy*_fJ5Qq%c7E+de*g6gnHvN^iOBtAGWn$KC>CewEI8dvlzO3`j&6Vkfa|(D zfx~s(gCHZ6^I?bh!P)N?_vqXX6Qx%5KGDuBA{zkP+uL>5b$49XrBh048^L zcQ0_5;3H7g=6zr;q$X;>m-cJHV10c(>-+wDU|3hNEQ@qH9eM%j(F-o46`U#*ZXxm- zsOdeR0|45$pk-jnFpQyiJdWcyJ#Rl@tr*w6q93&u#0<9mN#^Hw!ZV#$`w3@M@F3p| RHGlvB002ovPDHLkV1kORaBu(s diff --git a/editor/icons/2x/icon_scroll_bar.png b/editor/icons/2x/icon_scroll_bar.png deleted file mode 100644 index d15a36bb16eeba8e80f0e5ba2c7b4ebe2161db87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 324 zcmV-K0lWT*P)M1IumVuRl zJFqgtiXvbw&s{Kbl1dp8Q>yx#-m@+Lzn`sV2n7B+%1vhb#iQu2H=qMN)U0&^Ruai{ z91k`H0~hf%(5zWFhf1|X?P06C1<-c*a&ph&045QAezlo)W;*`GuO^;t)Nn>Kcm9&} zGw-7+@9Eq)X>0@i!`hqDC|i(oUZ85Fe!T+0Krj#tl=gwTJ7S)@s=x{7KPc;f6*<_z zt-#8oUG`4eAp(dJsMu!-o;|G-~yB9`+9e{wUuO WuRjsAg?9}A0000Oi#hkZn#@JAWjh> z5h}4V^bV|@VQmBLzydY{P30twV#iGZ@lCel_`UqLA_M58p_f z#;uw%n%HwjJBjmQn;^QEO1B<2oGo+r8Y_Vy3VE=YjDAEQh(ZpKD-hYYktijwfyc3s zFc!$bEhTEjQ<88-eGY)<&RI-Gtl72;Pn1 z2JaRMup@sABDD{dLg$QnLu-L@5_)iLfsF*D#-ehl3kMAU1C07Scn$lIBTvofJA%X&mqZWMxa;k&K%*k01^UNRsdc~i90FC$wkw9sbKv- ZnlBwQoHL@pGpzss002ovPDHLkV1kZY%L4!a diff --git a/editor/icons/2x/icon_search.png b/editor/icons/2x/icon_search.png deleted file mode 100644 index 0c4a6a8c84dbac98e6754757a7aa457f2a1bc394..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 762 zcmVD3a2zp`u_)7cqAdd@KT4g$}8ib6hwnH`6wm8Pk;>n8lpO|NQ36 zoqGrP*Np}RE0szjolegX(KLY50FHT~ZvZ|r^Sa|W<$ONBGjagiwl4vA1i%`i@fAQZ zm&?5y34n;i>h=0V0JlR45j~!mn7Bto9H!3jJEAlP01;VgG#dBA*7X5+WA``j5YbZ+ znMx*;W65N4Ohl%L=ox^H58|#;>S7px-B(blR1%p?W)uDI{5vzBvn=cLe#J_u0ugNh z7~d5nsh=1vh%5ya&~-!vMAT*G8Ger8$Lnusi5@4}qY^A2qSJ@ZZCbvB#5 s8TQxxuT3d6XWRC35jpe+{%@h}H}tbJ0<;8`?EnA(07*qoM6N<$f&vy)-~a#s 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 43d5d837ccdd91bd8f66c3ffe5a93f551733a89a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmV-G0l)r=LVnT@U{MFG`YW^k81k{co{HhhM^xkiO$~CVx3NkNLT6{KpmZD?^;g z;J}alfBtLVQFN?k7bswrWT+?m(f7Sp1 diff --git a/editor/icons/2x/icon_shader_material.png b/editor/icons/2x/icon_shader_material.png deleted file mode 100644 index f8c2e15fcbea59aab490deeccb82504c3b311d42..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$qWpP+@3Cu zArY;~2@)?G1dsiQ4|s6)zyX8Fjg5}8oQ$O<)qOG)!VHCls@X(!(i0LAR{W0-aG1uN zvLeCqkYH=8>=LVnT@U{MFG`YW^k81k{co{HhhM^xkiO$~CVx3NkNLT6{KpmZD?^;g z;J}alfBtLVQFN?k7bswrWT+?m(f7Sp1 diff --git a/editor/icons/2x/icon_short_cut.png b/editor/icons/2x/icon_short_cut.png deleted file mode 100644 index 58c3e08ca423216723679781c76172030b3270a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 473 zcmV;~0Ve*5P)a%k_F^Ff z3ojrFk`QJ<=rd%$Yl={T+`xeSZfcRbBE(j7XSUoPl-s|7}LAGQ`HS$I0Wv5B2o{52O9v+ zL*StX?n4FFpnifae_GPr!aw zvwtc!#=HXyNs_EotJTLGz`xXLwTf{ZTi{()7vX0DR{(`V;k4Oo=6N6;gr5S4$YrnI zPoUjyuSQXH11#nZAJSWrBwM|d`w3Jkm4{BJv)SF>Kc)cw5RtP%_*?*AIjNtqS!!>c P00000NkvXXu0mjf$7Rdb diff --git a/editor/icons/2x/icon_signal.png b/editor/icons/2x/icon_signal.png deleted file mode 100644 index 22b6da361e3631d766d2c9be2aab948080b9666c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmV-N0l5B&P)hU+eySvpDhIIi8a9HU zjps0>Wk436RX~#6B#YTZaK9?qoh$=0`v_pM{5w=Wa2&JNhe1H?s&*!Q9P(2JIF1jT zWz*3N09d0a&YY(6E@DTu@m0pm3kY%JC|Xe%o|>d4J1_&$k&|RMmH_~8z??SqVyIi7 z?1i!eRdnY>{Q!9{hMohpUW_q_UH~5DOXmoBf#?n*mpt#PZJ_I1Xz0oXfJ>g2e=ZIc z!5%^^$@lZ>hUo~NAlj1e?^ObG1|)fF8ECurEuE0&EyF|ylzGeOJpu}XjgEfwKO&38 Z@&-_DTNQDw`K{&KxRV&OSEgSUPm%N4_`Fi9GJz>!ojI!l0_+i38jTZ?kWtiu zQj!=Gx)jRdh1_)-0J#H^r4(~B5%~dQ#uI&ita>_*O<6nu!1H!2DobdQbpScpQ^ROu z*0W^pO_)ScK#{vus*A{L)o!n4`P_c@4i6uKw8}Lx$SrR$c$90bFeeD=rrCT(vIhV) z-xuKTzb-lhBVNZb0YF4vc?%1ViykBU5RRPndP4wfI*#vwbUxem4hV=)wcGd0!U_$H zyAhrwWOiQ2r*g_r{hfbG%nY2`fR1C6y7ioVSAm;%o5zo#$Z&RlMO+EpzpF4Tn>qY(E*Ty`Z+Q6Lef78Gv0PjwWkjMz9zxP3I jYT)u*r}N#l{tUkX4GQmkM&vPl00000NkvXXu0mjfEWssE diff --git a/editor/icons/2x/icon_slider_grabber.png b/editor/icons/2x/icon_slider_grabber.png deleted file mode 100644 index 64cf83270a324f0d82b82406862d04c1fcaa9485..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 686 zcmV;f0#W^mP)`blUvSHuyAwsx=eY%}wHwa4T>vK+gpbl!)g90Co);D{##|%$ z48XA^;iC*l-U!2R?@)nmw|iDq-vT(XBKRnMRc&~l_c8xa^9_=ss!vLQ1Hf_T+#`}> ziyjj&#_VA653WeAT5Gpv3Xl{LxnClD#CbSVz!-CBj(xsN)~&VmDFKqr3g7?$=Um3h z1Vm(`DuLmzd|Uv)>8b=oBxB_T)~XUfZn1fR{}zoE$4v={$d3vI4yFW1ey@s7a#}z{ zUREUlAS+6lK$@oQs_3ekv9iK2Jo)qhTqv2}3xc4Q$z&!XRMl3=Z~(ZMZ;X}3;ahkG zpivUM(`3h# z004wxxF;gl0sLA4ye}d*qbQoW&1VV#fbaVq=UfB8>m}fwBuOs&zW?H10}5SCthHOi zlgxTSa1TH$2!f}F4J>>$0|0An-8t7JxhW#2@b_x=jpTud?5k?q^St--%zL!+2UU2` Uvpm@!H2?qr07*qoM6N<$f>GP+!`uWU(K)vY;4y$RCD;7~U_FlG4U(E! zpxf=9CixV=m6G7`yz|~au-5KOEs*DVL(+z%V>7}B>3HwgthFyn3uIY#-5B#6K=hyR zL7Xw>W)wwR{}jlw>=eoOB#+JsK1fGWJx$ZkVW$Zjl4y*1wg5N)93lBc(#S)P2sr1~ zF#8KvCRd$vcfyXLP5-#HQU0jSns$;T=Le194&-@$sRB3voO8}C7X&1&Q~)oqh5{rT zRSA%676c@ns7fGYg{NStDggi!1rEG4<{Ups;75f5dj$cK->agNEDA_^U6p{O;iVMr zz-CnfA#40o+yZcR!TeT|Bo_vaa0dineZg=5coa59uEzc@ya7;O1X`D+gF zj`#jn6h#w{`9y)f#CEUOs{?pDD_PRE_x`fA_T_$a_7wmCYwb=P$JYSd1JIs=-2!ko zP1A<8cK4u(rAspaaLz3UrP*=(EzQ1>+zU#xkJGGsxbp{GDa_0;ML10W0000!5H1 z3@>>gaiDh;I7z-Q2|o$&*CVkC*TdnFBCh~8$(@R@e@${E$7m?2WvZ%fCBf$c58;41T?sH+RXwhz6fndM4 oVg3SrX>>dW=N$cyC=!XR0R>H5b~S{_X#fBK07*qoM6N<$f{ON$k^lez diff --git a/editor/icons/2x/icon_snap.png b/editor/icons/2x/icon_snap.png deleted file mode 100644 index 509b1c73f39be733a42eef0302e5d5b628f8ddb0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 424 zcmV;Z0ayNsP)LN-e z2Oq*s6cKy_1>FUAg=A}!9+y^R$7!INY#xTY z;<_KP*tHG@k3`WkP@7ibI1Qi$d5%E!AQfq*ngbx6&L?nUtIgwqT4FVoJquxYn~H3F z6EMa|)-wYE6JJQX9oQ1Zb$wgy+9zQ_VBtxqs)_d^@}qBT`F~e|-|%k~DDVZv5PvtM S__}rg0000h!jL<1cyoPmml z!grWSfkcxYL@`uZts=4>{{RK~I>&M5dGb7CV4(tL-u_u|5m}4Kd+m3QN)|EmDS$@+ zC%-Nr#<&9T0N|`Pc##0_{f%?(d~RMuR7BMJJWBvGZ=G|OIcriJTVE8BHGu1u!2x3i zTAFT3G6PoAP5yjBrnXZ;y2EKD>4&zR(J0B@3L@ikaECLn*yE-s;ZkhSE zrU9iYWHJN8FkGqXbE$w7NdaBgeFE43cr6JKLU8-posLZ&Afh)_y#Vl0BH|Ec6B5yj zsy4p`XPp8fx>wb^mI6#2Yo8e7%6tDbwrFeDn%%bo6rZ?pO$rmD; Va{LMmNPGYQ002ovPDHLkV1jyslhObH diff --git a/editor/icons/2x/icon_spatial.png b/editor/icons/2x/icon_spatial.png deleted file mode 100644 index 999771a7fe26dcba8fc3f640d6e0dd4a8f0f2816..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 835 zcmV-J1HAl+P)6 zGFfY*g~s6SY&J%^jhcu;gNZ+as1*bSv0f;InVowrG%z2#I}F;%>E66^?m73pxBDKj zkN+LaL)J=VARvd0F+)@xRG|M)kyRy^1(>ysdCOvP<(~%7si`Ak+xJzq1k%c&3sheR zt=7E*2`q#nbp<{+y}io-;BRgY5;$j(B_+=!N(n@+c3O$H0o3#QL-I4?oo|Wi zUHkj@3d?0_t7|l@pxGQVz$1`OWNO1APq9>5OKJ-33JFk7nkzZvjE;V6$KUQ|WF!Re zEbzQ9RGo{2=o8g405_#cby2AdgvKmJPrHcRbX@m&H}fR?T5ZArPj(7xXaUD~=r|OqciQuA;K)cA0`*vJ z@?w&g3P9j^bgYHKd|vZyEfCXE^+aX>1rA5Y&d;CU_8Pz;zs72lM=}GX(A%5qzKEfx zC$3dZZDqSHi2YW5^5|au{mspRMC~7$0Tft@iCV4mdksJ!rd4t=Gk^ed(XmCAw9&}A z0aMUM!?ILMvDzYYNnR>|ZOmJ!hLO}~f@X6pZ-AiLyrtyn$fuS~rtX9E87LN4NWMsr z9tE}9*TM*(*XK%S*xx?^;*Go-*=;Bc2;oR8OxZH{C%~y zc3~}0owh_yWtjtcpXHv{9{|IK93pTm_ACdML}bn;XWE_iee9zXegXGW9;wDJ!F>P# N002ovPDHLkV1hm!fXV;> diff --git a/editor/icons/2x/icon_spatial_material.png b/editor/icons/2x/icon_spatial_material.png deleted file mode 100644 index 68f6cf8dac8b52647a575df59516a2a326371346..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 704 zcmV;x0zdtUP)4hybJOV!my1nY%mCVCki08ZNe}rARhoIMY{VSTM%*S`}@ZVkYOB^ z5=bh5qH!URSOEFvSQu(mkn1VNdjR}{c0F~RhzC7v@WSC7nFEk7wh7IsKvGxShp+`h zT%I4TtmwQs0Qp+G3GhYHl>jO`$J<==UPS=vy8tc~F)jeI%SHbR0Gt|sXS9ycaqo=aUa;`Rt`6XLEiKC7Ezn+q^1ME0qhfj|z~>FxvSS+frL?jc^$E5FhU>Gu9~U2(Ny0d_SpEUv zi7h)#1(1oc$8u&VP6bc|Q8HEnh=MrsdRvG7eYS6i;njf4%GdD}pnE;{q=3u4`iJ?P z4X!cWJRyGW;&M_-1aRJobzCNCu@V7v9Us@)Bn8GNH*>`V*S=oos7LPo3@x|4OBoB zDZx?oL9`%nSA8BTP#KTXmnIAz@lmR|^lzy>N{p)3KnPse-Zw mKp=dE@MnX;it=6XUw;9Qb~-)LB8=t$0000iub-(f*6T&Q5 zdy4Xk-jxe=4`@T#MOG2*Gn6Wt#bR#-^?&#PL;PF`SvY+T00000NkvXXu0mjfH35;j diff --git a/editor/icons/2x/icon_spatial_shader.png b/editor/icons/2x/icon_spatial_shader.png deleted file mode 100644 index 68f6cf8dac8b52647a575df59516a2a326371346..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 704 zcmV;x0zdtUP)4hybJOV!my1nY%mCVCki08ZNe}rARhoIMY{VSTM%*S`}@ZVkYOB^ z5=bh5qH!URSOEFvSQu(mkn1VNdjR}{c0F~RhzC7v@WSC7nFEk7wh7IsKvGxShp+`h zT%I4TtmwQs0Qp+G3GhYHl>jO`$J<==UPS=vy8tc~F)jeI%SHbR0Gt|sXS9ycaqo=aUa;`Rt`6XLEiKC7Ezn+q^1ME0qhfj|z~>FxvSS+frL?jc^$E5FhU>Gu9~U2(Ny0d_SpEUv zi7h)#1(1oc$8u&VP6bc|Q8HEnh=MrsdRvG7eYS6i;njf4%GdD}pnE;{q=3u4`iJ?P z4X!cWJRyGW;&M_-1aRJobzCNCu@V7v9Us@)Bn8GNH*>`V*S=oos7LPo3@x|4OBoB zDZx?oL9`%nSA8BTP#KTXmnIAz@lmR|^lzy>N{p)3KnPse-Zw mKp=dE@MnX;it=6XUw;9Qb~-)LB8=t$0000n1mm{wp$j+}XX3b@=eVJ=hhZp0Fx}>wkx%O=B)YOuBfk zrH)}4gB!#3Q!&OtTxShziXW%CKRB#l$*@I1>iRKThP95Lws+)7HOyZn$o^$7M^&fc z)N}mn8<;IX=!g0rwYOKctZB%~ieg%^?AiZ2jEB#UvRtlL1LjW)^G zgAMrCE$_dIaXcE^OwKmK##A!i-GXXxB%|PtTcPx6JK~g(y#F!M3D;=*RU0496d=h~ zk6IiTtl)pLQSvpuV(BBq7miUbM{5OYlTYHF^PAjmywxpv3q2=s3p20E#GbSO!o!J? z)3*D}(q`$c_|76m*|oN~Vgl?yV(6EfC6DF0?0kAHu6Pmlx?|{5-#hOWP@;6DJ+ z({>7`9l%l0QPh;&NXLa%hvwa6pmpD%HD`PaR@#c$Dv0H@0Fk`qZUDEpfbJjQH^*Wv zuGki62JHEmpzonEg6BN}xxJtwA$_3jnDqj?oTQ=-tY9pGmcc5>o2T&DRcb$91`fsq z%w!2DgS{6EdI@qnEnk`k=9AM(Jw`=8pEdpH6xfT7@lLpQFSNFxQ2J?g7BO*lE-PuL zh#ogPhgy{6RfB1y4{;lw-_bpJE{FQCKO@z~hgUn9%(I?>DrhWOa9s;n z6H=MjgU2Dz5Fx!7QBjH|JeGkg+zHF^bN)Zt;a};`OGx%x%rpQ1002ovPDHLkV1glz B)KCBb diff --git a/editor/icons/2x/icon_sphere_shape.png b/editor/icons/2x/icon_sphere_shape.png deleted file mode 100644 index bdb7881e70bb9e61bd30217c5193a34f013c84c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 712 zcmV;(0yq7MP)bI^k(Q79H#(2Eyo zqhG_Fo7Ywk*X~`Ek4+1V&+Cv;=79Yz!Yj!GW0|Bp4J~l% zv7WOH3&1Xb-8~TPh2A|*e_<2W3Q)8{OOymIOef{}wgNX6G#V-M2H01DpEv*!T8g*sT?E00*=|8W=7NSPZ4h>0|h2>oC;d!h0Vqz{VukE7y45<9jFrkhJ)(Y z3eJS9jb%H1Ek&y=S3rcJpxUD4%=UZ{%C__Q^#|ThVUm0>mC zA}lyA%ljAfwH48Vz?Pdvo8!(ZS3u!g*YL`EodCkut_ethfKgs_i?85rO0GcJknNTL z9#-{Xsw$~@R)Aw2#;;_Oa=hx|s)#D2I}8Wmw*RL$&Ruv340Z^=lt~cto)i5$y@(=Q z1%7q_p10w8?IE@9sF6v?CxKC*)JAwo3|D58@}agP;H(4x&Ti*{A8ml=jZJ(yE`iHD zPyis4lqIW&LEzPYz?TqCPhFO0jS9lPn2Z3E2>l_!D=MUC67p!f!ln*Yshkd=3?sx) u4kFI08Oj%gb%aG@lbyOG%gv0tv-212g1=FLU_Ffh0000r)K=lP233LzNAHbAoVC+aA)3COHhQAVLn zz}$K?mt-2rC;%+(K%uzSxt*s@>kgCx@}O-8{J~SGyn-1-2ruic3qYd-%ouk7dS8<1 ziz@fhNSgr1bou~p{`ME0>)P3eb^!q3TJ0XdqBJH#=7xklcBFG&A`P2c#uFk{@I zS@jU$hNv=6&C3qF6wy${F`YgbJk|P?%mHDDTRt<60J4e}q1rB!IdEm#Z(JA$$;?JY eizq26S;Y?`9dqq~dx9PS0000^A^xHk%^=-@EtZEXN=~j`&m6LL>pa z_lG2ZbQ*3+o;&Am62SAGrP@kbq7S&l(!7s8a!T?e zfJ^7xb>DqSABf_601ilAlmtu&VIECvU(zQ4C$VQ907(I8cZMdCmN^g!H*90iJOBWQ z-)=YM1|d>bJmdpOfa!F4i-M>fitN~{w?^YQC*?{~vlw6u!pt6O#j^o`^!mngQEFBJ z0LeG8TiH)u1uz0pEM5hWfT$9$1^`~}*X+F>0a6$|*Mo8!i2wiq07*qoM6N<$g0Jl9 AmH+?% diff --git a/editor/icons/2x/icon_spot_light.png b/editor/icons/2x/icon_spot_light.png deleted file mode 100644 index e7aa35cbbfdde624f1cf00cb7c9a513cd3fd7a93..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 669 zcmV;O0%HA%P)~ zU?Q3VOaYER05g-`+`OOESi9~$W{ws-Lx0B|cQKv!>M5Im$(X+JSQTd7Nu zXa`9K&@eIYY9VfCY`Ya3fR#EE0PmAbv5ZOsI2LQ>O>yHgy0rQPX0RXre3BbTO@4nyr zLVqmwi|CKE>mC3&8InG*^7+$A{H&+~-rhcCf}kqW>1VXG^b^c)L3B5ydP%gI%;K8tc=~QZkflN~K?6jpy^I6GT4##8}(2LLdyb-jl78D+-IWL)>D&{|Qs{HZsmUDx!k zt$hBkk737|H)HrpjH00000NkvXXu0mjf D=&miD diff --git a/editor/icons/2x/icon_sprite.png b/editor/icons/2x/icon_sprite.png deleted file mode 100644 index 3f18d313e7c7e77c25ef3a720b3cf88fa2cb929c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 841 zcmV-P1GfB$P)7D7y$OC?heu2%VCGP~ePDgO%ZvT|BTza-q|jiIs%f(QZ&ih@e15WTQ>w7K(iVSC+l@9Vp%S3Xx~?>XP+ z^PIzbcFqgzc8S}8B;{euJe4Ne0M-L?0KlRDF5f`@gpw(h##peW?CrJ%ASuJq#1#?V zCUMNA??(~o3pV*5iwKJjFgU(+)GNl20B2l+b41{^PNlkf+RDEa9AId|tdlfH0qidZ zo<&#yR7WV_pL88yB$BwOp(6l{Ey356gi?V}lYeT{0Qbh0j(80tPM~6&;2F|_#!6jx zV9%%Q$13{=Nl}I|yzOuRAoeMG2TA5kIw!zLEOE8i7tW>54M!90c>}B_h5*oLT{m=mWkn8?QbizI1j@Evw6tZ~-mGZ#*_(oto4u{2 zKLB7PX5P@6wtpu10jkRL$I;zjg$FE%&gU#lK_1A`b99?87Mnxg<0zmib$V>cZt?`^dR!b_OJ>^ z&9j;uwSxnIW-cS=Xe24&s5v7*twWF`1b3CleGgL~03aFa7PeX{9TH-;I7CzfkOOB>00h*W~sr`dOq^Q26BmGP`2;Coky@9x$=&2c#` T2cENg00000NkvXXu0mjfPF0YF diff --git a/editor/icons/2x/icon_sprite_3d.png b/editor/icons/2x/icon_sprite_3d.png deleted file mode 100644 index d3a491b9ee194161d3abf1fd38ba17393f768baf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 838 zcmV-M1G)T(P)pOo7@0Ft#*)>bsfN(MVik@stY(_ zm&^Av0|cX^hbi3yU@ysh4#Jmo)OMWlzXJSp-OV=e1mx;vF`t8|H^}Z4rP8bBpG|9y zXp`5L-5dbO&VqDVQp==U07B0jz~W!HED+tH>-M(=kVKN_{+anKgE1G{0t91Yd$R8H zrAR=R?|Hix09ewo)=b^8f?%U1Z31vNzf*F(MfS~(3r%D_ElEI?)#@|=Xl(3E7)9^$ z_@~uNioN0$Ah0fv!BRwN{p`4T1=cnvg=9^xTY+UUjG|gzleBt~@nj1NOJnth zUhluxOYs5K{0KfT)+w(@ewrQ6JpySOWa2ioe7}=t&;H0_poMDj*df-$wj9SK6$HUaNZ%4$ zkVOFwfr$|K9s=J9ObBpN&82!H42R}_q?-A8E34JFk_I68DKp6@$rsSSqEdN1KePY< z0Bpw@7kLE0*JUuT%a~rfTyDF~+X4W9T`ElmQa7Z>OR%2|8jZd7@bH7Agsc~nej0N@ zK&C$<0#lMk3gz<647u6md)_XK?32_(U|oDQ13n7)L}2D><~Yyu^!>l}2Yx(KcHdwk Q^#A|>07*qoM6N<$g0l2}LI3~& diff --git a/editor/icons/2x/icon_sprite_frames.png b/editor/icons/2x/icon_sprite_frames.png deleted file mode 100644 index 263f5c4aad9dcb685b336a18ffb2fede25b44263..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 691 zcmV;k0!;mhP)q?8-mHg}Btcs34>inv$CsbkVrc2~-nvTr>^o=!@je_|z=E~* z*+2xSYP?V=ECF{Say^`wm{=5%dX!DE;KTu)1I#<;?nm9UF9MCQKRJN&CRBCK^Sn%C z0oiPJIGIeY11Ek*0FbX#DyPFHX7dOViNxFhoCA0xBO^0mjhg~QWOe|~0Z`TG0@$r{ zfEV$2JY|d-173#U=wzP`E1;PJ&bhC^s4-?Nl}eQWa=F}?F{apypo{%CYwgi60@}*( zZ^N`ae+EWtwc2W_RJy&hvm?fs)qVtB>^~huz+2!HaJ5#eeKf{&+0uqi_HTkl&N*#; zx7G^muY$JbQLoo8v74Oh9UQOM>-BRYaxu6dBG1FBZ_4(4Ka)%*w`l1Fu~@8Xt$nYm zXNtw*6;(Y8sEB+RA0K}uB0rsT7XqBQ?d|Q*0)nmh8t}Abssb!jtJO!7lat?DZ8tYJ zj|>eB-2#??+C_Dh}Mj=wwWozxdsMm4V50ZR7KPw_Dz{x%wIaQtC3wyUv_pO2;JkQIN%jGE% zxe2TR8-U*!8^D@~+$fjJQ=QH{EP57uI-RZpj~nBU;GehRL-hPF=!K}+9=Qts77hg* Z;uo*^?eh20qI3WN002ovPDHLkV1n1DMJfOQ diff --git a/editor/icons/2x/icon_static_body.png b/editor/icons/2x/icon_static_body.png deleted file mode 100644 index 74f65ef490221c7cd8cde59957af1a92d8c698eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 397 zcmV;80doF{P)>91Sx%>gceHrNQe{AZ#GeK1TH|u1(Mz5 z02Fi-2+_hBphJNYp@fFQyF;^17D$AGc9jDEZpJhI-`|DD@ZX_|!N+K{XGG3`7Emvl z>m89>tMzHE-G2BXASb^A8YL5d$6KKFz6!$$fN|OUY?5Tf4NMdj#r}$A{VEJ6Hc3FK zEtg+w(<?p0;VR48t~PD8-P@)fy8mMBJx2VUc3C_V=^4>8m;fC`eP#U8o+^bdG0{1 r+kLcIb_iS|GOK`i23!=$JpeudD&}$mj9@#g00000NkvXXu0mjf>o28g 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 220c829edd5d0219ef5f0a5b038ee77226d881fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 417 zcmV;S0bc%zP)@lOCTY(m{>`#r6q|7#$E!38h?U4m4ATN z0I{&Jl2c=>^hao80hWe%CSc;_#zODB1Sv3gQn;_0oy_ced6R5r;lD#g4;{xXXl1oP z7ZJ(C%cNcr|Hj8V+%ISErv!8yx1dSg0=Za;r!mr6)~h9Z0AK}Kt*jP84y5mSG#k72 zQ=F{b{y2|PZ3WxDs3TwxK!2C$B7g`7agzhoEB0_nOA`Q5TR}c_Aeec*Vh;g&&cuse zP%Eb`=D<(=)sj8vITJv#L0(UF{xOVznRA_Y=D+Pg_d1Dv;HSEU zJ75HaYkBYDZG=chL{@{nFm9Y&j#qqNJpwPaa(Wpe4k+RJGf?erf1FQb>;k7zasz-5Rta^2ElLIi00000 LNkvXXu0mjf2)VEP diff --git a/editor/icons/2x/icon_stream_player.png b/editor/icons/2x/icon_stream_player.png deleted file mode 100644 index 8ff471cb8a69da344a85a69cd9150c9293092236..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}ko-U3d z5v^~h1#%rS;A#8cvAw|Q-DBG-wQ`~L!Z*%c{AHrib#|7U+Kl&^DY`#BcB?vkct2sA zgG(Mm8pHI1G1?7B&h%SV+}il@-2@p1HKkec&DAVw?N1mQf=*pk`Ve|G$ zK~eAd*E?{ufYA5(AB3;1dl|_XeEo}vLFw81JDK|?`-_*d?opH9eBi~C%~{+X8JV0t zlcI!Nwmg}0Il89$g4*=ndz~JSKdfIMW-xc*@`jf@&4Ke0mT6^~ykVLP^aq2dtDnm{ Hr-UW|@UU&h diff --git a/editor/icons/2x/icon_stream_texture.png b/editor/icons/2x/icon_stream_texture.png deleted file mode 100644 index 85cc3e7206e7f12ef779b71536e2bcb2dd52682e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}co-U3d z5v^~hALKo(z~kzBRreC}@01CBS9-ql&t!h?;u0v#yy?-R4}LDw9{j#-)birpjvWjJ z!WW%fg3q$u`|bXVS7FZ4;%^Iz-vw9iVB5`*Ru^0QV>*NOJa@*GWr8c81>L#RsQ6$5 zyI0_B<}ed(27ymG`l1V5OZlHfmfN#;$zE9TUH{*GM$OOfo;SR3c)9jQ*G}e_vjdi% s-aVVy`9KB#5_`4PD}km)ckVEk{=wzx+NaNd7wB#VPgg&ebxsLQ09tWnPyhe` diff --git a/editor/icons/2x/icon_string.png b/editor/icons/2x/icon_string.png deleted file mode 100644 index e25a81f24e2acc0a7786f4d522a5f9f623169fd8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}lPZ!6K zh}O5$eYuzndED-+-*al6m-o(OyLQj>jF=K-M-`zB-6x~JeV>?ik^fxZBJS$<&)Vi4 zV2f#x-Lcny+cl^3_{B`}JG^h5_4)TH{sc!tTK}248Be3VcCg#*Q(u(-E;6oBNCOF- zc+#}q<$uR%?Fm8?N(_WA{byB?P44NHJRcbP0l+XkK D>(*3d 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 e790af4de4e5f79e28e41ee8144d33488d7e2b63..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 555 zcmV+`0@VG9P)M^DDE`d z4`4$ZS{Eg~+EuoX8@y~*b%22i)oDliYMt_uJ_!>+vp zyE3tYzQXyIUYyP(CG!Kc7U5-sBdOF;pYT#YZ$jmNQsx{8cG*bhK>MQ($#@QUxv7W>wP2?$rIUrOz{L-m zmGP)g@wisR{pNdBv&jM#dE6u3_upxo=W(|bfc6)iL>wHzdbs^rC){Al1*7h{)9!$C zL)gy)&!E^X*f)fCuL}wTu+(Y}pu}4kfZ**A=ER$j$bX#suRoRhumAJ>8J<1>4Y~~v z&#ncSs002ovPDHLkV1mW9{Qdv{ 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 1cd5c7f69a380e3c31ecc39b1c7b11f8ee56f76d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 695 zcmV;o0!aOdP)DU2Up?qD6)HlN7ZWTNGG` zR4C505~Pqeu42ZbtidFxgo=VTMFTFP=tnAqppBI-6j#-z&FIYeT1@wPoE)0#jJmK7 zhB@zh&v)PFo-=n2tn?ChpyBW#;3lwnkuxWNR*A))0R*fIHgZwo$AUugKt zGFJC^FE|j<=f@3buhiamy?30vxR&pG-Fd}Yfho|YZrPu5jW$hGC|nb`-lmBP*N@B2 z8PFzI7Xx5M34~%&H|061;-I&Ha-h5f?MKx+dF{Cc11Nf-S886_UI&RTfjY~o50mJe zuiv8ze^d1vF2d_|TiDkvV!ZG%trg`de?MGWpdq?d61G{$3MhsSJN*0?trBH0$9)}z z!S+#|bLkv{@Q_B6xS+5X3OLG#^)d#C;k3V03m*c_QIjRPZjG>)*|#9d(nO!y=?tQ`-w zxk9csBoWj24~P-OG)i}9dL966^$8JxK%X*u$VfCaNtp?vw4=NQeq}!L2Bn=c6O?FZ d(nrP$sNV*Qx1U1nd{6)Y002ovPDHLkV1iWGGDrXb 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 a93e0228bd73fedc3b46137be55460090afac9ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 693 zcmV;m0!safP)!r;ttd>dV$Blflbai4-AWC%>pERjzc^%WuV#RW9@(< zw}vGDX+6K=lRJLSJL`rP1C?3Q9k>U={wjE5aW0LB7njrGWg9dv-BW8SRSb%+E$K-^ zd>xpB9asFxN3_(Y@Ic_Du^ zURR*yi;bZJGHOcK2R}1PXtm>N#kw%kbjb>Y)A(Xre!0uQX2pl^SMN*kez)hF`#ZLM0NsFtB#u z4qcgHMG>&J&s{Kbk|IcpK?wiTv;C6)%kxugxOXXcFkDR^MSr~mb>QL5URz)$k@UK8 zYn}txnSTP6GaF~55-m}!U2QG^w4L64xo2|#Qx^T*ww0^Q3Zg~@swi9_QWw=y#fK?-#zfx|Ap1nD-ZwzKmZ5;0l+;A zwmA2~qUU-+t!>~|VCK;h($ diff --git a/editor/icons/2x/icon_tab_menu.png b/editor/icons/2x/icon_tab_menu.png deleted file mode 100644 index becad9db76437a9edb608c778cd68908142d84a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzmSQK*5Dp-y;YjHK@;M7UB8wRq zWZOZQvH$7ERG^?_iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wMJY5_^ zB3j>0HRNhA;Bk$Qk=fJ4{!vEmO7#mj^d{SSFVdQ&MBb@0MZg(W&i*H diff --git a/editor/icons/2x/icon_tabs.png b/editor/icons/2x/icon_tabs.png deleted file mode 100644 index af61bc5ab153e1153f55b52e5778e05dd47b6711..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 366 zcmV-!0g?WRP)5KFOOf1ftmyPF5WLNkN zBwlqrnZDFXATdiophf~1CNQaite2%gYGnXO2Ro}7ux!8(tqEfWOdBvn**X3O3>)yR zU)+R10(K1;?NlCOpas8>fMQ_u7o0y`cxz#egXKK|Oqt@4a~e{&gdtL6Yaa z>hkg(5hX-aX|2D7tE*pVW8-|O0FtIpt0)=}^A>=$M)w5~9WwKf`u*Pv1(+k;v`!#a zfR4gmAgus*XUx255k3`>&j3I~@2%fyePHsD8i3=9XIADrt_DzL*=sO=^<4?zzHcLovp879dK0N|Gm9{@v1({x#>*b2}Q#OpG00+<2G^CMLh zHIZOt<)zPc>>k_GAZcZJGv8d{+XSVGV#@{K z7pCt6qMnF+P)a3bmU&%9ig}aT!}es-m_C9xup}H+6vt(jZQHg}^1N4O*|sW*V@rZM zh1PE;5A}k?wGz_$;8x&%tkyd&xv{qaT<_X*Y0000~#cIlE`$D z4mTx$i}@P3uh_UClUYeRqt@dVz`Ehf&I6kRXjAOhi_5Gx(+zL_4bgK^!yC=r`M5dA zy^r5&mMzswQy17DYHQV1fLXTG0)4#zp%nolKm=%9E2z377IpIzhyW2F0z?466CUyY zg&}`Iz}^M^39JGd=A_C;2|yB=g2`&|-=XHY1Taa58!Jf%%mO$BFg~au61&3SccEhBq<2T&#$;T7_|=)a)-}uX^MQHm&75Z%oAWL`u>bKc z?n&Vcsj~|ARrtg3G_BJ$p7^A}F3I``b_HuPPs2Kk>fb`boHB@AKqS{s}KD zzopr01!iM1ONa4 diff --git a/editor/icons/2x/icon_texture_button.png b/editor/icons/2x/icon_texture_button.png deleted file mode 100644 index 84494209d7aaa61e42af6cfb6f4241bd11972dcb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$sh?&7srr@ z*5m{U*2M`+nB63jU;Z}z|1z_1O9F>7GY|;d>KHZVc`{q zlK8_vjyzknP@L(>5o0@p5~qfc`NFfs*y=d~tj}FM_<)}=>iVQ+br!q*e{B@_Bt8g8 flpfFk+5&Wvzu1{0!8@)4t!MCb^>bP0l+XkK8xuZd diff --git a/editor/icons/2x/icon_texture_progress.png b/editor/icons/2x/icon_texture_progress.png deleted file mode 100644 index c11c1bbe4b404b31e5a0185896b370c83442b917..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmV-e0jK_nP)<#=M49^x^eMuMRD@KuJOv9cf%+5?5@cZQ zz&o%qw`&v?*7lACBgcspMYbsjf76|9`Tu=B%RnG-?+86vJMAeB4aI$RUm8DUX(@yX_2wvzSX?70pGMXV0&U~1Fq>bEpYuBO#ZzB!9ZgV zn3z3b+ap(1fdjPvz~x)7;YS5}1vVZ9OEBZJVt^u=0iw8oehwDXih)Ty-bsr3fLH<8 qdl23;W630*-+M3L9`+9eZj>W(Lr@L$(PLo%0000rBiZC>p$K2xJd9 z%jkW7{ZD_tOsfZq4Vz^Y#1{OPI;Or&MzTuL;cZm$ix!5JcIsxjJpTk1lzL}=XlK}Z voApJ)0q2A(j24#}_Wt5zmSbAXC&9`Pk*I#)5OcK-&@Bv}u6{1-oD!MQ}1GDOk3*0{(eH|Z>=?8v{ z@fO(dh@JgBC|nDfFp)+BF7#vG^DWRAG`B!=i^2e~VaT;hwS2L=1#{{|T%^lFyLIQG ziI~I{IeSf}ewGKH==Eb^!XJQk!@8_MriiTBXl7Va*$M-WuBgdnITVdeOYf2&H>RtX z1zo78PD*+N_R$N%+QE0`Qj)|4R_au4dgj;!OXcmjn>;c1DhHV=u)Md z;6u2PvpM(lr2Hxm-uR}iO?ln}Ck*SdKt_Z$g-j|c*$M;IaK7jjFf<+5Qn+1oSpf*y z^eRjSh{sc>p#eYapXsU5cR zk-dI?P~?lsnUQJnyq3Oyz)~I`qBuaaCCvB{o(fv}{_! z5Kt%!=L8<+!?XhN0P#4`hB8j&JW;TOp=xmmxQ6O1^?@#dzQff~nHl`F$1QH+eJ8S# zitSFonq26hXiXzrL}W;&E_vp`Km!1pScpn`(BoR2#W~<=Rrr~tV#D>;_=CWw*t}3O n^~Hi})L|fC*?N7k|EP`M-v92ad%Bsr00000NkvXXu0mjfe%F2w diff --git a/editor/icons/2x/icon_tile_map.png b/editor/icons/2x/icon_tile_map.png deleted file mode 100644 index fd98fb6a39f6115246bdfd84efc23b30d233bb2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_bYPZ!6K zh}Pr;iI)w6$0Bz9JuaWpnc>eTR@Gq~_=?%<;0k89gBf}fr3W-5&ay7%lVDxEGvNy3 i;sg`%9;*Zq28KGd6qVQ9o0WiOF?hQAxvX@M`qX`q_Sx?pcrX89zr*Ux mF@fhW5E~v_T7I|kBg^9-DY@#Yd=fw>GkCiCxvXfSU#sZ^Y-=9Nmt3Bz#9HV4q?Xb%ohE|-4+ShG11nJX5HkFy3S7K@KXWG+Upb+mhs z+HfMmTCKJtBJ;7WRo8Xz4>Ave;4XlBJtpM4nVFddk`k{^dj%jVxm@mwi1@LsO|A8f ze&$;1%K$dxbhFu9N;3zBJUOlPNs^xcOj&e`QT zW9XaLTAwAk3*e|l|0H=vDOCl4YPG6zxm*Q6(W?1P@`6(8;~@RiE3n~t-e;260Ynyk z9KZ_^$%{xnpU=OFnMWj-hM5B+OuZloZliZT0Kl!z`Y6WVab5Re7TwGNM1;neZ2%W7 z`g>=cwz$_ysl|Rx7e`_e4heB0HqWQiYDUo<+5=q}V^&Dc4yz+MYm8aRs+;Kwj4_KM z@)FqtM$pRT{HnKxURdq?*M%U(I^-?i25Gs-rn96fHwy) z2Y@M(Z++kI+nA{VM1)ZkJttW{fO!|*#Kgo?5lKDm)Bwhq<&-bsz9Ay>#+c=_y+kVC z_m4S_W6=9EaTsW{S}hg-CrF%t<2X0RU=9G29qk^ZUBR_6n0IkCOMp}3awnP4P79Ff vBeEZeB&8DpNNxZK$KW4|$i^6S|8e{Q&ph_MX5Pq200000NkvXXu0mjf1kP1p diff --git a/editor/icons/2x/icon_tool_button.png b/editor/icons/2x/icon_tool_button.png deleted file mode 100644 index b9dd65518f5218d1fc44481f7767930611b5d566..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 753 zcmVjpP*nP~ksP(#<3?gcQR#NO<|TQ2J>FKxYD)sVw675|S;%T1RZg|; zihwAieirx71L$nv)>SaI`83l$&jlRJwG9D0=fd^;_iQF&O?-_!0bs^RvT_~?_DfAi z;-(970DwS7089a%{sTO{1K%^&$U^~Am8t1W>bNzY&AdHPFKXKoxTXic5V*WK*BP76 zq{emVQq&7EVP)myvo&&LK;>0?JewFJS-aK%NJ>1L7*l!GZrM!WRkag(MB}QdZG08V zwdx(r$t~eF%or&JFeJcYQ8Pz1Q(Ly3^%TGt0ImRd7YX)X2Y@uwzO`)T1Awl2!preX z9f8(M-O|0`5D?EM!zA8Rn0^8{VA~-N;Lz573`YW?1OQB}&mHj<`M&;jlqJ7b>OXB{^Wrz>JYPS&?2h zSO8=!66{;CFSzX=zG|nw6_QtHbIEa1p22?FE#yUbd!VI1CQ^O~+c4xYMQ#8%Ry&Mqp!V7yEZz@G_?M>w3Woj&!aI$_qyxgc1w#jb zd(8-NmOwb+K!*tc|I7$8cg%eI8k~qc5&1b1sD+D2H<}2sH^v-S7l^^lzy9N^y#D^{SUM00zt7ATddfmaJm zNz}qs0x1a%d{&%uZE!I;Z3YhWx|(g$L4P+-6^h9j8(#R~00000NkvXXu0mjfHhPQ| diff --git a/editor/icons/2x/icon_tool_pan.png b/editor/icons/2x/icon_tool_pan.png deleted file mode 100644 index b7a6c3566f2f04133456f0cc15a909972f416ac6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 479 zcmV<50U-W~P)xCXa&z{X%$13>c*{0Cx9U39>z9l#DC_;09`syceLujbl#pL4#p zuXSKHoAnoq1t+4`e$_Uu0Vt);<2X(cQEII}=JWY!rvLzO2LOA;`Z$WBH!0;U5k*}A z^eg)wV{D|geofPK;K)UlD;$7`CWg4PJkQ^yl$XAV8vzI*9*F415WCM9dn(q>N(&P^ zja-`oA;j1MQBH0XBKi%{#t)GYVvL9*OLhQ5b)n;H{1Og_!;z~Ko8()$69B;ZI((g8 z_RDt=fCa*P%*sN18v(2!3S;_IUyk`f#K+}wd6Fc_r|)^&qhB_A VuQ?>2K~z|U?N%{w(@+rp?!A~)YP&~JCAQNJMf{9{M3(|f7m%uUK|qUO zVL~c1VgaE7LlnVUkSMeZ{EI4GD#s3~U~khQIKE>biCo8aozRVbliz*!?!I?-el~E9 z{~a{SCdYA#M6{rkng?J4nCemo06b>iX6Db+)6>l}70_%pFER5|5m^DCPjP1=`pC>r zEX(r#S%B-hH;CvxfQhVox;SFyJGO0a#gQsw@`psUIYM#(m{dxAa$R>Vjy$yj-IH%( zQ0%UVRFqQR^ZC370PS|$Wac@g)QX5)iTE=!--=cuRlxrK{*+-DdpLRWwun47P4g`g zaoj!;(TzsqE`S#RE`+EfrPOS(Sp3;Dq_)5?jP+=80P~h*Z6qZJ03r%Z(|iqJ9>DJq zH7O$NCw!BFIF3`)T000$yNKMgEbC30=qT#-`U9oZ%aAGXeczgynK=MbDnLXFIQgpW znx^?~nB)LpS=I)CTF9gg!&vAo5(Oxwu7}qmQb{X&5{M`ekxInekDWFHc0|y(VUza| z1VMCfIg5ac;YF*}`Z212PN&m|m@f4ma=i!7^C|$Al7ftnj~{xT*IQOi(_GFfKx-Wx z_I@k-6&M>ETLrL}A>LlsH#3N+7%}}C5Kt%-j)`ayz;Q~fV$*!ozb&b#)oK&@eBR9Ea@PPXBUJV-n3-?dw*4iufMMWyUfMOy%>2ls8b@aOB^wb;L>~amCM5^XwgN5u{VlHp*ztXTD?IJzI7brx0HRX=K&zWR Q#sB~S07*qoM6N<$f|L}Oq-ktzs%!G)Jh$w36w)rO!V68n2$(i{VE{LE@2O@2606bSp9Ra7tbk4zh?_zZ}x`x);Lj)&Zwf(8q`cs%+*Y#eO zWhZU5q9d5k=Qo)7()v}&fz!t-#uF7V91b5l=ROog@rS5u<}vbhhvt(cv=tby*;5hG%zIzvd43(haZ&*-^Is6r5AXd~ zA;cFcW!LTKF93idqPO1r62MGrU8N-4VTTaE0aQTL7vw0%mjD0&07*qoM6N<$f{?-Z ADgXcg diff --git a/editor/icons/2x/icon_tool_select.png b/editor/icons/2x/icon_tool_select.png deleted file mode 100644 index 7421b98ef69489680d209e42a1a528ab589eabd9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 659 zcmV;E0&M+>P)6hRop-}5$vv{oVRX4&H`1Z^aLfi|{cA!5LP!9PN6 zB{s=PlmrQ)223<|F=%0sfGGt-GA&F{ZkU@xY4j8T0Gx9-C0*U4^-0pSr15gO?0N_PkGlf{7XhAk|w(d2Y}PtPx+%UrW(ibsg^nITxzwNpCpL^;B^VolmNVt zG!{kC{LV(p2>^ia`!xVh4;Y>TSSC52B*}8N+40Lrj!Qb1_w62l7l!5R_&N$~r3j-*Z%PRohWXcWC z^X9@ZoZSPWBx$M>L~ej>WiR9N=7kHxa8}Z276QPHIF1Jj0VtJ9GXTCf*OLCZ7f}>F z$V}ohfOA0*Y!(6#1i_}Hd)v!~=XvwlJv)wLo#dG?4Bzf2qob^~C#h5deoe)E^ea^ehbpsaXI3002ovPDHLkV1f@vC42w? diff --git a/editor/icons/2x/icon_tools.png b/editor/icons/2x/icon_tools.png deleted file mode 100644 index be76e8fc3a5bacc56645cc324da5656f28ec9a1d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 544 zcmV+*0^j|KP)exd2%V%|C1>J7U$r~>X7)F`ix%kA zpd?8K#uzrnaFQg0CNDFu7-K$E)EF}JN?l&iRFsH5R*lP=PN%&zO|JnQRn$06)ATCK zvKOrY9y=ZsLW8PZm`oy#bi{z$XUar7r-0SKa{qet!<nLRHV+&lxNuKB7d>qGdhs4)Cquz z%SS}lQp(e%0}zoFLaYP0X<9r8f(;_FO9udeFbsbyrPi2v;aAMeLn-C^D2i??;atUy zF$@4&Yp1v9pUaiElpXjNbpQ*mQ~3<*;=XsnrT@MI9Y6>0ECKF4^6s7z!1=U#dj1X| z2!gL3d0(CkKuUQ=M4uaSK54Db8@}iB0TE@b0RTWLwMRr-0KVhTowx^Z31Cxez3-?w i0+16?#>^uZK&J-^L#J>-5|}Lj00000w{@Ser0L!+|QmcFzupD)Ymf22T0yyQmV2SWKSB#QUKYs)s~$w zvYqNHFd5_vf5Mn$%7Cvv)QEO+$3cpaf%h8e=#GPA%0L-N*-ljz5U2rU(^k_v-83r9 zG~XL{4$#+l)_}VpfVK>XXdWmxHunrMUSo6L`TFLX4+02X=^suCe9BBD{dgDr1N;MY z-34LQ+BIz%C|v2tf%810s$KnzI@Kot``lf0D{g6k#O?9L%gs^Io&Qz<)Y}Ff15jmF zYTl*oRM!gy?K4Kl4j>G-%qM{jceGkOJbRkxJ%H+t*(M9g{^a%1MP<3C0NM25z6hH} zr|P(Pa@tb>fR!a{QMpUXO@geCw5eJOtc 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 0763836c3a1f84aa42756e83c955b132279bfe0a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_po-U3d z7QM+S2N=u#?EfM^^ZmgU$2)vwh4q*_SQoPy7#J*SH@h2a@PRGCHK~zYI?UOM}TTvK>pZDZuRJR7oO>UA>=#r%%g?6ixC{F$dBM#0& zp%e7NAJ?RMDf_1*((8Ne5k>choUPhe&)j^jG83(QZb9RXh?{q)|SI_Em2QmHGc|9dI3 zK$0Z2!CUDEm&8$MLF}9RLs09yYU&`FwsW48wL-@G!T( zz|8j3!p-bZ(wj=9@_AbDh(L-A%fD_<{_x@|OTJ6jV ce4k-%0Q+})o{I*E*8l(j07*qoM6N<$g7+)Qy#N3J diff --git a/editor/icons/2x/icon_track_discrete.png b/editor/icons/2x/icon_track_discrete.png deleted file mode 100644 index 19f479657bfca4f4686b4635b5f1987903fd6b70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC-rKgKy zh)3t!NgD+l6nGfy*DYlIy@TEOq{_O(bI&z~Rft5m?1*?VJ@eCa{uMXi&6 raW%xdvQf`Bnk85Nx&#=m-W+S3j3^P6jA5L~c#`DCC-x2KC^ zh)3t!Ne4L(8}PW!-{n?y!S3#1W7WwevX0j6lP7bEbh{P4_5SSVbmP%t^&jO+MAEjo z*{xbtQ@=GijX!}gOkw3K;Rj-pmrn5b9Ef$9c1cEZ!Ko7roE6UFkNISXD@r8EfGGKIue&)L_wBD;SYZ%fQ~jt|07Of50-6*;eUjoIC|8$|=1#o+1c K=d#Wzp$Pz=!%&<6 diff --git a/editor/icons/2x/icon_translation.png b/editor/icons/2x/icon_translation.png deleted file mode 100644 index 0ddc1da2821bd3a700dcf36147fcd6e0902387db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}yo-U3d z5v^~h8gdozo=Y3hwClNr_gvxqCXyH*EOEncDvk$G| zt^aRd$wte|745wPi+#J&*nMFq{`y27Q^pd>ptt8?t8cUBWLww#)g@O&jLh_ zMmRq>*fG<5788TPRWXSyZW9hB#|7bx*>6up?f$m%q21xmj7ocD-^+V^WA%kA_}Ceg zqPEO+dCs}xVc(Ijp|#I*Uv%%bt$!`f(x@Q7(&WIcw~9$=(`6A0_dt{D0xMinPM?`< g(dRFJ;#F>r=4Ezh4>vmB_x(bL5-B;xSfiw8Lw3^`mKC%e7b zuf0~~rkssVW94^!=5?#A3^k0^Ki~KWG#m_G*ZA_4Y!`=c_VDhwZNYUbIlH$TB;e`l K=d#Wzp$PyxjWiVi diff --git a/editor/icons/2x/icon_transpose.png b/editor/icons/2x/icon_transpose.png deleted file mode 100644 index 589dc549198c5a6b2fd9bac0f367276384f61c3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~IPZ!6K zh}O4Lz4;mxcwCkrYc2@hnYpub-3@^*(_3YU>8?yCt0n6W+;^_M5M^z9aH$AW!&zY~ zZ>~3&T<$M6jGsUC16z;+>yhXOUya(#Corv#cgmb=_K96bf$ zjgohK9h!D?ta;GzF~5SHok#k@fwL@I3WOWgKkzWbT)JpJd6D$;A3!HDc)I$ztaD0e F0sv_;PG$fA diff --git a/editor/icons/2x/icon_tree.png b/editor/icons/2x/icon_tree.png deleted file mode 100644 index 7fb4f97f830a2544ea2493b357662d7a3d31233a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}|~PZ!6K zh}Pr;iI)w6$0B~!ovp8mlF^kobm9OIxcGZ-Yz$=I@L*EIQNgtb8`=-7V0JqV6cLE! zTd-U(YpO7_9MfXH12fq;7`;ySE)3^0Ffy=_4PgKC`@em24nJ z$hLzpWB=2SsX#%=64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UHdb&7< zcyzv%$)uShZF@o?lkMLim4p?xNN}}54~@X&9fu9U0q$f zgwwV$Y*Wlpy<5y+9L@AvV4kY&udk7h&ausCzdR#yYGe3;b=UWIRtK>a?)97567$wD z=qUGvr#@~EWG@`sFyEe|LG*$P19RVj;x%e7txg`8ImzXn!pmuodZbc(ew{iL%Y6Ju z>*SeltPe_WNdNJXZH|qFPsPD@ix`b^#_q0v%f+JtJ@$(AH1PvHz~JfX=d#Wzp$Pz% Cs&ym) 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 baaf0167843d38fef40ecb35c685eb238682e61e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 319 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjEX7WqAsj$Z!;#Vf4nJ z$hLzpWB=2SsX#%=64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1U{c)B=- zcyzv<;>dN#K*06BNVuHSm0*poE$Z93g7_7$2Jd)NZp^K_ZKLl(yK z@=Gi0X5(Sx{B~fu`t!{(Y%(gkiy8Se_d5tBSaT@2*)!G@U5ct>6}iZeUvxL-z|Avq z3x7ZE&1|k@eGo-U3d z5v^~h`SLXx2(;dp_`r4QAjdnKHa4?e4JT}m9GN`TnqejP6alA&^$R*{U;Ev^{xaM6 z!2a$M?$t)m)QAVNbTFTh|D4gaDnZZ;dDX=$qV%D@485<+k3$Gkv)dbc5HMn*3GTu|)&wobx z+{>L74reD7JbA(^D7)RU>H_Do67J<^_Qpmrh4OT^(Cp#GFVdQ&MBb@0HFbXfB*mh diff --git a/editor/icons/2x/icon_unbone.png b/editor/icons/2x/icon_unbone.png deleted file mode 100644 index c20d6d9b2c737319caa9ae0574bcffbe09b30648..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 661 zcmV;G0&4w_}*AKxOW+;0^(~+gB=ms!8Vm+xhLxKf43` z>tPuWkwk0l#UKbK0h|Hw3&1-752Gmhc;o`BtE*2W-8^K{$f;*tXA+!o17Lg@y{r{4SL)oOKV??j;;AlV}M zBSq;cNwYi zjdRWbcmv>c4*Ym$kb4KLwch~5Iq`+U0`+=*+gdvgU_L7=X*!pHbI!zZynAeUBuF-l zF|RTUG@H#q0H2I8b15X&C0!%=8o+n#{G8rOx;ij0FtJbQ;6m2gF_Ke~hDmM#Sd{dl z-R+%*o43}E*X#A|4j0F9#TYXOV1(po7=~Zdyx6XQB(ANkO-q{S1?XWO8)IC` zXZ#UZSy{Oh1i?&Nu$x5I?Djwq1h;bVV+VU8w*Yo-GI=r*MNxkl0zY%`>m*0BoOv&S z_c{3cX}dj9faD_pJ_}58tjOZ~1i~=@y&r1t#zqSMq@+UE zy1zcfwOVaC48waQ8%Z$9&m>itJQi|WbvK?)oOJ~(j>YxCdoz=MYBZ( v63@>$cb4Sc_BHARfCWj9_x@7;utfj>0U=35 zK~z}7?U%i3!!Q(u&y_0zDaqPhSkI6=OzI_>OJAi+wiZgCBM%Vr2m<4b?N-tRg8sUA z2&zG@W7DBJ>S7K6Qp&T|`Z?Ce+HBM{?>1}MU%vwhAOR$R1dsrt07|J**Uj6kjRJ7a zmt7$0&+#hO*EA2Df|;P;oEKG9T|a;leMJ)>qTNvU?Y-Yd0j#xa0EgbkZ=z3Q%u^IV y2(fq0EdXo)9DDFS0@!G+@AEwWNPj{}p}qlA;$%{h_ecc*0000PdZCx2VsA-eVohvt`e=O-L^?6iofK3qaK}F53zX)V@Q-!#y`T9{-!U+*5cU$3@jY|X{2$OM44$rjF6*2UngBsEPJ93W diff --git a/editor/icons/2x/icon_uninstance.png b/editor/icons/2x/icon_uninstance.png deleted file mode 100644 index bf3dc00368a19fbc04ba52f3f83cd6a0b4a86eee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 883 zcmV-(1C0EMP)Z)cidVG)9we;}avZDEl%tzaSK4gx7nsSu6DvNJX!w+D$> zTyoiaHoH1bb~k&uSm`v!&CJewzpwY30si$Nj_V+;^*Df8l2-u8WLg1e2qBg|&-?gS z2yAX{4pl0ZM*!vkxH;Qmk}q4W)l_<_1pF<4$x`kXqS0(NXG{`KKLirXC(G_9 zIW;ym_RySj`i%LUHT{|7jdr^|(r&j$NL~l<$@0Q&rPR6f|3DuOn6+ZQL2}yn{cU6J zO%Md@uIs)7aMr+_1u$QlfKrN5N@2Ux1drqRYPDM3QA(NCp7cB~Qc5iXcx~*TDjfo) z6wO~_oHoFxs@3XF7>0JtBLL`hI&0RqUTFfRugtgCIEJx^5l71!HZW+uJx=m{hTBu{QzXCUoYBoH z*)qc^(Dp5o(+Rjo@>@=MvOuiL6R@-$B=7sazpa!SBB@O)ll3&=Dq8DTM`7F`zys;19NfbrbY;8Zbr&*E{w~`B_`P3@Z_Wz^T@e@{Z$mpvTI@SOH002ov JPDHLkV1hNBlqmoJ diff --git a/editor/icons/2x/icon_unlock.png b/editor/icons/2x/icon_unlock.png deleted file mode 100644 index 40ff3f25a09d3c93bc2a82f43cfce253049b025e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 388 zcmV-~0ek+5P)+zY&peNo5g)YZA0eV<93~=mQ8I_#`&xJ7}q$ zwWV@}y*`0hm`=$SK0;C`$XIyFUG#FP|19kdcbrN8=mJK&N{PDfNu!CR`erPZ4O{O@G4i@Y81eA z-KSis|EIAo0N?l1T*+$`z(yUwuaC$Wqje4pf?#T9>j`uK%T*8NcUkrBw4Oi*&;e9_ i1&jJITTh?^==2G!byQm6l;#ou0000GVIs&k+9uZlt>mECfV}VuF7&D40$^*>!%RJ93MYC<& zD&{pqGQQPON_oaPBD#%c9^i?KwALNZ^GddDD=B3sX7adi0AoyRTm7OzGT}85oiI^L zYwb!Y5eE@nC%FqDdO;8@02D&18Ivr+$^u|tU^<;%0=Q3lF*6_fzJHZ;59@fxr~(TE z0KHJN8K7RTe+VHih-kRO|AC0kYqi?@4Xq#0KjYb42Y;b spU)fRa(S}L9Qdl(Z*LhgWH?NG0=WR1j4*0ZGXMYp07*qoM6N<$g3T$}TmS$7 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 97eb18c528a18825e2b1dc7171271e75a95d133b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}mo-U3d z5v^~hZOl7lAkb!Sy~d^KOl{j2%@{Hm#?a%*8W`@Kd}<28XH5fAUE zy74uxlxX>2fA{9Z|N74_pDcJElxL*7Pu?Z}exuw4yUo|xW_YViE}Zj}x8YO`W6AlP z8imlT&P&suRB|qOTlDq$yt9lx?qA-WO}lmTL1N^F!)a X2YWnv@@@(!92h)Z{an^LB{Ts5oZyh$ 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 c91d7ec1cbdf34bd25aebca64a129ca9424c7de4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 461 zcmV;;0W$uHP)$A9~5m0$z^>( zvBh2KrT;sZ z%uJ+ZCN(fEs14X1J5^~p1(IV=N>VBL6I}?;n(>G8q7*%)*>EVkwPjzi z`Gp#N9b0i5?GiLrjdj7VK^eiiHT3g@1sF2_=czfa@wo!QD64VjFC&!$xAQ0PD|OQAU?bvE#`^6*&OOMEA_EKRb`1@(3_B;U*hNSOqFEk4S&Ac|CC@ z23yYl28N#JGjAM`r@)b@#9#HcYwBsjPI0u;;78n>00_c>!5^rjyMTI{@IPZ)z_x&G0d)wFOw2R;V?}cy!uMg- zF+mQikwd^#RQAY=NZgfcJ&hL^S3kpif1P7KTb#J!xz6XX{E=Qzl6cjeWTJa!xfDBI zQ4LjQ8A$Z>=Lj*_hTu)yBpbCL7~!F^g~p>|Rih8Nph41Bim~ zJfAsL`yknj83DASI-SmE$Cmxrji71(jC_5)yCMGfE}}Q7^A8J~R7)ZV13|tI<>P4B zwektkTLF20*hs=EFbkXu7;i;&I+f3jy1sYsudImcxOY$;z;dLjytR>7D_~qR1QaY` z5z#^86~B0{^SR=66ohZ6T;H&OzNVfzUjjdE^Fr`bl?gR+qIYk1=v}b2@efUb VAfVoN$;to#002ovPDHLkV1ic8bgKXW diff --git a/editor/icons/2x/icon_v_separator.png b/editor/icons/2x/icon_v_separator.png deleted file mode 100644 index 58cdc3e8dedc7ef78e9cd3d8310d0edb6669087c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_c*PZ!6K zh}Pr;iI)u%V|u;sum9P9reBOl@wARwk*tHR!K;Qq_8zMS)>sDH`ojz>f6j?0X0u^& nlZ8qoTwz?CdkCZi#A0Bmv=p%X%W-2L&}arvS3j3^P6RTb!x$c3Ru%R29kpnowcTY6!x7jp#s2qcu6<;HDLc3I z7?r?;AIEtV1Dw5FE*oB}owuolotaEIN`ay0fKe^ObnlQ;x|<2$%7D-Hzhmh`Hxt|$ zFg5{SA{Xdpf;$5~7&Qw*@y&$4w*?b{iNLQDi0mAQ{9fQoE}-NE kY63M?&4*1J^X>;M1&07*qoM6N<$fW5DNz;*ZZ%N?5o00oMFTum14f*dQo0^v^Q0*s!T!H@x#7=SmJ-<8T%4+~D0Wfx8JSM^oDYk!HZ#_GB|C;I(3q5mr TxQHA700000NkvXXu0mjfL7S{H diff --git a/editor/icons/2x/icon_variant.png b/editor/icons/2x/icon_variant.png deleted file mode 100644 index bb8075a06940692a750583d886c0c0f264931773..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 398 zcmV;90df9`P)d-8J1Y6I5#0g+VW#KR|c7_{J zafPxmAQmr`lHPy}jU1T?R7?YIRm6bb6n*;t=g(23KqL~0{CC9rgE6L?rs>!@cLp2+ zz16|NU?2eI^SSdJ74R&CxU1`WlIQty-CWzg1SpE4uatUp&Rqi||L`B^0VC(!jZ$h> z6h(i7U8FIl+ceD-IND^fh2y4a?u{|s-~wryj(2qUM+v3WMQ{P&+{>m(l4PNRPN$=R z2QT)W?FF23`=0PpYrO~+WLZ{PYsX%E5L_U1@H>XXVc|u4!0T#ImgU;FDuoa)tAVw4 z(l)#apz7&kFZfGhfk-6s23V$kDh;EB!vFvP07*qoM6N<$f;}Cs!2kdN diff --git a/editor/icons/2x/icon_vector.png b/editor/icons/2x/icon_vector.png deleted file mode 100644 index 9950d950ac395fd6f2ef7af84f2cf80250eb09a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Eu!3HE}2mdz#Qfx`y?k)`fL2$v|<&%LThdo^! zLp(Z@QxpW>R80LSKl8n!S@XmY;|Ywys6Y6xWSu}ZkYs51TWi&Dmw413=x zXtHeEe~M@6k)oW24ECJ*sgkEoe5k+KV3F{A^_PMbPj#-8F&s2$cv75l`oEEp(UINV z=OVm<*)QBG+QYY?{i%hlgZ}A_Rte9$dFKB2;dy>h=l|goAMB6C<~;MtiaK|oK~;Q* z_n94s4jhPRR{1i0;zY$pv1yN4t>aRsy$8B6{rT&jj9pPZk2;>;ytQQ;Gee=A>;Ih^ Sb!9;BFnGH9xvXfZHZ2AOFKx!@kqN2rRsyJ5w2`MB&P*PEV ztWA|G&<75KL>*U=>=~*^1jj$?n52kbIi7Fk?T<$bG-`C{qN0S@m@5Ep0FG@6yFsAJ zSy8Av)cgfn98W zu7O=_Kk#b~*xuf4wfdV%4U7L&V<6AKhlrdzNpj?Po))4D0G}mlT5%gkF#%6b5Dfo> z=K$u3F^>Y=)x~Wx@UHs(dug>iUMwC2=s`qCshQGx1m7Pf)9D$2%R0E!5eV}$5eY}p zM1UIrZ4h-tSBH9B1V05KA%HFJfCJpcdz07*qoM6N<$ Eg0_RJ4gdfE diff --git a/editor/icons/2x/icon_vehicle_wheel.png b/editor/icons/2x/icon_vehicle_wheel.png deleted file mode 100644 index 6f7fecac4a65f1c3f40b790b27c743eff056c498..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1269 zcmV?ZzJKpM#~EnmK?$_6EG0zoL8UCx!eXe9W=e8= z=laeh@y1S95tvO6r`E6FJBMm%$dE< zIXXwPC)d;d_gd>)-@n%SZ@`@{Y}HT_J=a}gk-Y*|P?{;A8vsaN5by`3BS9Drx8-st zZW{qf42s1yH0E^y54HpXr$N<@0lG%i0a#;Z_1Skz=0pQhO%z+f5Vj z^7-Yotd9ZQeT%^>BK<93t&_=o-7*2MR9Z>ta{x{qSQ+GANW;D{ClZb`3IOAt*KLR4 z5|Dk6o(I`h?V0E49FHc%l zUk*D?R18X`-2kRXeg*=zIO+5b02t5b7ulAT0`QciITda^2l9|Fl@jUnNdPZ;uDgN2 zn*dA|X@&!QC~0}LF=H9fLsJLE>b{pm+94L}w)tcvES!`DG zW_n8J0ib;C+APbmYPKXVH4u<=5oB!{+T>CIXJO1iNDEM{Il^$lVZY`3>tNdq$b5so z66qiSSQV_v1OPPx(Iz|^n-bXv0KQa$6x7dns-A!p_{NkfQA}S98aUEGAPB?QQUUP7 znCs3IpkxZT%8ytK9Qg2ijkhOiGM!?Btf1q?GV&~Y^ecW_*u7~th z9mtLLfkP$;HUfYhhC8CiGlA1>snkym1V~E2);gfop6hO4e}CEP>RLtV{YW|D`v6cm zjDVe15UgS@=Xr&~W&pADD-2(aWh$nu9LFO79*O)8CB5QgGTQ-QyiizZ8+o)HDRte)2n^wNTuP1UcT%at&D70rHUOM-dc>0+h4k%z2tVTa z{zKOb4z&I-SxsZM37FqXR05|ZZM8F*Pg<~TUCOSz*dlu+tspR~_A~=V1zaLfd75Rj fKi&-Poh|Od-Sii#0tdXA8# zmAbbBkznT#{WDqR0Ja|sMkxUWu_zm;o!1+J~@J z-BQU5i0+facK~z|U?Up-Eg+Lfa&oE4h@%CZ}4{f!yw{Zn-!7aD}D>uLvEbJ_d zvDGyw1Hq`JF_&8o5DS?b;-do_=c|~XNzR$S`oQJCM~n|uRqcA7cLp2+!NjZ;aNGC& zX&lE7-vkEu9k7@f{59`w+wP@l`V8RP>G1Lea3!TY3B&MpN@`IQTS}=MI8sWT1IIAh zKwZ~MATY*kXIb_#CEP}99s0ii1T;|;Z31|s{{g^UZ~(h@V8hP5U+(@{oPZN>0#3jQ zH~}Xx7FfY&bD0aKwGM~R%dP2reskj00000NkvXXu0mjf(f^OS diff --git a/editor/icons/2x/icon_viewport_container.png b/editor/icons/2x/icon_viewport_container.png deleted file mode 100644 index c43e53c34eb8cc26fc2fcabe87cd2c7358da64e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 528 zcmV+r0`L8aP)`Gaa&FFF0N z56l50eb#CL7tXky^`w0D!ayee7Z~lc@H41}c4qR&*y0U<&Zo1T4_F*PicZ_Te5AcQ zbAuOeo0!k93f^qTJ6|h)@5qn$;;3;f-Z058^efyCMIlUqgJx~QSoKR#vxKYT)ogzY z!3Z2QYZKa3#|XU8SsNWO3c7l6FU;AQ)J3=9-Q149Et12G0# z@YLaA7xh~3T|W%`0Z>LNF(#^My=2XO1we%J5I_7aFnZTonL%VhX}LLS9CzhA9#EnH zQbcWs)(=KtHCetkMoj~!Kr_S#nj+N1si~Ou9d#a9O_r~Ll^AZX`1C69BhbP-a6CK1 z^&9Q#@FQ?BK*0|9)$#woz_=YyjStZ8sE)RQ^`v~IotXsno49Q66+KnQ*TEyn`kz8m S@u`#m0000P)n6j#t!5HGmSr zYQjzfga?D1os@IWF@R>rD{Ay3NIp^HILU|B{^rrH^9o>x*IKCtB6*em^lNp-te#e%b&o{sh(F${}&`a1M_O(31k3M z0L1{tn@dV+b%%wq*=Gzu3HPIe<)#7A>JAIWSnjBjyNPdjxVZH;Y^|SCUrLpF7vpb* xo7W_P+J5fEH)dPG4bV@)x({4O%`;^J_y!EGXNw3wAASG;002ovPDHLkV1ldvvM&Gt diff --git a/editor/icons/2x/icon_viewport_texture.png b/editor/icons/2x/icon_viewport_texture.png deleted file mode 100644 index f798f1d221b9c493d2d8a50a984b37443f40eec4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmV;F0c-w=P)o8lKs|Nnm5(u0Qoj>s?KINo&}=L|Rmyo$BP zz)hN_r|ow8{*!@B{1#|cEL`MmGMVgkI-Mr~*H*L6Tfn81^2GQ3mnv2J{r;9xstX(` zrOtt4$R%Km83JCCB->FGJy$7i(OUbi>plXbAP6=AoZNp8pe}I$8#}OJYtA=&|BS{! zWd@8fsWB#9nt`&oKW~{&v1_{yf?%QM)-QoF=RA+~N#M7gFM1bNKY^;xyvXV&u;_a( z%hD6b8yLgKoAc`LtOwN#FeejMzX7r>|n;gJxcmltnn0C)#Prfnu3+;1}g0000QFU zz|(@LkAQv5dz<9G2aeN^=I}g#|plT~1aGY0(=wzCliJr{a_SYt2LyiLke3lkLL~lvk zKG9OZ`tI6r;{upWYg0lzSSXc#iVTSrYDqZ(AVE$* zJ-56(6SuMF^(f{EFduB17DA%2qHSM_d~%(gQ+j2k!odBp(45rz9RN|>zi+|%?CiZ@ zK9sIRG0(<(&Yst!w7$?>BOT3az+yhnj?=v*d~i@Hz{}1J`u*A2eHj5c<}!$~i&Dyk zl%NR!U53P63K&ns0_O~Vkj&3z1TgbalXIT=N>b6*w43mFB9`bklM^!^$q2Y9AmaZT zvL%3o_{iko6ZIqv%wM($NZl#^MH{ zwXt1_=!1-aLZwm%u$Xq1L^juIG8z|c`;ru5KbSuT^9q<(0MsP&{^IcPFOeVDYEo=| zz|#0OZ`(`JAh8cw|)*#OZ0@jQLq8^)OW`f3*}4ozq*cW`0`qrL%BQGQ`qRYIawDR0 z`I=l^eS&~f0D|kF4hT3U*VYb1r Y0|^0`2aQ;cYybcN07*qoM6N<$f|(l#ssI20 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 3d592e89830091e8189b834e0c311bbf3e1ee20c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1114 zcmV-g1f~0lP)K~z|U?U!F@990y?f9FnSHffp)1*sslQcKG2 zAvXUgu@41{8W9x|gdp~zB|%j1FGOpzm9AA0(@kRkDn;4{sjVSctPff#ifyD(+U(x! z93PU2yEC)NV*6Ggp}={Q1L(yO>0frav#>q&ki5UFmy ziuZl~_cA}>Z89o#p!X}>27vH8$XQiAYW>`&o$D9>Rw`e(BW1Ps{o!kOdN@4_t)e6p zEhZ={L01ZF^o-Y+8qV$a#oyVnuJZgsx#wMi-d;7SgHz9VIA?%PAW?>259lzM)2U4M z#bd{G-XcpHcs-+uyC1ZBF{U4=EAu_B zD}J2ubXuKUjomKL$IMa`DCw8(q_?5DS@QE5NM*9!h`byYH^};yqN4+j^uWT@>(ctRrP`Pro?y^f zIRy8xBh(dDo^5aP-Ux|*3%azpIGIqjwe3xdex2(=W~xiX^o6>B;MTS#w#Q~}C>&nP z@=F{|;PHro8w6dLQj9qRil*ZT2{*UASVE4LPA5gnRh8h5IF`cxhylmA1FI=s{ z`EHOuW0(_6=X;8TG}{p6fl#q0Vqi<7i~%QN{BBF9)d@x&$;xxa*jj`Gz~t=jV^v$* zwxROJfH!lG>5S3;I(Pyg{5f{$BF`zn`8O!5b2WB5@MaKcX1^OsbA6I$%uVP(@zdnxZ~Y gbrv`6KcoNg59!B;$}Z>WMF0Q*07*qoM6N<$f}oovdH?_b diff --git a/editor/icons/2x/icon_visibility_notifier.png b/editor/icons/2x/icon_visibility_notifier.png deleted file mode 100644 index aa73402d8e7fe14099ed821876d3b6af2d517ca6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 832 zcmV-G1Hb% zu}uY*1pT82)~#+Ku#V65<+7Yj9$ zFjz$jeS%-PT$2D7qeaG;j#N6mp!we_Gy;~^-2keCIRQpflasx{9P{}`pX>&?ZzjRP zvQp=()9JVK3?gfPRCAkAA(z{%l^TOcXoE7wblC0fH$&#ei~y*M^qSI2waD?~;|m!^ zHAiP@osOCV04?iTF!ssr7;^wv>-+xoB<3Lil1JkTY%=^tv%?;*{Ye25?FEZUgwa&R z=K)dbeq7I@NMk5L4laQ3v=Yu(0N?lT#T7`oyf+w^l{yb#YF;7vRg;~64PdvozXmWA zEzlxq4h-noxH_GFtCea2`2gg1klz6eXrNVG_ft}U(5x?dUaKNsK|}}hhCF4v?yaQF zD^X}d*p4$IBDZ6TZj?N)ZN&iqKuu3~0(copir7LvE_&X{;OB^nnM~p%UhJ`)`TTlg z%n*T1F%OLSK%T%eyHNN5kyNRws!5F5qkt3Ib(@zA008v7Iv;olU{{icF?ynbW8yg9 z5&-}+ry^5RbA`ZJ0I5W_WRc`m%XP0w%mP&rz^n?ry<4p 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 5f3b7ecf42d25710fffe997c7fe28753ba3938cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 844 zcmV-S1GD^zP)jBZ4ko-q@NAR#UyiV~0{i@`t$_yFJ2Reg^O z9j&e|db%8EWq#toSHmbCmx|Vp$7Zqt#?$`*{`e(NRXKiV zrppEEjmipOfx@egm;M#FWk%RKVE|Q?%3yQ=NScqT=%;`EX1^_$#l`Y>ft$eja#{CI7@$&(b|7p>nj2Wt zQ3!r%)hq$lmKyef?*|^tMd(QuIkdZ@Xj_^;s~YZr6|Wb_$8(Ba{`;K$E}lCwbZ@qE zwijX5!vZ`!jAW* zTy15T)RRZxeDhJWIjHJzJa*3ZrkDdvbLxMU#k>K)Af0IiqhZkakH&6$np9S21;}(3 zw4tV5y6t&D(f+iKIa`~ZusGeq|5RI;X#k%12h$2fWMw>d)O&ce@gxhct47z2R zS26fHYx8#0uoIS6%LPHcX{MAtm7#F?qyqq4Q*XP%uZeV^j+2K5YahoSM^fdoW*+fU z$MU{`+cWYee@2xzn-*37Q0Ozp{^aKv3GZUD%%L7F!?3kfu+7(G1pw$D)aju{$ABeS z8a4w{wZ`APu^=}x0l?T)6n&1;4cLsO990xOw?63}!XO4Dg40u#@>v`Tsz03iCh!WRzKLD^7Ku2lsX*QcD3N!hl*=&xb zX}ScUtnBO+&+|U+WvoLG1cwd7cweC<5luOc^Q$(15aJtVep(q?avWzWzw>&%Ua>6e zT>!f?>Oz{P$9&(vnhR|TAua>hmS2pB797Xv&i!))K@dzZ^FDPa%>1dw{4#DG({T3L zZy3gL@W zg#fs9%N4M;w$@Up-8x-{J^3PzW6?u*`|GW}2Q~m6bl`RXBKkrn7#bR?DAa|X?#$=& zwPjgO59#SbfH;l|FAM;rX}U|Pj{*2wBmL91?bnn5+T%*o^z%Z1v9YlwB3e|%hGD$K z%x1UtegA44$CCiQ1h4{Ng_+M-mi5TU$jI+qT{d%2Tly0F~t#+Sn+lv4m)U#}>007WxwYDTlau&ejy)=E|l9Y0P zwOYNdYxcZ|DwWD#Qp%@@=p+F7AB-gtos?2O*~=X0^G~S|VjF=fR*qXJj0r-iTzco$stI^TXKL%O%F79mH1mO2#z-Nw_ QasU7T07*qoM6N<$f`-G~d;kCd diff --git a/editor/icons/2x/icon_visual_script.png b/editor/icons/2x/icon_visual_script.png deleted file mode 100644 index eefd214811bd3320902e4b3e88e6db40837860d0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 728 zcmV;}0w?{6P)Hd-$$+E75GB^U2dWP>&vn`D#i;9prYXssL8Nt~}*Y*qkQj;R1z z>k9zBXszEwQFJ`-Bch37L^K8!$8l3@y$hhNwO)7CvGzbV;W2DK*x-6I+l4 zymlm?R@@mwMDL2ltpETZgt&&`vR9=(5pCKWRsbnwz!Wg>bqOA@6N z1LpV_BuVnht;2^nKe~OR0g8{9I)F<;h!1fbH!A@Mf}r@L`7s&@A#P&$)kW2fF-P>T5B?<{QG5*9@y{odc_rS$@R#c8(?1u zak15E^=F9f3L$P)0q_&RdjOlgUhkxo^4qk+0G@KrSEQ7IE9f_QS>&bDRUtP)2v1yvm z6rc&7?L~L%y?-Bu;Xyly$sO%t4R zt3yTP6~KMhbsxKizsd7FYD+{nMD)hY2Q?4?j4>$75=Bw0)fIr}Bw$Kbcl|QndpPGX z&+}S60_fGi)I*5^cdWieR diff --git a/editor/icons/2x/icon_vslider_bg.png b/editor/icons/2x/icon_vslider_bg.png deleted file mode 100644 index a7e0e7856480f3c688e70e9dee19de433eb856a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1StJzX3_ zEPCHwUdY$%Ai{c)dC9>A2EH%;|Cf?D(2#v8DNIoACQI{!U31MPx5va39DHq@l2qi+s@leE$cgHpzUJ1?Dtaj(;y&0PTAWr6^EX5)}WK%E(!~lT-xF=30 zF&8(6p9_H5&qbMgtfR6H097H7=vC%an#VUkw|HaMU(p**zN_nL`Y|{t%+U9K7OJ%VZtL<0r#o0q`FDzqR+O0IXyc3*pyjbO}p~jt+>ou}hYmJjn(ueRO zYoxE^%v7&w=q2-S?w{Pxf!BvyZuixq;ha+U^l$t!W4%V`2#v-bMGXOaOJ>t&%qFYV zHj0z^DE&ITagL!ksiG+V4rUB8&ad~tI*H@4Ni!^%F$`@?QIzgr;Nm+?A5ESerlHL! ziqbtp0}-(?)^0)@Q524p2l+bXJG-)ikaEo#bBxur7 z1ry*N*v6j9Irpu$LU#;a&MZwgud;O4Itat<807*qoM6N<$f@!gyCjbBd diff --git a/editor/icons/2x/icon_warning.png b/editor/icons/2x/icon_warning.png deleted file mode 100644 index e953c02ce364048d5b42846021dbe96fcf1b87fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 350 zcmV-k0iphhP)ll1*9?f_3)=wrUCSCB1`I6uM`4U9WBUnfBb`KdPK wq#dV&6tK6zAzl-#PX0R^BhaC^?j&FT3&jLfuvL=G!vFvP07*qoM6N<$f<91=!2kdN diff --git a/editor/icons/2x/icon_window_dialog.png b/editor/icons/2x/icon_window_dialog.png deleted file mode 100644 index 995381ed5f9d84bee67d9e528501e3b584698264..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 311 zcmV-70m%M|P)W diff --git a/editor/icons/2x/icon_world.png b/editor/icons/2x/icon_world.png deleted file mode 100644 index 51b587c01ec051a8ae05edf92a27c7c7b57e9a74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 502 zcmVKlIjHL180(cO{dd-jXwXl?mPu~p06cI(v!3e zJO?&rOJ~40NrSR12kmzIcXR;n{VQM}c(S0z58#b+?o$*1GkZ85kN1Grfwd0PG~Jan z4N1Co3YIhn*zw-K3r)Jzfmz!>EMY#Enf0W?}9 z1WA(gBA5eY&1Q4EYVaIDQa6G*0A>~rU}jsf0Dw*~fTYI}0oH>7BCGN&xCn3_5ukFd zivTAP0fxZ7U;T-^&U8#pF znD2#{UjqP0({vX&Si*eYIrla+@74#&Xf*0dIsl$7sBvm$JE1#Y2mmk~4j;8zt?q2L sZ*loab|Ps|6vc6;)A_TE`Mm)C0x2SaGmE#d(f|Me07*qoM6N<$f?1N#E&u=k diff --git a/editor/icons/2x/icon_world_2d.png b/editor/icons/2x/icon_world_2d.png deleted file mode 100644 index e9cfa10461c816bf96be935a19af1cbc68341947..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 584 zcmV-O0=NB%P)cAIZ%XU@LtHxR_6bh@7e*O!A3>e$Po$tUCU@3%fKS`3Ol71b8fcwn&C~495 zgAl?}sZ^@{Z-I8+N_u4bxukX5>yo|#pX>GdR=HgMu_pmZSAbDq)b=EB4!8gu->)Dr z7sv5EfT2!bMNzcUer7wLW!Y2+;i~N!Nz=gT9tFlE%>%`*0z1)oY?a2k15m5gO2Dk` zX<()q+zs1>Kbg%_UqfoAcHb&+3%J{-L@VEbXOh-{mu#2to$ckW0!=EF z%8`+gk>L=+3E*Tdmz%IXF6q4O%LgFXU0^phHa3d6T<$t>Q_?KG&xHFEXvKCuP1B2# zZUEPSOTf|H?n%m`C@St-UYRy1Z$4nTSMU z=A1JxK@n<33Ei;U)RP6rea?9ZUzBM=k)Wa=uQk~HMY})97-*4M-Ay=U(| zM>|G6)q=xWm+$}n?_alnZQ#FN*e*~K!)kS@N3IgkL#a!^RT0Tak*5e8w9>wgQt6X_ zOn@ZXAXraho)K_eo1|Y0*yi>350TX07BE(+%rAJ}E&#W*VcW{lM@?fkOz-Ra{-Onh zmC7CTydeOWw`C^*t)o3Bsn;)+K4|5~v~*spt)%C@KgGG!5HNy?Xa%4V{RC11Mj$nE zbe9r%I}CyqZ3!5wROZvUJplaN&`{I4MMjzxcaYppa(hB1&1#Z202t0#k{u-X{1F7# zTu^`{7Cdhk$jeflR?_A|vDjNMW{Jp!(a1RiylQ-Z5Ykxy5V^46+~Pv9xK6+p04_y8 z#|L&v$}C?-fUQ=0k=t+rw)&;gD^Vm5CqV(PvA_RUZru1A$=4?t%_9Kd7mI_E9?#80 zw+(_dEd@v-$)|HOG!#2mr7{OVchnymV|GmXG&=xMlC&VzIFuKV?#p0X zaRG_1L;!&+)1aoc$I@*AU2)wyH=6fv$x|t8XNJr3@?2NM^+HNjXQY-O;TH0{5@Pp#AmPVAj&GiLmh7ci}()1PnmR zk54+vJIrB7CQF!Jf>BHe5CBjb1OSmsAuRJwJ`%eh&K*vP|J@jKJAmFu{2N}e_+UKV41(Pmea0M^ zBEVX^*LdEx6mHE}wYp$>vG{GIdM|+Wk=RQLO+}d831jv8wXk+|8f&fH z8`qO#=$Ff%Q96;r`33U%xZzp*E+&)9ZK~JjCNog4&jlG@)6R45y(B_w2SIiu(F4aj z%H_|e2;f9MPtO1#tqrTyO#r}wfinQ&>(+P9Jru*DdYrzGMp%S9cRmL4-VCL4Po&$K z?J9}3Ryz#f)>O9>u+=XX2b)2#4&vEE_oUy6nRHB2q4WTNGpTMv;H74@I@GlGi_|jBcEF=93^&EjDV=BnUp0eZn7|7; z{xe}1Zpc4UTOQaj2v%?+xny5OQo{jX8gf|-jsE?KsnRh+E^cKf=^npa{xI+B-+z=! zX9e7MQIApp@CODCg;IAa&u3_-N^1EcJ{&fiH=oZr(Ef+X8j{bY-h&q`1ddC3vQR1w zw}EZHG^*7lp0rv(56Lb`^FWHgNdcn-4p`^*rO)~Q<*&-0@J>9Xt5t5D00000NkvXX Hu0mjfI=@(a diff --git a/editor/icons/2x/icon_y_sort.png b/editor/icons/2x/icon_y_sort.png deleted file mode 100644 index a38cbbe8639709a1f344c0f6a1fc0010ac160e0b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}?o-U3d z5v^~hIr23b2)NdFp1Rm0<7mmwEv^%>R9Kq?)@{7Neg2Nluj`^xURaBfBpDPmRSYAm6Z#3+Q$EH;NN|gi(!#s0mB0GRK;T# zg89&y-?lxFUH3AU%okTN03qQ!?v4uyl<3ui`j$N%*pYmj`};WxE%P_ z`1$KZ&82Ljyh>V^RP<)uKlY8inkiFgy2}x>`|%$%GkY5*f8c%3u|vh_0HeEl&N~+k l3+dRIG2v~wrzUBxWNgu>b5C;qz7FV122WQ%mvv4FO#q?=bPE6g diff --git a/editor/icons/2x/icon_zoom.png b/editor/icons/2x/icon_zoom.png deleted file mode 100644 index 0de25b4db710a95c787faf4559cbfd4eea89b88b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 718 zcmV;<0x|uGP)PlB-`5u!7m7!i~m7{#6ZyC!GrPW zK|w*!ex5x<&>YnDV8EFC2_q2^vLZ&eXAX*xuy~LiqHdK3XP3@wb~8QMob)|SS5;R% z-PJuaz`ri)=d9Ig#Zsv>MntCo90RaFp7RaBD`sA3G#W2PM@N4p=LSK*_E;(9IROMg za2miJ0D7B6gv@+NYrT*KAfGgdNG=S++W;$-5O4eQM9c;e z%`o#b-}hGlAc~?Rp65-8$OWa8AJ1htsNIrI3u?7m5r2Db>kBiV)LOqw*p~n-1wk@0Ay9ydmxKeS6BBI3We`L@0IqF9sJdH_`ZKAZIXOGpE|Z{uJ!x|z=8H4m&;87 zc%3GR=XqyEWRorJPIQ8p`K9d;k!fSh$aV>gF(V=}ou*h{fGCRQ0erT6dx&VUAA~Vx zgoqXa6x+5i3_mU}FBj4RBwxkj0Ok@gKZ)o8Ggq6<<_Z7|4GkS7qBHTzi;4J~N~s%} z001Bi!@DAKC2fK&)MDoITI(lig1ZjN@bK_8BD%K&fE*D$GR9110w5wTm&;d0WSodT zrN~hSa7#pfTRHLo9;bomc~vTv%KX~e+F@p%1n?BV2LL|+G-I$TfQj|>^@B>O>j2JW zf#~~B=&E|XK0!p)xOiKA&%{6hvOo+Rz!hRw09+uPzFaQSTF)VIFahK|&pTnq?b;5s zmDq`g<#PEV5jp+9?pVf{$sh>si^#4o_`jU>2cBaQZj$>v*8l(j07*qoM6N<$f{Y76 AP5=M^ diff --git a/editor/icons/2x/icon_zoom_less.png b/editor/icons/2x/icon_zoom_less.png deleted file mode 100644 index d483db55cece2c1ef89e74ba07fa84424b0c6192..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}~CPZ!6K zh}O5~3`H9Zcw8@vH%;PlVA7hfQ)hNB%1h(Fz__jJ!StnaCl2MMdb_x!6f&ou;?ay@YE%MR!QkoY=d#Wz Gp$PybmNqH? diff --git a/editor/icons/2x/icon_zoom_more.png b/editor/icons/2x/icon_zoom_more.png deleted file mode 100644 index 8f9ef7784957a0f8e1d3e8da6fc91e703e7cf747..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 290 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v~0oo-U3d z5v^~h8}c18;BoyMylJE2m6buASC|W@$Tf8Kel{qc7;^Fg=f+Kcs!RuYU*KXBistVo>s$MD6VCl`k;s8R& z3_ji4&fpi^d*;tXWd=FU_w!!wx+mK~z|U?N&XA6G0UI-mH;BJ?}6a7*w*mM1yD}f?#{iq0OPCg~Gvc zSSU7D+8%0Qt%!w65G#KwYi+Df5ClP!%-a}*LlLw|VA*{(ySZ_*%Wc+ho<9#3-pu>H z?|sbhmI40tpsYf(*}PmTmG%Na5Cki(>psXUDk8+pH9IuwwL3&=XtYOo20K< z1~QLky$})egx(j`N&OM!iE6d_h?(~hQMuRaEw9fQvjHLs09-H1kE8Gvj4S>d__GaY zt>>9}K|~7c6rKWRJ^|oKl+OUTQADS(bEVYrw0y%1gkkt9Egv-sUx97g&$ZU4h^TDa z_Pq@^0055TJo^?A&`8EiIG3GZTqxY^gQpDh%9CBO)f;_isLxf zfK6}(zuka21@8ddHr5BQ_B{U#VDRb@kvB=9FbrQ3kr#W4nT00000NkvXXu0mjfF=sTt diff --git a/editor/icons/SCsub b/editor/icons/SCsub index 182624a80d..564188f315 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 0000000000..2f2bfbff8a --- /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 0000000000..be55e1d90f --- /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 0000000000..5ae9a8c57c --- /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 0000000000..9115b5d83f --- /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 0000000000..e298d06c4c --- /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 0000000000..73f3f483d8 --- /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 0000000000..44236ebab9 --- /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 0000000000..2942998a8d --- /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 0000000000..1d67816b3a --- /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 0000000000..b052cfb50e --- /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 0000000000..91e6722c33 --- /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 0000000000..5b5fd23a78 --- /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 0000000000..f3deacc992 --- /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 0000000000..302368b19a --- /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 0000000000..bf1bc19523 --- /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 0000000000..e165cf3cfb --- /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 0000000000..729289e756 --- /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 0000000000..63332d7da9 --- /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 0000000000..5ba266ce06 --- /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 0000000000..94d2044284 --- /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 0000000000..7075713425 --- /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 0000000000..bf479e62d7 --- /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 0000000000..b81391c88d --- /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 0000000000..fc071c84ca --- /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 0000000000..ffd84f5774 --- /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 0000000000..cbf3bd3dc0 --- /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 0000000000..99d01420b6 --- /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 0000000000..8294c44611 --- /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 0000000000..002108a24a --- /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 0000000000..ad33c8e97f --- /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 0000000000..762c95df8f --- /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 0000000000..1c00b027d8 --- /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 0000000000..a90181fa45 --- /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 0000000000..40dad30a7e --- /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 0000000000..39b7a44d02 --- /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 0000000000..4de8694a9b --- /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 0000000000..c475b16127 --- /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 0000000000..ebea4e4008 --- /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 0000000000..f8d5cddef4 --- /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 0000000000..12d9360c51 --- /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 0000000000..ca3b4a0267 --- /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 0000000000..08e77d2c65 --- /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 0000000000..b9ef0db316 --- /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 0000000000..1d2de12446 --- /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 0000000000..d683928e27 --- /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 0000000000..c6fa4b21ee --- /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 0000000000..3f8f0888cc --- /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 0000000000..c4a3f16c04 --- /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 0000000000..3a37ae26fd --- /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 0000000000..69704c1bbc --- /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 0000000000..76fb1d8308 --- /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 0000000000..09b137d901 --- /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 0000000000..aa2da200da --- /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 0000000000..7d99e5405e --- /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 0000000000..1842a2784c --- /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 0000000000..b28962f321 --- /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 0000000000..601c1446df --- /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 0000000000..ec1cbc66ae --- /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 0000000000..d6c6bbf903 --- /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 0000000000..d6c6bbf903 --- /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 0000000000..a2db34b648 --- /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 0000000000..beed73c550 --- /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 0000000000..8d38bf7699 --- /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 0000000000..9e9b7259ed --- /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 0000000000..43deb5fc4a --- /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 0000000000..7209cf603b --- /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 0000000000..850826ea5e --- /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 0000000000..56fcba5833 --- /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 0000000000..b11edb16ca --- /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 0000000000..83163a2c28 --- /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 0000000000..15d8274461 --- /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 0000000000..99884d33fc --- /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 0000000000..1187841d71 --- /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 0000000000..078f47b396 --- /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 0000000000..ceb9d3ada8 --- /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 0000000000..ee80e38cf2 --- /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 0000000000..978f5b8964 --- /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 0000000000..a8c9910867 --- /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 0000000000..821d882471 --- /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 0000000000..f1dbc569f4 --- /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 0000000000..015765c775 --- /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 0000000000..6a12976100 --- /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 0000000000..997992ef85 --- /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 0000000000..512a307b9c --- /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 0000000000..2940816d60 --- /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 0000000000..3549a289e0 --- /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 0000000000..6c847f1db9 --- /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 0000000000..0b7bbdb8a6 --- /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 0000000000..c49beca262 --- /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 0000000000..bfe5aec81a --- /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 0000000000..84c80faded --- /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 0000000000..351bdc5547 --- /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 0000000000..7c9be68c44 --- /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 0000000000..a1e6d9fbef --- /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 0000000000..7b46cf030e --- /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 0000000000..340b182cf5 --- /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 0000000000..5e672ab1a8 --- /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 0000000000..4a6b354849 --- /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 0000000000..e2a9f30853 --- /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 0000000000..775678e644 --- /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 0000000000..3b0643ef4c --- /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 0000000000..d05355d8c7 --- /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 0000000000..ca913c123e --- /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 0000000000..0df696f8b7 --- /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 0000000000..3264e69ffc --- /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 0000000000..1ec0abb830 --- /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 0000000000..0520d3101f --- /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 0000000000..1c96a195f0 --- /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 0000000000..2ae14d9bdd --- /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 0000000000..07382b3bf7 --- /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 0000000000..94518d5d75 --- /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 0000000000..9d1219078e --- /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 0000000000..fc8e7adb3e --- /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 0000000000..9a9bc0f2ec --- /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 0000000000..111ea52be7 --- /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 0000000000..5dd012c389 --- /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 0000000000..38542419cf --- /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 0000000000..371436a6ad --- /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 0000000000..dbf11be914 --- /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 0000000000..7020a8a406 --- /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 0000000000..2ce0ebdf30 --- /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 0000000000..0c1713cfe8 --- /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 0000000000..4b13ab28b9 --- /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 0000000000..cd06aaad82 --- /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 0000000000..3bbbb89eca --- /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 0000000000..d704d5cc81 --- /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 0000000000..683504128c --- /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 0000000000..c96ba7ca11 --- /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 0000000000..892bfcc50d --- /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 0000000000..143780da53 --- /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 0000000000..5bd177d1c6 --- /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 0000000000..6716a34f02 --- /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 0000000000..5b09b402b0 --- /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 0000000000..39c1debecd --- /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 0000000000..cf5589e942 --- /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 0000000000..9cc935c38f --- /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 0000000000..9697918d32 --- /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 0000000000..9aa63ff537 --- /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 0000000000..42817f31b0 --- /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 0000000000..08436b14e8 --- /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 0000000000..8b2f7edb51 --- /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 0000000000..fdbf9409e5 --- /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 0000000000..c666b5f6d1 --- /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 0000000000..f24840f054 --- /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 0000000000..a79664642e --- /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 0000000000..c1b4db7787 --- /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 0000000000..21770628a9 --- /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 0000000000..69cbef8bce --- /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 0000000000..833deed675 --- /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 0000000000..3648f5c73b --- /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 0000000000..01b6571884 --- /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 0000000000..b3a8e89ef9 --- /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 0000000000..3819c10c18 --- /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 0000000000..94c14d80dd --- /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 0000000000..2c1a7d2496 --- /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 0000000000..ca708b5f35 --- /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 0000000000..bba1f032ca --- /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 0000000000..b8c45153ca --- /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 0000000000..e6021b9a80 --- /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 0000000000..89d9c663cb --- /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 0000000000..aecdbb63ba --- /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 0000000000..8de94755b1 --- /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 0000000000..a595465534 --- /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 0000000000..2ec6f20fd2 --- /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 0000000000..9bb1e24b30 --- /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 0000000000..a7fb18c9cc --- /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 0000000000..9655726f11 --- /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 0000000000..5d03cdfa29 --- /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 0000000000..ad4e626ace --- /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 0000000000..bac968e3a2 --- /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 0000000000..996b1bf7d6 --- /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 0000000000..189baf3dad --- /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 0000000000..eeee2c182f --- /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 0000000000..7e58aaa803 --- /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 0000000000..d59d2d804d --- /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 0000000000..7c91902998 --- /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 0000000000..833346bd28 --- /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 0000000000..ae74328509 --- /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 0000000000..ae384978a5 --- /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 0000000000..2d13800c91 --- /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 0000000000..3343ca69ec --- /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 0000000000..52c224f6a5 --- /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 0000000000..542894b906 --- /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 0000000000..12678c2873 --- /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 0000000000..02bc363c19 --- /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 0000000000..ccb9b97336 --- /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 0000000000..bd1d4d2fc3 --- /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 0000000000..47cf9189d6 --- /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 0000000000..4e634280bf --- /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 0000000000..a127f00ae1 --- /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 0000000000..440907e33b --- /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 0000000000..f89b408383 --- /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 0000000000..a02f36d314 --- /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 0000000000..24a18eceb0 --- /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 0000000000..07718e87b2 --- /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 0000000000..d88cc782ad --- /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 0000000000..a7c8253448 --- /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 0000000000..e5671afa84 --- /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 0000000000..a8739a5a78 --- /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 0000000000..c411d13dc7 --- /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 0000000000..adb6aebaec --- /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 0000000000..d40fe230ac --- /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 0000000000..2cf3966364 --- /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 0000000000..32a1eeb6ec --- /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 0000000000..0fac616d58 --- /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 0000000000..d98f4c01a0 --- /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 0000000000..f3faab0c54 --- /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 0000000000..a7ef1499b5 --- /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 0000000000..a5a3184926 --- /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 0000000000..0a1a0e9673 --- /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 0000000000..0abd546971 --- /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 0000000000..c5034ecd2c --- /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 0000000000..bdeeefb8e4 --- /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 0000000000..c7f2402382 --- /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 0000000000..8ec7782b47 --- /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 0000000000..fb740429e5 --- /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 0000000000..ba921a961c --- /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 0000000000..edfbe36066 --- /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 0000000000..34f7d9b2b1 --- /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 0000000000..d2ee2ec827 --- /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 0000000000..bd3bc0424a --- /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 0000000000..6c26332203 --- /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 0000000000..9e72743432 --- /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 0000000000..6227b53c62 --- /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 0000000000..0b24b47895 --- /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 0000000000..a3df7ff93d --- /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 0000000000..cd2a39312a --- /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 0000000000..2792d63378 --- /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 0000000000..effcb596a1 --- /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 0000000000..2ecacb8434 --- /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 0000000000..8bd533fbf0 --- /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 0000000000..81772fa4f5 --- /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 0000000000..66f31bf5dd --- /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 0000000000..0554285612 --- /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 0000000000..0e2da7f7c0 --- /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 0000000000..350d9e98d7 --- /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 0000000000..6fb5953b95 --- /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 0000000000..9fd8eca5b0 --- /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 0000000000..29bff80cd5 --- /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 0000000000..39d0ea4646 --- /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 0000000000..5f59622855 --- /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 0000000000..b4c7be4678 --- /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 0000000000..c16949a03a --- /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 0000000000..a84cdf9994 --- /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 0000000000..a84c735300 --- /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 0000000000..3c29f58bf5 --- /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 0000000000..cb94b0e4d3 --- /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 0000000000..822c59653e --- /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 0000000000..b42fb42236 --- /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 0000000000..99888a9c02 --- /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 0000000000..69da81e86f --- /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 0000000000..8b6f12a5aa --- /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 0000000000..8c34f93206 --- /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 0000000000..7ca7c5567f --- /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 0000000000..115d88bae8 --- /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 0000000000..f0c0fd8812 --- /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 0000000000..3c294f92b6 --- /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 0000000000..2fea4e2b7d --- /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 0000000000..e726d8863e --- /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 0000000000..b7eddfe22b --- /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 0000000000..03c0f199d4 --- /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 0000000000..0b5e1c15bb --- /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 0000000000..6a01dd6138 --- /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 0000000000..8805df28b9 --- /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 0000000000..60b0f8ea36 --- /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 0000000000..758572899a --- /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 0000000000..f7179e1e90 --- /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 0000000000..46446b617f --- /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 0000000000..50444dab54 --- /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 0000000000..bcd952f635 --- /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 0000000000..35726ce1e9 --- /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 0000000000..adc3d8212b --- /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 0000000000..46b8b86467 --- /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 0000000000..699266a7c0 --- /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 0000000000..a537d02cb4 --- /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 0000000000..4627633dde --- /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 0000000000..0ff88aa9ee --- /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 0000000000..724d98a6f0 --- /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 0000000000..d5de68a6bf --- /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 0000000000..e1d9171dbe --- /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 0000000000..fd7ca29b77 --- /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 0000000000..a6d739c31b --- /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 0000000000..a6fb20d1ef --- /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 0000000000..c38951eae0 --- /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 0000000000..0ff88aa9ee --- /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 0000000000..f3ff31f8f9 --- /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 0000000000..9d16649c67 --- /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 0000000000..7309f498dd --- /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 0000000000..6161195b33 --- /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 0000000000..c8d0d6d4b9 --- /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 0000000000..a2c85ab7d0 --- /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 0000000000..c32e0318fa --- /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 0000000000..0142250c0a --- /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 0000000000..0bb85cbc23 --- /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 0000000000..814b2325f4 --- /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 0000000000..71099c655b --- /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 0000000000..319d6bdea7 --- /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 0000000000..0daf666e27 --- /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 0000000000..f6c036bb2e --- /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 0000000000..c8d7e1e5c5 --- /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 0000000000..c0fe4dd763 --- /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 0000000000..5450428686 --- /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 0000000000..6cee92ad23 --- /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 0000000000..ea400fbec0 --- /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 0000000000..988ce491f6 --- /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 0000000000..dfda7d39ba --- /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 0000000000..531d704dac --- /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 0000000000..1b856b5153 --- /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 0000000000..71fddc2e95 --- /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 0000000000..90ee4fa933 --- /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 0000000000..45c013103b --- /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 0000000000..8028b1e798 --- /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 0000000000..63a2094e67 --- /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 0000000000..745f943a17 --- /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 0000000000..283cad0011 --- /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 0000000000..a1bf99f984 --- /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 0000000000..57e38534ab --- /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 0000000000..5e10864279 --- /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 0000000000..752e45f761 --- /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 0000000000..455d34b0cb --- /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 0000000000..7233e5099e --- /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 0000000000..4c74ec127a --- /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 0000000000..d9c710ee1c --- /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 0000000000..08ab2e77f8 --- /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 0000000000..e0dc132d12 --- /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 0000000000..b8861c9f17 --- /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 0000000000..77526c4a3c --- /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 0000000000..12494655ce --- /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 0000000000..eb68709c4f --- /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 0000000000..2eb71fd85e --- /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 0000000000..7d08903461 --- /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 0000000000..a3f273078c --- /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 0000000000..c64db97127 --- /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 0000000000..625252bba2 --- /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 0000000000..05d09d9823 --- /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 0000000000..e0dc132d12 --- /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 0000000000..8cbbfa2808 --- /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 0000000000..d09f56e753 --- /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 0000000000..5d2ee937c0 --- /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 0000000000..7baaf44089 --- /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 0000000000..57a225a19b --- /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 0000000000..d9e9413185 --- /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 0000000000..3fe12d0819 --- /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 0000000000..7212058fe6 --- /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 0000000000..b64221bd70 --- /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 0000000000..43c4bb4a8f --- /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 0000000000..38921ea85a --- /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 0000000000..aeb23ed2bc --- /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 0000000000..7abc73c41f --- /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 0000000000..18af4c551d --- /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 0000000000..88b6f1f53c --- /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 0000000000..ffa2be67ec --- /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 0000000000..3e80728396 --- /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 0000000000..3070219228 --- /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 0000000000..f7490f337e --- /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 0000000000..437ae2146f --- /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 0000000000..23ffbdfe8d --- /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 0000000000..cf948b75a4 --- /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 0000000000..a22bf3b8cf --- /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 0000000000..0dda39baad --- /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 0000000000..50504f9924 --- /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 0000000000..563ec70f32 --- /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 0000000000..a9b577de86 --- /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 0000000000..3b88105c24 --- /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 0000000000..21f2d5e73c --- /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 0000000000..0f945f3402 --- /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 0000000000..84fa175033 --- /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 0000000000..295bef078f --- /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 0000000000..e3c5183d7b --- /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 0000000000..955fb00c62 --- /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 0000000000..0c8652f1f7 --- /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 0000000000..0e4a063196 --- /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 0000000000..c5e246e01a --- /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 0000000000..55bc880d18 --- /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 0000000000..981af7e3ba --- /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 0000000000..07090d3e1c --- /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 0000000000..e52f4b7513 --- /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 0000000000..dce4d0e3cd --- /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 0000000000..56d9191cce --- /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 0000000000..5e9114af48 --- /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 0000000000..34a1aabccd --- /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 0000000000..6f306165e5 --- /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 0000000000..08efa2b833 --- /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 0000000000..c86f6a129d --- /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 0000000000..14dd0a8bd8 --- /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 0000000000..bfad85ecb9 --- /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 0000000000..9ae6c02c96 --- /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 0000000000..9d5a02d2a3 --- /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 0000000000..dddf33f324 --- /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 0000000000..9885f5de09 --- /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 0000000000..28090e61d7 --- /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 0000000000..f3da955dbd --- /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 0000000000..fa2ebc1ce7 --- /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 0000000000..038eac75c2 --- /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 0000000000..48e1979f13 --- /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 0000000000..b5d0558eae --- /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 0000000000..6ac8c29d15 --- /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 0000000000..5aabbb0252 --- /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 0000000000..86c7fac35a --- /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 0000000000..06b6caa954 --- /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 0000000000..c5b8176b75 --- /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 0000000000..e296fad421 --- /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 0000000000..344cf12aa1 --- /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 0000000000..c9988452de --- /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 0000000000..1a2b5dedb2 --- /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 0000000000..0afd1c1541 --- /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 0000000000..c9988452de --- /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 0000000000..3e597419e2 --- /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 0000000000..d90b6dd31e --- /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 0000000000..27395b6a42 --- /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 0000000000..531d704dac --- /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 0000000000..2dd2d63fe7 --- /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 0000000000..bdb0138d6d --- /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 0000000000..4f0279b07c --- /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 0000000000..2b917aab27 --- /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 0000000000..8fb7563169 --- /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 0000000000..e1b5bc82aa --- /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 0000000000..d8e836b13b --- /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 0000000000..1aa7da9c64 --- /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 0000000000..5b6988d099 --- /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 0000000000..1f8f15f252 --- /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 0000000000..7955c624b3 --- /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 0000000000..58aa904305 --- /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 0000000000..35bcb9b389 --- /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 0000000000..89cbe40ffc --- /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 0000000000..c2a64904e9 --- /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 0000000000..b3bc927409 --- /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 0000000000..8b2d9e8b45 --- /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 0000000000..8f7c358ba1 --- /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 0000000000..78bd84d642 --- /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 0000000000..7283ad79cb --- /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 0000000000..2651292260 --- /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 0000000000..1b44ececc5 --- /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 0000000000..7560a605fb --- /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 0000000000..d98826dfba --- /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 0000000000..3da8ff43b8 --- /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 0000000000..32145798e3 --- /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 0000000000..6d8c149558 --- /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 0000000000..cf7ba9ac0d --- /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 0000000000..c5c9006d66 --- /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 0000000000..e19ab80f7d --- /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 0000000000..d81408b637 --- /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 0000000000..3a1e344d4b --- /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 0000000000..656c02d018 --- /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 0000000000..434d8cc62a --- /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 0000000000..4591b0a3f9 --- /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 0000000000..89533b8407 --- /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 0000000000..4e1e90eaf9 --- /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 0000000000..68f477f727 --- /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 0000000000..d5cf89f5dc --- /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 0000000000..0bc52b44c8 --- /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 0000000000..daafbff1ea --- /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 0000000000..4cd5fcb8ad --- /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 0000000000..5de3537136 --- /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 0000000000..5381ba07da --- /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 0000000000..cfeadc9bd2 --- /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 0000000000..443a21382b --- /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 0000000000..4d461e251e --- /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 0000000000..3c013a4e3b --- /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 0000000000..03094ad341 --- /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 0000000000..c7d0b1b542 --- /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 0000000000..531909d92f --- /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 0000000000..87fff0b0e4 --- /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 0000000000..5e88969b81 --- /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 0000000000..d5d32f35d0 --- /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 0000000000..505b10aebf --- /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 0000000000..0afebb7d1e --- /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 0000000000..e6d2d8806a --- /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 0000000000..0b1ac39651 --- /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 0000000000..513ef5388c --- /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 0000000000..5292330aef --- /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 0000000000..831cb8b614 --- /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 0000000000..04c70b6985 --- /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 0000000000..aa9d692d14 --- /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 0000000000..d619a3f94f --- /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 0000000000..45a37b576a --- /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 0000000000..3c4d3ce47d --- /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 0000000000..13ebcd817c --- /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 0000000000..beb1dd3d3f --- /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 0000000000..46fd13c5b3 --- /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 0000000000..204b53f9db --- /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 0000000000..c764bdc1a7 --- /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 0000000000..cfd23a5e51 --- /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 0000000000..c46855342e --- /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 0000000000..9e8a5038e3 --- /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 0000000000..7c3e75f7cd --- /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 0000000000..f9c6624284 --- /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 0000000000..b89620314b --- /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 0000000000..57b6fd360d --- /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 0000000000..e0925fdd7a --- /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 0000000000..60c5749bb8 --- /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 0000000000..317741595e --- /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 0000000000..f2995ae96a --- /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 0000000000..2d0376e280 --- /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 0000000000..9e333acce0 --- /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 0000000000..7c7f7dde76 --- /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 0000000000..9f6d4f9fe5 --- /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 0000000000..e4f85236b4 --- /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 0000000000..04944fd5c8 --- /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 0000000000..36a63281d2 --- /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 0000000000..b9592a6cd8 --- /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 0000000000..1a78b5b41a --- /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 0000000000..9bb7518995 --- /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 0000000000..c3791985cf --- /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 0000000000..f0270c7cc5 --- /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 0000000000..36fdd7f66b --- /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 0000000000..d47e1522c6 --- /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 0000000000..b8bfdefa90 --- /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 0000000000..e6d3ac88f2 --- /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 0000000000..7c449830b1 --- /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 0000000000..1de3da6cda --- /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 0000000000..17aae8239a --- /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 0000000000..540c237f28 --- /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 0000000000..4d5c017f14 --- /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 0000000000..9de80deff8 --- /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 0000000000..547af99872 --- /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 0000000000..9efb856c7d --- /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 0000000000..db3fdb8c84 --- /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 0000000000..de89f59ac9 --- /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 0000000000..c072e57b00 --- /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 0000000000..4c5f0e7dbc --- /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 0000000000..2711dae1a3 --- /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 0000000000..cd2a4c9e28 --- /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 0000000000..70da072dec --- /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 0000000000..b6b86bf781 --- /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 0000000000..91e4230cbe --- /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 0000000000..f710873b43 --- /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 0000000000..a7b9b13a4c --- /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 0000000000..0a5c875c40 --- /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 0000000000..439ef84961 --- /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 0000000000..131ed1b2d3 --- /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 0000000000..551c83137a --- /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 0000000000..27855a9e6d --- /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 0000000000..1d553c7a53 --- /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 0000000000..1d1fee54cc --- /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 0000000000..97932c95e0 --- /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 0000000000..1eb65383a5 --- /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 0000000000..15e76053e0 --- /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 0000000000..8cabe8a4a1 --- /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 0000000000..9c2e5cecc6 --- /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 0000000000..3ea3a124c6 --- /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 0000000000..c9d6b879a4 --- /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 0000000000..0ef58d34e5 --- /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 0000000000..4ad51b4fbe --- /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 0000000000..dded24a52d --- /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 0000000000..dda46edeaa --- /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 0000000000..ab92e7bb60 --- /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 0000000000..1afbe9229d --- /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 0000000000..40f28709bc --- /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 0000000000..1cfd25eea3 --- /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 0000000000..6e583ca62f --- /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 0000000000..3518756177 --- /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 0000000000..e2addce984 --- /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 0000000000..c4e2a2dbda --- /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 0000000000..0bc3449b07 --- /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 0000000000..23a66501f7 --- /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 0000000000..d4c56afd65 --- /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 0000000000..c84c2dbfca --- /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 0000000000..784cd15d1e --- /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 0000000000..96fcca46ab --- /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 0000000000..0f5d00dbc4 --- /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 0000000000..ae2163a386 --- /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 0000000000..e4035026d7 --- /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 0000000000..0dec9c7bd4 --- /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 0000000000..39d231df9a --- /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 0000000000..92e3529efc --- /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 0000000000..e728ed313c --- /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 0000000000..c80e78f178 --- /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 0000000000..914ecfed0d --- /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 0000000000..ac185d3c9e --- /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 0000000000..ea7190c4ca --- /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 0000000000..046b569c1a --- /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 0000000000..bb262bca9d --- /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 d8a77ee1c2379e9ba9ffcca506bc87f7090b8677..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@|JzX3_ zEPBsQ-pF;xLBQqyGrlA89&?patxk&Hn0f!I(bTyU&V5pd{>^^qP-I1;$wBKa1*=kT z%#1F3{=oZ0P>Vp;`@gIQ&a`dImA}d6X~Puz=zUt*8N-zfbBdo&l~~|?$328W=@ZK` zQG3;OJgcNaO{Zn7dKCWe+=1yPt6z!Un0+(TvhX5{;W62Q5BK^NTdInidb~?CxBks9 zzhKgvW6E^qbB*xCdF5BwHSQdobmLC_q*iez3;U@e?@~p9j%V<6^>bP0l+XkK0Xu1Z diff --git a/editor/icons/icon_2_d.svg b/editor/icons/icon_2_d.svg new file mode 100644 index 0000000000..b77c330bff --- /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 e1daf1077b5e5b2cae87bb6f214b412c7dac31fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmV-x0hIoUP)?F zA;!j-lc0nD;7<>XF%k;|n9XLd&bd<-t9}WQ9>m}`w);=E#t#EWZ>VPplZOBR002ov JPDHLkV1mwGnU??n diff --git a/editor/icons/icon_3_d.svg b/editor/icons/icon_3_d.svg new file mode 100644 index 0000000000..91d3abf60d --- /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 aa5e7f6bdb5747ed9a752d7b47298003ac130f49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 341 zcmV-b0jmCqP)$d{bqHa94g)}PR+n1q7i(<^0LGZgTDwlubO&I0 zZOR`4l8?^0gHoyjfNt#9G5A6tA`1X-&bd5ElCNt!j|#dATZza*M0OzrjQvdVv(JZz nRFFJ&<#Gy+Tly4IKOVQF5T5300000NkvXXu0mjf6LO7~ diff --git a/editor/icons/icon_GUI_checked.svg b/editor/icons/icon_GUI_checked.svg new file mode 100644 index 0000000000..7ba83d48d5 --- /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 d21cdb634e4c1adb7e760d0d71282a50c16a84b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v_cXPZ!4! zjfu$#3(S7}|G)n~5UBt8|NlP!Y#U*@y?i`8JUIcgRC<3)N=Vch85qbYoa$s|cVlMf dm#ArEW_a;ky;ws<{xi@Z22WQ%mvv4FO#o`{D%$`6 diff --git a/editor/icons/icon_GUI_dropdown.svg b/editor/icons/icon_GUI_dropdown.svg new file mode 100644 index 0000000000..22db0fa1a7 --- /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 1286b887f63852aedd2e99fca65579f6da3ef87d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^~o-U3d z7QM*{609Q3ZW?o)mi@EznX)V4N<*N7C + + + + diff --git a/editor/icons/icon_GUI_hsplitter.png b/editor/icons/icon_GUI_hsplitter.png deleted file mode 100644 index 3ac1dddf904862c1d06f2e24a2363c28fafd0ba7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^96;>A!3HGNSjA5L~c#`DCDorKgKy zh(~8~f&%NG|Nrkl|NsBL-H9Zfj4YK4riOw>r6C7bGzGFQ=5iD5(UJ&t@MnEd`kmWJ a%7B64gE@y_xswpcSO!m5KbLh*2~7Z0kSG8E diff --git a/editor/icons/icon_GUI_hsplitter.svg b/editor/icons/icon_GUI_hsplitter.svg new file mode 100644 index 0000000000..650e977921 --- /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 1dc793de1a842e559135d641eb2c875cc52fc667..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^Y(Ol)0U}ME`Obj^lDyqr82*Fcg1yTp14SG>T^vIs zrY5H(BqaR!|9`&@GjlU9GmA`ON=nTcmZvui3=9gKH}WzAfe#b&0hK + + + + + + diff --git a/editor/icons/icon_GUI_option_arrow.png b/editor/icons/icon_GUI_option_arrow.png deleted file mode 100644 index b7bc38e03f32ded10e918e44e0a69f6cde531403..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}}NPZ!4! zjfrO`7;+s75OBHgKh^ET@jDLEduJW*+_=HRWy1%xIHwD7=Rf3Z`@wk8Eco2M$hO8x zFWVK1Z`JHHeYHT2an* + + + + 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 83820c8e0c2ae67179b90d615c71c14903731b8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 427 zcmV;c0aX5pP)YS)vuPB&tM{z*8CS67=Pvl*ly+Eg + + + + diff --git a/editor/icons/icon_GUI_progress_bar.png b/editor/icons/icon_GUI_progress_bar.png deleted file mode 100644 index 7d70e6beb53596d4bca404296e9bbcef3c5cfd33..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Ro-U3d z7QM-Pil6uC7#nZqRaRCuXXb3^?0k9p{CxX + + + + diff --git a/editor/icons/icon_GUI_progress_fill.png b/editor/icons/icon_GUI_progress_fill.png deleted file mode 100644 index 4b7b4c554c6ba49a5bb250afe06a3caf726dd2df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@*o-U3d z7QM*{60AKhnE2)GzWn|Ff4@c8(ViatCr_VlSLilesC{Uuq?UT4URxr=%7iNnI&20; iM*9vdm6(6WgN;F7S%BZ`UDjWqSqz@8elF{r5}E)ML@k~G diff --git a/editor/icons/icon_GUI_progress_fill.svg b/editor/icons/icon_GUI_progress_fill.svg new file mode 100644 index 0000000000..9c68923254 --- /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 699d0966a90a01efa1e855ecbb8b6d406eaaae34..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 457 zcmV;)0XF`LP)Jb-DD z;3-^!k~fH`LS^y{xt0QCjO@n6;ntG(wENTSAqyWhQ;mMjeDm+j0-qi7ULYAwCX*wQ z2LLvMJQ9(+cDwyoM2Zgq!{P8t6h(cKJC)N!9*r^Q&1N$%HMKmsY$iEYN?jOZ_KY!m zBrio|OtNFG?PpmQtpI}U9g^eueBJ}_y(o$sYweAQd{avGL}Ws;lcwomm4gES&{|(5 zNpj-7KP9;aU=6^jbMC}@e;sP~R{-V0YPDJ>B0nlt@Uziq{15q772qvMR>^)go2^`J z8So4Mi^XCWz@P#!NRnhX6 + + + + + diff --git a/editor/icons/icon_GUI_radio_unchecked.png b/editor/icons/icon_GUI_radio_unchecked.png deleted file mode 100644 index e8ce1f8e6d7b06dc878ab8fb1169d21a582b1361..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 420 zcmV;V0bBlwP)@M)vklhAJZ?RZhl57JwP1`dO z8CNQmdl88b3QVWdW6$#jB&&PfMBbEA{Zgr9Y|q(twq%lX$8oNeQZ1!ai{y=n%t_Xw zC>r>_?^&K}i*)TO$$1!t-Fm&g+A@DO#=NfA>k-MC*17}WZg+z=0OWGH+Z{3hKx@59 zl4O|9USuNJ3v*r9-D$MY?cuakw*Y< z9H(cDIoc(syt{XiprVPq=Kv@o?*N{RF%Q=H|KJO7M5IsV{Ur+k O0000 + + + + diff --git a/editor/icons/icon_GUI_scroll_bg.png b/editor/icons/icon_GUI_scroll_bg.png deleted file mode 100644 index 1908fd8aee138ea714f91c699184d537ba30ce81..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 90 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v_c)PZ!4! jjfu$#60D0GtQZ)Wd>9!0ru6s%r5HS2{an^LB{Ts5N|Y4` diff --git a/editor/icons/icon_GUI_scroll_bg.svg b/editor/icons/icon_GUI_scroll_bg.svg new file mode 100644 index 0000000000..302368b19a --- /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 4be7f4e6ccce96d3b1c5271a909515aa6440a8b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v_bgPZ!4! zjfq#!Y~*cl5MVxNDU{KmwBUc#J}xc=>q-0!b0=`rtEz9i*5kjY`%KJ6<%>#>cDxTR s+?06i(oy!QA3Rk}=GeY{|Bxfbd=?j*#o1j+Kr + + + + 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 98e357f82a542eb7a1c089f4c809b44570025068..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}}*PZ!4! zjfrRbHwrcw@Gz_D-Q)>tFw${5D0kCGW|?BlB;(pEk>75M8O(_gPZLvln`XvrFv;>* z#iTu_d{!`eavt!it2XmwC=f}0rKfXFyw|+cx47ZAxWY`?1t0fZc*)DF|D~adL0?vV V*11iS-vTXU@O1TaS?83{1OV&ZJ9+>B 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 0000000000..e165cf3cfb --- /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 a46d242ddd080906c1a04943bcb1616f4c86af96..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kmSQK*5Dp-y;YjHK@;M7UB8!3Q zuY)k7lg8`{prB-lYeY$Kep*R+Vo@qXd3m{BW?pu2a$-TMUVc&f>~}U&Kt*YuE{-7@ z6VFcE$aO$Lz&W{af4tC~zf$&RS2jP;Pt~8(-R%B0VYkU`TOkjN<*RO7-1xLk_`~Om zQJ+GsW+ZqOnqp0CP!eRmDTKvn~(o}UnuMJ WOwswP_Kh5%jSQZyelF{r5}E+2a8bbk 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 0000000000..729289e756 --- /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 76edc3b81f572d0b0b17c515794b54872151005f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_!o-U3d z7QM*{609Q3ZaGc=|Nl=z7DunCoFUC((f0OPT#qPK=*4s|XXr-UU2AkK9su3$%#A M)78&qol`;+0Nr^w;{X5v diff --git a/editor/icons/icon_GUI_slider_grabber.svg b/editor/icons/icon_GUI_slider_grabber.svg new file mode 100644 index 0000000000..b1dcf980a5 --- /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 97a2f4b67a76c6173c70242f8e2c129232b97418..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 477 zcmV<30V4j1P) zg1&-aK!vXR02UF0>84N6Dg=@+n_^!;yQ!01U_LiDA&m)0J#ZM#;oRT(zIzA$GiEar5gCLTB0f(P;DvcnkcVOeXbKtM$tPM9(!d z>xK|Ik`hVJB)y5bEhz~hbfS_q@BQw)g-w96EZ@!5Pk@^-pU%y^kKfICz#V|`c>F!q zkCr%i9A~}(m|6YGCH_N{0N(rQ%V{2P4v?nlgIJ#~0h~s_eE>=4Gk~NXfOBpy4)=g# z;4PsA#00000NkvXXu0mjf42jw} 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 0000000000..73252751ce --- /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 ff65df801bf42d9272da9684d461b2d791d78126..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 345 zcmV-f0jB%d*@~r_* + + + + diff --git a/editor/icons/icon_GUI_tab_menu.png b/editor/icons/icon_GUI_tab_menu.png deleted file mode 100644 index ffc63f2d415f70f1a2af0a714a74a7fdc9272a96..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`co-U3d z7QM+S2N?hT|F3`gz<~tjr*erYDK$O5vch`I3uf(Hc!O=aQVp8`>j%k#md3`1+9LAH qt|;ANbc+#MywSnkK#H4(hv9FnwD6IIs)j%#89ZJ6T-G@yGywocEG~%v diff --git a/editor/icons/icon_GUI_tab_menu.svg b/editor/icons/icon_GUI_tab_menu.svg new file mode 100644 index 0000000000..3324adf98b --- /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 c4c599172de738676b3f352a219a94b04bccc76c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1143 zcmV--1c>{IP)u*6;}nTSgL7LvgpDtDyD?KpI{N9?>^dXWFo-Y+FD-_1n-i39Y8J%&i{jm7?M{3d{e8{*1G2FmcX{{ z5fPcj_DY8UeixB>t@WKKiq;1P2DZB4Us+ix<#M@x-}jFxrG`ahgro+rsg#I;$(k*_Sv z`XMb>8hD;}${2G-L?9v`r`-vu1Xx~P?$77*a{x*ra&Etq-$7G^j{t1;^z@vpR4Vt9 za;P+p^ZESy07^=!Uk@sI0H{{0a{#UY=naBkJPk+U9bnt`lOpmHfQaOq^?Lo^__*u3 zLn1O}jClqClv1~iF&AsK+KsrK<2bVbo_!!7kz1B!P3+ai^SlblIg+_Xqwz-45}9}h zD5YN9{-~?%$=kL)LGqk2<~abp0D7DMzjR%w=QwARCkk^zuU zI>8t-BqAW$a_P9PJ4Etr0HKJ?Xss^;fbaXGxm<3XH;1WC4<(X zq;nGsK=KFxluD)c8~14d@O}Ss`y8$H&p{AO?%2fPIL;!_daje&6pO`;AP7LRFKIq$ zs(=7M6h-W0m=Js6%i3r19UvkbB&$IX^a1cM1tRhk0FeAA z>D)ABaG~j}rQ}$awLtO$08R3Ap-{L~C=@O!r6x&gk{8-5Kvocu;pX>7C););79fhE zc>o5$OOE4|<74%DeMUsi0=NlatNFVrB4_LM`b=BUw?yR6hxyuz&C=4+(WU@V7>4sn z^GOBI^FDPPXVGz-&-TUPL*TmZ=Z@nn+P3{kn)#{T0$S@?0Gj|_bzS#l8jdVr+x8gA z69DcP3WeD;9H|5-m&+SUsp)2S=EH*!!M5!&5&1wwjEGF7c?km9Hbkx + + + + diff --git a/editor/icons/icon_GUI_toggle_on.png b/editor/icons/icon_GUI_toggle_on.png deleted file mode 100644 index 9dd6ce7bee7fcee1a66a1a7bf9c1a1792723f98e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1030 zcmV+h1o``kP)JNTvZguzvsRmXjU$!sTs+A4<-=Qf1nuBLU%1%5J3@i z(Mpqr2E~oog3(Pu5L&Q;t!NesMG?CxSXYAW=pwTdT|MUA+|Ud(vn!30m-p^*(dn2> z6XxCbCauuj#oB7 z9LGn9=wp=MXY7sOn%4U5Mx)_{VfYPzdcTvD zvcb&f0I;nt0AS`9Y<;W~AcUyqu(<*ND=RDW0Nwyl0Z=i15 z@O1!4lH}Rle2pL=^CyX(l z511=U)AVKAUO}OE0j>2JW6X&nzWW6cT@8ZZQ(M16RlxJSuK-y6KlhotolfWLB94U; zFflQ)4&W>bl$~KiM23hKr>Cc_D*#a99uS7%A4GJa+mv`Dbmu-F1cB{+;lCJVMQE*O zjWM497%LmglDk=!E!Jwa!ixun)D(^5_$eYf1>hAtgr+EfUpk%67e$Z#j(9`R)FXj4`G<%(gfY-2zZg)AYtL+u|cejCj2H7rv5g$OpHwivR!s07*qoM6N<$f>1Q- AW&i*H diff --git a/editor/icons/icon_GUI_toggle_on.svg b/editor/icons/icon_GUI_toggle_on.svg new file mode 100644 index 0000000000..fd2b915fc3 --- /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 4ef7b41de643b1b4cc3843a92a424add88379398..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}~KPZ!4! zjfq$L4Y?W|1en$5^)7udzvb}rt_Q1ia$C0EoceeVd&VjOqZILf`mKhWSzk29UV3?x z;miTmOx71%7L39Z&gOh5`lhp0Y>@#|`|*d{BWfGiTw?1Ouil;Vzb3-`0 + + + + 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 13a42f730d5df1374b6d6c29866b2fe8c70af359..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}}JPZ!4! zjfq1dDGXV3ze7@nMQv|-@N+fOTR*+$%$`{n5R4w6rI&k zQN}sBY59!>=g$1JcWRanvq*WiD7>RX{M?S@&bI-F6Y5&d%t^fOSM?x>EA*iCn%kbs k*Dd#Y*t>dO^zrlTuVQ5+c#lc=18ryUboFyt=akR{05d2`n*aa+ 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 0000000000..b3da27f1fa --- /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 8341cdc64333179cdedb2c307a44f2a41b17cb2e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_0JY5_^ zEPCGt?dCmXAW*A+oU7$p&=Q@4dTSibKFCG3$xhHwP2JS|HN&9GL#CTeDz3EreQ~(V zhin7U#}@NcOBwohvlUHyGPl^AVTIV8tto5_o~9@DzP76}G8i87zHIVcx0qw0>E^gg znrBy)2cDbrIE-=rBl!)20!|slk96OCWk1iq`s^C{w#0JnlbNNBD*i=!bA5`8jN>oW a^7C69H))h<$yEZnlfl!~&t;ucLK6T!XjE_j diff --git a/editor/icons/icon_GUI_unchecked.svg b/editor/icons/icon_GUI_unchecked.svg new file mode 100644 index 0000000000..4adf3dd61e --- /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 fa8c6cac1ff1ec0461792ffb5fb3460db7fa2952..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_No-U3d z7QM*{3j_=vP4sqreE#6Fj?N(Q9w~#Y11lIqm>8bPFv`?&8lMI#X7F_Nb6Mw<&;$U> CI3FPZ diff --git a/editor/icons/icon_GUI_vslider_bg.svg b/editor/icons/icon_GUI_vslider_bg.svg new file mode 100644 index 0000000000..99d01420b6 --- /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 0c29b1e35c94f5bc4022953f4cfa183504762d41..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt_lo-U3d p5>t~?5)vk)9AKXD!IMv(l|g9@gQo69u_ZtS44$rjF6*2Ung9zJ7_a~U diff --git a/editor/icons/icon_GUI_vsplit_bg.svg b/editor/icons/icon_GUI_vsplit_bg.svg new file mode 100644 index 0000000000..8294c44611 --- /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 56fb20bc3ff53a2058f230cd64fded7604f7c4ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^4nWMo!3HEflYZU@Qfx`y?k)`fL2$v|<&%LT`kpS1 zAs(G?&p9$OC@?T>JS@^?v~FQeqwW($Z-W)TW-;XGC$#CWm-Vb(A|5JQ%2>CIm1V-D R&SIce22WQ%mvv4FO#rW@Bu4-M diff --git a/editor/icons/icon_GUI_vsplitter.svg b/editor/icons/icon_GUI_vsplitter.svg new file mode 100644 index 0000000000..31b4019486 --- /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 7530127f82499d12f07f481ad0145424b6c60f84..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 338 zcmV-Y0j>UtP)M5YYR${0GO~}%i z7!TkTtZXcxWzodKgk-;ktHrX&5??i$%zv3o2L6cv?&8s*<*s3;U~Xc&ak5=~3;+`O zs%W@g4h2*sbpe93Un#osU=}$ocZ+8JL>cQ^)XSlQ)nmWB<~557dLO0f0dP}P@cvWC zTpyQ?PMd1Zg{Lb8f~Uz>% diff --git a/editor/icons/icon_accept_dialog.svg b/editor/icons/icon_accept_dialog.svg new file mode 100644 index 0000000000..331b88dd74 --- /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 fa675045bc49d147011258afeda3ab75f53a38fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^;o-U3d z7QM*{3sfsUJUIBDonP+H@#SruLEdh>2?+@)2@Ne~ma{}fL?krJ7~>3P@x4f4ILg3q YJWpuKPc^;UKob}|UHx3vIVCg!0Q%A=yZ`_I diff --git a/editor/icons/icon_add.svg b/editor/icons/icon_add.svg new file mode 100644 index 0000000000..685e6e82e8 --- /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 fa675045bc49d147011258afeda3ab75f53a38fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^;o-U3d z7QM*{3sfsUJUIBDonP+H@#SruLEdh>2?+@)2@Ne~ma{}fL?krJ7~>3P@x4f4ILg3q YJWpuKPc^;UKob}|UHx3vIVCg!0Q%A=yZ`_I diff --git a/editor/icons/icon_anchor.png b/editor/icons/icon_anchor.png deleted file mode 100644 index 7b02eb448e40ce4539f0cddc4d81865a74a09e2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 451 zcmV;!0X+VRP)?@F9TCPWP(qyD<+N)Afn({bDQa8sK4Va-iJVUc2UmaY^eBE=_I*fEYb) ztEt3uXQ|m%l;&+UW7OEdg36U8U>9?%m42MJeZs44wX;tPh?~GpUeeOQ0zf2+D$y + + + + diff --git a/editor/icons/icon_anim_export.png b/editor/icons/icon_anim_export.png deleted file mode 100644 index b17ecdeb22165d7287d23642425a3dff16bc3685..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 552 zcmV+@0@wYCP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipS; z0tOv7Kl^Y100F2;L_t(I%e9kDYZGA*$A7cCdA6I~ZbA}Td}&L3D`=~z1@#h?oP>p3 z^i&I`N_*0i9`qY{=vDFRhtP}kTiBj_!Cu536xxk7*=NT?f|Sx=E&7LtVIF3FGtcl0 z{AU#h=TNGhosM+wUf~Z2#Qk>XkDZ1nwg65aT2vR$7nVXZ|~hJH`qFYx};H+DLC)XhkL qN16g*w>OyBA7nhFo00yLb^Qe~%7_iR!|$p90000Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipS; z0tF>B5D+Z@00Fj1L_t(I%eB)%YZFlr!14ck$?mqo;2{asi;4(-0grwGQ4|poQN$iRT5VG$-M8Zw?`%je7T?oBMYaP=8DoGD5kbTNAfX|YfRT|gIbB>*PoI4r09p#bws4(3wVBx+#~6c% z>bhmev3URS3qQ8Pfp*XVej)8`q?a4Fqo{U3>z};qPY*|mwTw+?HUIzs07*qoM6N<$ Ef;xxoP5=M^ diff --git a/editor/icons/icon_anim_get.png b/editor/icons/icon_anim_get.png deleted file mode 100644 index 7edd883f0293724c365ce701214cd0796a55301c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|*pj^6T^QCe zv@r;W2kl7#if|TqL>4nJa0`PlBg3pY5H=O_S=lC%skSwSeKUrg{FAAIEF}E zPVL{wd&q&ub$;Ni(@dGc7nPr;d6YG<8Zq!*3AnIyw^(ZD8wOzmwx-2@M5a4W{E@dt z{q`qgMFy+*WohS1y4f~F9Wu<3Je=35Vdl&4z*_T2+L&44^P)|!-x%J-5 zJ^4Sn4?Zk9-twYmW%B-G0$$Z~4k_EN+8OoUgm>$*g<-Gf8f{;*GvsU+L;U}#R{5QL70(Y)*K0-AbW|YuPgg)MpkA%7FFvLKoN#MPZ!4!iOaeD zhFpgnL|pEBo!c^D?jC^>Js=+;|*1`CGX21bR?r)1wf-Fj~$kCFMoXxYCr>vw(? z7f`BLZDMscd9}$Fujb$nVNRzN`j_k8blVaoh8a>*QDT4^Rt{Y4CFLVS3j3^ HP6k}@P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipS; z0tGwHA1zJ*00F#7L_t(I%e9lgYg17a$3OSoXDP8prS)eWbcliuf;j2updc=~Iu!g9 z9PQv_7u}t@iG%4cv_V8Nh+-9#Qf!e9ie@q<@#VcFukXJ5?r~@XAsDC?zi{AiIN$F% zd^rdH5vrRE`Rq0p*$!!F7s{lx0sJm`IOny_9N$lpq=Tm^L2J#|?@d5POiJ4aFc!`h z4l(;=a$9R(y>^F{)c^o*t7hUjn_haiP82278Ueq8m@u-m+7NGOOgc;2ib#e?27t>#S1i8g%eT%HkOJtQ&6?Gp_2&4I{FOrC z1er_ml*ZFON-1m_^7zq$nqT~UJKm7zuxYs0Bar>5CY2!Q;QPJ+2nrDa2hLe(G(sAI zs{mP-r2G6?ds$w!7cZQ=G=B7;IOmks9?qrmbYWiId+=crc-Twu{$O&g*^G>}PALTE zAThBDBV&Ntz(eZ8%+l-o*GKkjDlC6|rEcDOHVfS7Z`1<>ItNDe<-?<$TqdH5GjHq5 zEA_j;`rn*+rCgeja%n<<%1-`d?EJZ7a{5$WfU%uETW%}Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipS; z0tPU0;HL!u00GKLL_t(I%e9j|Xj5SnhM)UmDX|u$6)id_G?d0ckWOOLNvep8fL$_A}D4n3fiJ*f;e;#!H85#O3(&GF)r35+?$&p@0Z*hhc-}xky`PE z1BZ|EKIh|b4*a9EX3}A@Rn?J=m^!wgsTySfvuW=1>81U9x8u6C_T4nWFbqC_wE^i; zHOeM{s>1>QPUaq7-O#s>p9qsmTL9>5Z>n1LV#zld9LFVBuoycVrRdZtmElb2HmcT% zs|*tH7nDjW2B=nW|Jdmv`SvB|EhHx-wJ<5c!-EnW4#;wPT0Sk`lT3QbJ2KKIK!4L@ ztOM99Kl1kOzV4%b|2{5Ux{HQ}rt3V7zvbBI0QYB}XpiF`uT+1^b66d?z7F7hUvaaR zRlzh(iQWnUAR^qEzDT1{mqMXP!D?gy?@u!dKbW~JBf)?yy}uzJmLd`y9+b(6Ljr_b zi}l|Ca<=WLXyiN^LZbnZo8uH6rGQ-9MQYJ(^40Z|UE5X(i|<})@~07*qoM6N<$f-rvk)&Kwi diff --git a/editor/icons/icon_anim_set.png b/editor/icons/icon_anim_set.png deleted file mode 100644 index c52334c72fce8761c9713221113661ae45a04df2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg)MpkBSjjSmF%YZ`jJzX3_BreDH zEAkz35ODpkV!E5}sOpAd)-ql76$-wpQjLce6q>3OG~SZ(yAbl7$3$gE=o0yh@0LC6 z|DB&!w@<)jO1L*e#w~@DPi*{n+t)p~AX<_oQLD(Yep>(QGAjkfo)i53CbMG;^ aUyPGhy3T9S=-L5vDubu1pUXO@geCw;`euXx diff --git a/editor/icons/icon_anim_set_hl.png b/editor/icons/icon_anim_set_hl.png deleted file mode 100644 index aefaf7f738b719f214f33c995e4fdb733f5b13b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg)MpkA%@rA9O_kcn@o-U3d5|@+z zoc}PNk?mP{_y6>SganVA+LIjOfB0KJuR8kg|NrV&|Nrk_{_p&1vETf{?jHXlnUAji z|NsAHnROk7aa(WvKk_StjjgSoXT<~l!+(yo3a}b1JQC&G5j|`D;i(&aZb=?Fap1s# z3D5Vv`@cW_{sSR{LJ{}6`c>cm{|>elao?nHdsodZZnhEz1|jn(*U##UHv-+o;OXk; Jvd$@?2>_m+Ya9Ro diff --git a/editor/icons/icon_animated_sprite.png b/editor/icons/icon_animated_sprite.png deleted file mode 100644 index 6b6cb2fbfab0751c305691dcfbad40a65c8b95cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 584 zcmV-O0=NB%P)ie0B7H2P3~G@mt}3J22IacH zAaLIzf)=f76-2oZ+9YJ6n>GLfO3CUt?J}v2m0HVb_7h$ ztR5h387o&q4qnz;E1G(RQXzqIAy6o9sxNU` zO%jSApN7mg03J^+AHpTKqv=eDb~r>@LCc7$L<0CqmHqjIPtL1~DgO)b=-Jvi`D6w- z4s-w>=rFThGwYJGd7%{WRWsk#;+6~&2k`LeTCb!Dpna!1F{3@p7{aIkgp7Rvj=13f ze5$d(g||aO!~;asT66t^t5vxGAT(rN!`p+~z0AT9055HTRaO4>#?|><0MX-IX#5)u zo>2fuTv(8^seys+Qc~~p73fy57uGa-gD0&-<4ck3&gBz@Wq_nU=W~qfwU)7O^y2P? zt;~a|?>#AQ9zaoZF|nIhhYO3pk4Wtme5%(N9l)H>jnZc2eLihD7O}g6)4)2xPK{pb z{MdL$b&XH2oi)=$9n!3IWLHK + + + + + + diff --git a/editor/icons/icon_animated_sprite_3d.png b/editor/icons/icon_animated_sprite_3d.png deleted file mode 100644 index e04d687bfb2a3e156ae8b3d34ef88872165a11ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 552 zcmV+@0@wYCP)l17jUm>pP*J0XNE&CY%W(4pd$mE);&70C4|H+(MlNYm4`z5rWVIvqo}9?eEE zD@gi@R8x#EO#0S_)a&4G2D4Sjn7w z0u1)usFZhRCva{X2o44eUIO18Kd?4t@ZQu($WjWqrp0@ZJ$)_h~zGW=FFLsy?6JP^EGZvbGPvDVaS*-TKa)nSFNN zzpKNY;?&effROpyz^n}5VN`Q-)wYEs8BNo4JL}tY&E}0_xxCZ<09sc_r7c?L+q4)f z!TaaUG(9ip?gAHqeec}3W@cV@P59^0SX;X+vwIn&H}=i!T5f*+VQ-^p+MD-u40ifBXhIdAdp)dQT$&0000 + + + + + + diff --git a/editor/icons/icon_animation.png b/editor/icons/icon_animation.png deleted file mode 100644 index b333f82711b70ff98a451edaf9097a4fa3cc9b79..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 399 zcmV;A0dW3_P)Z50JN?9NksZl z6rBb^FkdM!nM`()B)JCmtZQFHYQ~tMwMUNQbX%>~Tb5HRRxTwYA~g{y7U?8Oa;3Fy zED0#3dceDgYykrRW6Us3(>oh-VYyG&b&r+=fJ1=UY!+AT1`x}cEOucBVHkb^8x@IF z`1XB&v)sWt$P48HBJvE}*f}pNk_MK$Ejo)GoC6Zaak{Fk$>+qr@)v0 zAcyb!vd}>g1arr6y1=L~R{0Me%0f%$8jr`y^SonzPt~?Dk3fGqot}A~HwUQK>)Xv{ t^P}qCe7F$O-V8*+0>JX<-Ai+o=Em002ovPDHLkV1jgxtWW>| diff --git a/editor/icons/icon_animation.svg b/editor/icons/icon_animation.svg new file mode 100644 index 0000000000..146403ece5 --- /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 81026b3a983d90372570e237463c5165357aa3c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*x37`TN&n2}-D90{Nxdx@v7EBh@bK~@IcbqpDAfkLgGE{-7Lb<}PCJ z`0!S|!eax|JC3k}ya)Mq2)t=xZH#2!{QcjO<|%rDSI(I4T2UU*Z}j=FU|7`o$7Ml$ zic@Akwz_`uZ$A5TjhWgrBZIG=`E!2D?j!8t-yMy=91$!5I*7s3)z4*}Q$iB}pO#w| diff --git a/editor/icons/icon_animation_play.png b/editor/icons/icon_animation_play.png deleted file mode 100644 index b405bf98f44d752a4030adc8e05fb3ed5a04e964..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 593 zcmV-X0Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipMz z0st^0avW&@00GfSL_t(2&wY}=Yg17a$3OSom)GRIHVP3$lp>;FBnVPzJ9Mc-CtVZ= zMG!#;H-F$DI2QdA)Ir<9MWP5A>k_GT5CnB_>rjU}Nzyc>X=~ogJ;xz5O{(_0-QjcY z_j}IQ5?BJGkrM*i5&!}VPWi6_pC}ulW5+!$9OMab7_b1OJa$qzR`68k&q?`FK`)N` zx+lvm;QZEf`xj(@aP$~!bHxkz;UJ#WWculhSFJU;^Kj)JPz4@$93<@|K7gu0q=k@1 z?LP0)<EmRWF zX8Wn_nVu2US~3H9GW$o#L<>M2zk5yUnm~ej3I!hy50d* z9KvrjN$3l6q0iES+{ird4AJUiIE2Xy|z3OsouH2pLJx5?6 zb`ZNZm`?kIxs&?&%e;A3obg`I{|3=9nZ)CGS1f4@FWw(R7y)%)W^{vKc67`ljeU3=)F-ie)AdJ68wp)m~R s4?s$0{O7pYwIzopr0KjW9v;Y7A diff --git a/editor/icons/icon_animation_player.svg b/editor/icons/icon_animation_player.svg new file mode 100644 index 0000000000..7c54464cd8 --- /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 b603382b0c47275a6e9fc443d5655ef38a291242..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 529 zcmV+s0`C2ZP)Px#24YJ`L;wH)0002_L%V+f000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igJ= z1pq0jZLIVF00EInL_t(2&tqU95imli@}eSS(ayd;TpE}msx@?VlvPz!HPpB6*zV!% zpsc8T^!Rb?8p?}`c!dP}dV7x?J<89=7ZemUXTd@|dYBj(7_@bC9zJ@^%*3oDukhgR z-R$h_#jDmD8R($769QNsJ%4^{;lhH#0s~#0s;n$tUcSaj6Sr*H8XFdj)k#eM|Nc9F z_N#z% zMsa?BPZt{tOHE^wkC)fWH*Y?E_=M9Boqc`JpFd}2X8!u|)0dHDGL|NnpU@@1SF z7#J8PPnqiD=T}x&_w2>XYd3Cu|M&@>maxVh16&S*;37Ug-URe0FezY~f+hk0t^ zExx|xv6EZjDTO897~?lThzTD*GJWd03jVmn_-#XWE9e}5sowwbH2jCl)R zt^ zExx|xv6EZjDTO897~?lThzTD*GJWd03jVmn_-#XWE9e}5sowwbH2jCl)R zt + + + + diff --git a/editor/icons/icon_area.png b/editor/icons/icon_area.png deleted file mode 100644 index 31b4473d17e6c51ace90f26ddb9d64dad3aa4118..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_so-U3d z7QII&d2=055O7YOxwvYL + + + + diff --git a/editor/icons/icon_area_2d.png b/editor/icons/icon_area_2d.png deleted file mode 100644 index 2f9c6bb8d479eb2916a446119fd7e9d1ee5ce86d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`Ho-U3d z7QM*{3j_>|3=9l(?*98|zbRphy1la5(HmC`179(TCFQtHcQ51Q-lbHM{>X@h%^*kR zDg%%BgP@Mn30=&E4|oqqvb8V?A7%C4UjN5`4O_`q2|a}=GcGW8F&YGSp5^A@3E^<* ZVq`d1ZW!Lr)eN$h!PC{xWt~$(697hdIz0dY diff --git a/editor/icons/icon_area_2d.svg b/editor/icons/icon_area_2d.svg new file mode 100644 index 0000000000..d6ecb6abe5 --- /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 447acaab2b0da74d805bd66440bcc665aa818d70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9Db50q$YKTtZeb8+WSBKa0w~B{ z;_2(k{(y;#L0;EABj7Ah$lue&F+}71*-3_c2Mjov&;R*<{+xsH7A4736AmQhsPs4- zD^bd5Tad}P;pCs@^XnJvUYD>&2 zVkKcBn9;|evHWl6_w^Ir#!I}mD||L<_n)gQTLaFV>1Rq>b>g}7mArBb2BDw&-|heS Rm;#Mu@O1TaS?83{1OPHDIFSGV diff --git a/editor/icons/icon_array_string.png b/editor/icons/icon_array_string.png deleted file mode 100644 index a2e3f11c357ce2a520cd8cd3b7c170bef87756a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9Db50q$YKTtZeb8+WSBKa0w~B{ z;_2(k{(y;#L0;%1U+o8=P@t!aV~EE2qZ1Eu9WdZjBDuQ`eY^v9StuJL~M6smWo%lem4&jLwa>`6hgb zxqNSZ?fZuL;#*B8sk}7)+}81K-gDpE&#ZF$Wsl!voWbzomYxBFm*(`D+m(!%1jJo8 zZeonn(O7z?=(B`_j?!iYj&t(NmrV9{daTzuDxr4k`sa)@52OpXp4gNVu$3X<-S2-V z*$nn=oOjr|BT=zyQTDv&-bz+X5<(Yml{qG}B}&9?xyH@F&cHAIfd2~%W4>M0`BJXM QK;JNUy85}Sb4q9e0CPcT7XSbN diff --git a/editor/icons/icon_arrow_left.svg b/editor/icons/icon_arrow_left.svg new file mode 100644 index 0000000000..b10afb0986 --- /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 f1f9d0f988dc5536cd5233e70d5f02a60264e5e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eK!3HFi66di4Db50q$YKTtZeb8+WSBKa0w~B{ z;_2(kexHq%M@!~uP{wJXkZfj1M2T~LZfnvA2>=5@O+VD3ktY;HKBo3V0j{YhFAY2>CA#Rj4G8nwnrtN i=DvKi`CoO6>`ulMZ;j3V{XeQe&hd2hb6Mw<&;$VNR!}tn diff --git a/editor/icons/icon_arrow_right.png b/editor/icons/icon_arrow_right.png deleted file mode 100644 index 6260d44facf720bfa416696e226512079ce7dcfc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_;JzX3_ zEPC%wvgSGzAmHlHCT}Jd)sZ0Rq?PMZz$~PF@Mx5FhqS;O7iLAzg*#YgSDJBp{Mi%n z>TTQ3`8y3heEwjkd)eeJLvHBY_QZjgSk&<9^ zSKw-T5On&0Dw{iN@|jHn@*$;BqSm|((i_6BzPPLWm+_sOq0RB^H+t8B-eB-_^>bP0 Hl+XkKM2uq& diff --git a/editor/icons/icon_arrow_right.svg b/editor/icons/icon_arrow_right.svg new file mode 100644 index 0000000000..a51b15dc8d --- /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 840cd0da0a3aaa52cd2c04c4cc6c5abdad2a5344..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eK!3HFi66di4Db50q$YKTtZeb8+WSBKa0w~B{ z;_2(kexHq%M@vmPZet}-NH#MhqQp5rH#aq}1juDza4t$sEJ;mKD9T z1sPc6>EaloasKK=Lq3N90T=l?lXVM9cxLXH8f|gqnBkTx6)E1c(>nrc1UpxjO|Cq7 zM(>Yz+Ov5MuM7Ln=rB&w-n`@}^WG&j>{<)4h@#3{%c!d4xqyyKBd!b|`N0gp57k zqJO-~Vai}w{{Nxr#+uIye~TFv#qe{q(+y@k@rc8ha?ueV`v0JYD@<);T3K F0RY`iWZM7$ diff --git a/editor/icons/icon_arrow_up.svg b/editor/icons/icon_arrow_up.svg new file mode 100644 index 0000000000..77a20e8c50 --- /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 fb46aa137351f259a6a8da9f7b12ac605acfb063..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^96&6JzaVvBIy z!T8HU zZ|e*?+heGA=8Z}w^N!u~i_f*Md!3hB7RNl}X5gi=n2BX+Y#a19Z+^A*xX}TxOS?YY zvuBvbpxDCg;FbBsuIhr4t@xkWMI4Tk<^M3+v&2MqPihNyxX(1vWJmRVtEj88+gHoq UdAELY3ebTJp00i_>zopr0FWA2#Q*>R diff --git a/editor/icons/icon_asset_lib.svg b/editor/icons/icon_asset_lib.svg new file mode 100644 index 0000000000..fcd670817d --- /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 438ac8bfb5528f3b6a5ed1f57f8214d3a3b5a4df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 286 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_aJzX3_ zEPCHgGUPhsAmWnV~%b|`xj|cWzO^ z-v3o>nXq5DB<@VxB(r(?Pyx@O1TaS?83{1OQ}9bw2 + + + + diff --git a/editor/icons/icon_audio_bus_bypass.png b/editor/icons/icon_audio_bus_bypass.png deleted file mode 100644 index 95a3a0177a5f21752993048a1a78e79149c03d89..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`3JzX3_ zEP9Uy8S))65GY>to9WE<7Zy&h?y~aIR+IL7(=FPA`?Vs!clcpL+An zkk(Ug6PTt{#5N)1tAVIO^1|HPtsOCpYrLdF{`2gYJ|dCNP!@b_-D{~y{-Jm4ilP&X zBp5vMiuRnkecG_TVXq@^!vDk3lb_7s=R3LYqUClo-_Xs+(lNmf+{an^LB{Ts5 + + + + diff --git a/editor/icons/icon_audio_bus_layout.png b/editor/icons/icon_audio_bus_layout.png deleted file mode 100644 index bfa5e2c93363f2006ea50c2eed6b22cfd01cdfae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 319 zcmV-F0l@x=P) z8^A@96EqSXoH`8Ds!4u{p?T6T+3%B|p9jNEC@(4F_A zx22xMqoxV)E{s6xNqpJ{J9{<)sVDJ20j;qkka`lIIv^JUa&avNY=s+APvTMfP_bEk zZx+$4b}yH$vGuWmZCYa)Or12yONDw{cJBqi7HWkqj}7utp(=j=01Ws^`T?brbw0}6 RiU9xs002ovPDHLkV1g8ch0Fi| diff --git a/editor/icons/icon_audio_bus_layout.svg b/editor/icons/icon_audio_bus_layout.svg new file mode 100644 index 0000000000..9162722eb2 --- /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 b074d848e0a3ee1913694195b3a280576e309087..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 292 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^PJzX3_ zEP9UyE#y1oAd-DE+UdiB^Jf|lOe_l*D9W}i^;WK-J26d;kjESD`v{gK7H>UrB)4T?N3tn7A8alhpG$7@3BO~C_8 z-X_mlRz1l!bS|?)m|!frIMxk*B-jf)1FVdQ&MBb@0AP!CBme*a diff --git a/editor/icons/icon_audio_bus_mute.svg b/editor/icons/icon_audio_bus_mute.svg new file mode 100644 index 0000000000..a7d085d535 --- /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 085269f23191b4fa0e7181d777a6fbd84caf5d5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmV-50m}Y~P)i9U94QBp>=23OOuu2#Hc?S%f8$RERaM24?jjejumSE;V()$Ex()ylS@jaA>QYsuX_{FG;Va>@ z3n9GLb^R2HlO`T_K~)Fa+DmYVJkP(|w!IgTPhg!AUj}{vV17L0ZoL2200000NkvXX Hu0mjfn-YSP diff --git a/editor/icons/icon_audio_bus_solo.svg b/editor/icons/icon_audio_bus_solo.svg new file mode 100644 index 0000000000..e84c1cca25 --- /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 6588b90372ebabb46cbce4ff8308259e03557beb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@+JzX3_ zEPBuO8TuV|5OBS(x9!QDhQm3I52FhhUv1I6CZrkARpJq_#IeYGvXQTs-T}r-3Q|Ej ztX!UH8AcjiIY}xipJvbe`}zOnL-ii{ZH{i&jT_#WAN~5*V1>sY7q8D&jF+56_o%Nc z36{H8$D$*@`oUf|NAJv&CQQ>dYn`}h*5#GGQSiej6OIRuPTdUu>QT!cVZ+~4d_;Fj ztk-hY^wWPz*D#1buigIN%=G6o!`j_{&2ryc88=K3zmmC#A(P#!@}kvilfcud4DTxs vhQ7bVc&GMCR^06^It};j<+SC}{=390pUU$%mlv=C=vf9&S3j3^P6 + + + + + + + + + + + diff --git a/editor/icons/icon_audio_stream_gibberish.png b/editor/icons/icon_audio_stream_gibberish.png deleted file mode 100644 index 60c85fa5b40ffaf2be9f7e4aea071a1526bcb437..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`ZJzX3_ zEP9VlJji>1D$xfd47kGCPAdMCUF>TyK|yrt3SFTeVzu`F_1S-H z=U`AO>M@LC%t?1lale$cHeZ^-Lo@c-p_})gwQ4ZFy>yxJMfd@8DOQPOsbrtvdzwpY z?|*OiFIJfTVz2zNOWixo!nb~&Q*1qHO{K_(Khst!O%3|arS0&pVTtO^t7dx-tK?o4 vbdqr5XzrLJ#?sFmc9`M8Uiu diff --git a/editor/icons/icon_audio_stream_gibberish.svg b/editor/icons/icon_audio_stream_gibberish.svg new file mode 100644 index 0000000000..4b503a211a --- /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 665d7b56a167f6abaa94dc932d9b2cbd4f545219..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 832 zcmV-G1Hb%Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipt? z0~{4Sg@jE200O{CL_t(I%YBkfNK{c2$N%@eH_jyEG)>w_GS1kDIHpKVwg`=MA%)P# zu8)OC2&IS?LJ&j?TV{o23jf8&jEHd)>vwG-Lv?ID$_iddFZr{>z3m+t#T79CX~xw88X=L9uA1@YDrZ_|{vLoaCdl*SS9oK}nqW@b z+VKuv+;8@KemKD-=+0e#L9{x^;@Cqq#sPr4rpBvIv zADxW?IKy!#i4$OTUi%bZSQaDzn!W~Q9JM-E(X{ukVta|E(s906;h>XtM7Tgf?inTY$3r)s*8B zj*6;3>G|+^MkO5pa5l5uXEWP<)+GCkr?)lgPjP&KBEvh{T@bCvX^7tR9RMafUnA9+ zJa08wd{&di$L(L3^n&Pk+4lATqYUAm=9|8W{!5@Tgp|y00FZIHDrQ4t001Bc0|2iq zLLpFQrz*mo4JC{+U`Of4ArcN=SQ1PCusKwfF3HnB1<*((7(l~Iq8JRQ@qc%qD(-Y) z4I_-m;>Z!rsl1J>@^_mD&Hn`m)|@8ZWcx}C$$$97R0kpC(7eCzKpyuy3j*5!0000< KMNUMnLSTX$ac%(s 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 7860e111d0db0385ce1db93e48bdaa99e0a504ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 774 zcmV+h1Nr=kP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipt? z10FO(+V+tE00M?dL_t(I%Z*b_NYil`etz5hFP-KgQ!xlC%syl)D48E6DdyiA5?(YB zbD$`ldR%7+^Q}@ayYvR5Hs+t`Dfa>QXxjLQH zDuf^)2w)_uqEQb3vdOx;KvlB?)rCo@YIYa`1GOChIX^oiJ~_L@x2bVb*>KAyYgCWL zxI<(M)vcq3>_QVO8@d($bLWYb6=Hpz@cD?gHtI8OZpfyls9nkTJ6yR5Nf+pJI+dE5 zT0VZJVP$PFQCdNeo91@&So{?h*Sqz9wa`4Vn(rED@9q&xs&Jmu@Jwp=o`9QY|oaBk^>?BpGY4h6? z)ag1A6Zbvpq(8rSpxAps?;L0!mS`x8U{GiParh`jdxrv#hge!7qN5)GfcSG0@~x(! z<%QXl#kr3>5D+9j%nrjBAB(^~2O<-4NI)oSKL+319@PMNyF(zWq7g!fApj`=Kq~M~ zx}Z{P003%@G#H;Vhwj%0bnokFJ7)OF7o@eApigX07*qoM6N<$ Eg2DGni~s-t diff --git a/editor/icons/icon_audio_stream_opus.png b/editor/icons/icon_audio_stream_opus.png deleted file mode 100644 index 69b0c83b4ddbf06893e1f85c3a73afc05f588361..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 559 zcmV+~0?_@5P) zK~y-)<&r;(Q&AAbXXf7bl7|~bMTj64!m5R^y(EZD6l~si5SC>vY__oyv9|Iv2rpe4 z7c>zSdy7r8g@wVlXt5${VqWgMGsh;zf1g17mBZn1&dd<~^YEX8@pyb~Q1K#<$-L%Chv6$z;ZrXf#Sg2v-2CG$KOG{MkF_j;m^`uIrzhWk#B&G8hb)nPono-vZDz zvy~=Ek}`y_>q7{Yndz_bRrOe1*N*@^1+Z>r*UXHU<|HDYVvM)*JU{Rv@?o)9yaI4z z84pARRXr~v7qLV{f{1)2qL%>f<$1ohI%823=ZI*RnJ;8n_QW~&cs`#806)5#s+P>W x-)^_xbvm8+*CQ20u@2y7mSqp~JU^iShwo>M1v7$GTnGRF002ovPDHLkV1gw<_dx&v diff --git a/editor/icons/icon_audio_stream_player.png b/editor/icons/icon_audio_stream_player.png deleted file mode 100644 index c3e6d6cafad1d6a3dc01dcf55ac324eb31f9a89c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 443 zcmV;s0Yv_ZP)L3WI=pZ<`+tfiiIH)O9(lnogrj|5m1>bn@dq3WHcfdcznhlVq zwO6=3&WI+#FhRhRoLWz~zU&wJJWTh3OVgZa%7T>upw`$uwX=1A;z|12W=H}R_s9m2 z1w#ge9q)V{z;2`DcXu3tv5aGtt|D{0?*Q<2vGE5$m;eBsW19;Bp572p4msYVUoT9f z-2+>V0d507dBeVdl91|xhGE;|q9r-X0-f(DeTqLyR#vj-wlfai*&3 zYBU;s1pp2Jdf{NjR7JL^iak>iFclHB1p_c|S=M7Nmz$|J_)uEbf)WAhVvHRFi2MMA z_vT)j018C3SY4s03eBx + + + + + + + + + + + + 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 a332b876eabba21936e3794fc33f7474ebace6fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmV;u0Yd(XP)j8A%Kl~3sSphh4`O&Q$Em#N`m*RBm zuU6JeC(k}!3`i1WRoa{h7@ESI(eryBK})e%cQ$M8K_=kywwfCUhAUfvBIvp;am^UyYgw#nNNG*$K5{?LkwaNQ^)*oW z12E~!eP0An=!nSe=?VkKw36tdZ8UU_w(`B~Ol&!Gv*zw5I|1-w{O$r4t8uKK8uqor nS(n%D2B>vB7Piu_uyp+bn;3o1ing*400000NkvXXu0mjf($dE* 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 0000000000..a431b84a55 --- /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 60e3528ffd75b6c82a1e36d201b8483bb35a92e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 433 zcmV;i0Z#sjP)1YK9{@Cf zY;JSfF|D(_X{|ekg=1K8TPR@E)AbuSlNtJI@NAUL#U)}?hf+I0%_qPL-`xE#fE*$d zUn}HID;-pK3`-odJRK7hU{5!UrbH@r6zl}R#@j(V8qK~hSF^_OMRCft?W}@oUt}u$ b3jfwShhu!(0+q{I00000NkvXXu0mjfE%LzS 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 0000000000..4ce9d6da58 --- /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 2b97f6198b1be70eaf9dd4276efbfea56d50320a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 425 zcmV;a0apHrP)YFCc1T#Gr+OsRSF#lonPh z7HUv1D@saB3m-u2QV3!KHbP!t0}2X~QnP_b{>H*=TsNC2=xt^=_nvRg3vmn z2XZK6kfhx69e{dB#y+!ij-q6m)ynnY>hT-E>(%}*06_`B@ccodOE23KQ0s5HrLSI4 z&W%hR_6FDqyvl6`P~AdB_^1e9huM7CGrgeg1o@|&%g?Yh5eCRVr_715oyfNY z* + + + + + + + + + + + diff --git a/editor/icons/icon_audio_stream_speex.png b/editor/icons/icon_audio_stream_speex.png deleted file mode 100644 index 6fefe47284a363ca7f6c6af68a5c4898333164d9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1080 zcmV-81jqY{P)Px&08mU+MJy^L1%wQch&+_S6r2hyn#GNnL>$V@GStJo$P5e1Bpb>_K>Xs2hU8HE zl@Ba_6v%cM(1d-|;w`AnwY^ zj7*Xo20@m}G%wWD%=~%`tlE^6Vto8c45-vh$Yo#e^YWGSS^Umi$rcjm6cUKkU(0iD z?AQ!qWFF9!k0eBpug2NTQViC#u8^R(-t_bbN}=D>&?Jf+m*rUmlm)a%A=x7z;pE|q z{a640|AZn$w#>0qf|S`bG5XaG{QU&`0t6gDgxF|fq;4#j)=*Sobjj5*+5-gyK&IFk z73aCRu~#I7u0+VJEZ&KSl*&}znw7j{TLgkU-^j$-NJD(wPx=`O*LiiwR#D>Y>ipL+ z7K{`bRhjMW?c_H%A~<-I{#@5tRfg?L`s4@Us;B(eqy`u_`*wU@2%RDp8os``E{QB$%kitaV zt~@x5AegH{m(6#s+)k7(JpA5d{OsVY(VoQCyyWH-yebsSEG2}^S(xlvdF4sk%^p-T zWGr5sylZ9V)gFA3ynNJ91dasK&B)13Nzsdi=PN7e%Noz!&BtwK)30g{n9n;VivosJ;*o@LInyt15F5dxlO zy8jJAj-=c?%Zt<$_w4ov0eZd)imT3ZgO4#0000Rz zDeP?Y1S$lNAe;RcJ%C`d)sBU`GQ~irpZDI(dkp+F1i;LmfXzAFaZwao-EQ|Y z9=d9sCkEJPwOThJ1c`^s@j+FE2AG)#UP1`_d7hsDm(wqZ$$Mt@Zf0+0wo@5rKp!Z9 z3p3lDX#iXS2O@GPBG&*}mJL+(0XVBPqclxBzamsvQPt<_HLCz3a-L-wNsgTB}vi~ksp2?;c)@+xG0K#EdC$(0t)bH^wY8= Q=>Px#07*qoM6N<$f&)aB-v9sr diff --git a/editor/icons/icon_auto_play.svg b/editor/icons/icon_auto_play.svg new file mode 100644 index 0000000000..78e48b2bc3 --- /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 2100aea6a0a3b03c4168a7a70fda38ffedbe5ce2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 451 zcmV;!0X+VRP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipP$ z7dkg@`-F1<00BcuL_t(I%dL|!PQySDMc=oKr3B&ZpioiMlZ#O00u(t%s@x(HSI7w{ z5NAk7A4N(*kSU_XLt#5Mj)OpAnqAGG`Ty@|M}YTwJuDc(0%m~_u8Y$Q3js63%m^XW z`9YD3D8m5(AS5qu73jG8_c{Ucnm{VRqFzTQL70(Y)*K0-AbW|YuPgg)CUyoU^P3xAfrQ?Bx;TbdoL)NF zvFnh5M63OAw-z6BJ>8V&aWh;Mw@X&_?(Dj*xnuUxISaOMw>E8MS)w{QQe>*(3zNsq z6XvVDSMGl@f6w|by@`|luP|!Um^kT_M9|WvGq)EhOq|4_5ZaX+I3d&a)Si>YK}$7W zS1~Z8L~YKW71-dDz3-IJ11^i#xjS8s7@kSHQ2yn(SoYi0|Ha#Xm)>LUxGo{aJ;U!{ z)DiO=&kDYq>EG+>U^C{~+#z@DBV(+2&+T7*Hh)&y8kO_4H0*nRWm_VHO#Li5caAHU z8T1dmweDxj`DF7$o7uJ2n)H|7ZBLGwOEnMHfAw*BLxr{an^L HB{Ts5>EV*8 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 7e8ec86eecf28281fa567829d850b15fcac5f989..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 753 zcmVPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01m?d01m?e$8V@)00007bV*G`2ipP% z00k!eKwK>V000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0006^Nkl98@{J4M%6F{;B(K#LL3Vr<`N7lh7-{tUpA;38jLm1{D%oHI<#K{v;qNvmpE!IaVx zHE(6o|BCcvKSg^EAe%A#+`3^(-J7t=7M$U6!j=MLGiWc{$ST^4$t*dUo*d=oy|bte zJ1}R=+CNoHch?xD?!)xH4l+J5Lw+R;-fsgy>%4&Q{(CGF&|=1H0L{J*0GvM)wBBu` z@mechuZQjzV}yczWQr?DL<0I2JhhjIXIqgKmBnO~#f7M@w5^a+p5xrO)v0e{Vunz# z51-G+_2x!!sSpkzj-J`PN*L8vh^nfzw?7~ekFc+zn%u(Z3(iX z8kALAA&Gc|H$#1Ry&jUuSp)3#dN|+EWPJ3ou7a$ITD9d{ZW8y0CXTu2FC;0gwrc2(G0yMlV3gqkP4MyS^sXu jI~6L^n?e{h02KHIoY~-9kYii100000NkvXXu0mjfX}Cdz diff --git a/editor/icons/icon_back.png b/editor/icons/icon_back.png deleted file mode 100644 index 8497d2cf4b8238ae67daa2a26727282aff54902d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 290 zcmV+-0p0$IP)Pg_ZdL4qdt{% z3;eqKO^;9%#et-EU?S-$&-0HSAx+aq;28Kevxi>DcJ&&-%+9y!?uIvD;_lDg;UMG~ z5&%ipz>lQ6x~}H~LI~m0-Cuyj-Iq<%Oa~S*#(UrkIBM(vE4HYr>IB%dzqrh@Y~2gl owKB6;fOI7I0=SYC_gx6UA3~8%jKXxPCjbBd07*qoM6N<$g8Z|3NB{r; diff --git a/editor/icons/icon_back.svg b/editor/icons/icon_back.svg new file mode 100644 index 0000000000..184369f1e6 --- /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 35f04ddac8bff9f8fb585d5ea92f1c96a3cfaca0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_^o-U3d z7QM*{3j_>|3=9l(?*98|Z|8b(-k+WwPiAP8GIDP;6HH~WQaF}<avJU|=xF61g+y(%hLq;~6|%{an^LB{Ts5 DmUuL5 diff --git a/editor/icons/icon_back_buffer_copy.svg b/editor/icons/icon_back_buffer_copy.svg new file mode 100644 index 0000000000..8231c7133c --- /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 31aab496e261b1aefcf8d0e5b9f9fb564d267384..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP>{XE z)7O>#J{vEOzNOgI1T~drPaKh+&})8R zS!N~wrV}59j8A-(j8utHVQXC7Bk=c=^y0`#l5*{BZ@yFjEnx6;^>bP0l+XkK>LNhJ diff --git a/editor/icons/icon_bake.png b/editor/icons/icon_bake.png deleted file mode 100644 index 3b7fce5c9f93ba9e0b2313bc6ac67044db2d592d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_co-U3d z7QII&IdUCP;9)60n*L?N^`ChQYu#^oGb?FuYL@spPActS^2~63|F@5)i-U1N3hyO> zj@Qykhm7Q1UitI9I+bv|BJr!q+e6bC<7R)c|6zZitbox%>AdGB8QxpckL1FxK6`ur a6GP(>MXBtX!pA^M89ZJ6T-G@yGywo{c0#TI diff --git a/editor/icons/icon_bake.svg b/editor/icons/icon_bake.svg new file mode 100644 index 0000000000..4a9ccfed12 --- /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 c667b542c122f100fd5614c0a7e65ff9bc5004dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@`o-U3d z7QII&UF1BVz{9FP$N(F{q{&13T+piYfU_(LuDpjh zetebAQhQnZV5Pm`g^34yp11D0WWp`aw&qsL|AYS-bJ^K9Sk5ng&!+T~FH&yZ1lhmI ZdJFXxPDiJGIt;Xv!PC{xWt~$(696-ELAL+^ diff --git a/editor/icons/icon_baked_light.svg b/editor/icons/icon_baked_light.svg new file mode 100644 index 0000000000..f5bf07a444 --- /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 c667b542c122f100fd5614c0a7e65ff9bc5004dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@`o-U3d z7QII&UF1BVz{9FP$N(F{q{&13T+piYfU_(LuDpjh zetebAQhQnZV5Pm`g^34yp11D0WWp`aw&qsL|AYS-bJ^K9Sk5ng&!+T~FH&yZ1lhmI ZdJFXxPDiJGIt;Xv!PC{xWt~$(696-ELAL+^ diff --git a/editor/icons/icon_baked_light_instance.svg b/editor/icons/icon_baked_light_instance.svg new file mode 100644 index 0000000000..f5bf07a444 --- /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 15ff7b98b921097cf20aeea9e8ddcbafa8c5d686..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_$JzX3_ zEPB^Y3glx_;gOt{iu5%0V3?P6vF&1VVmVzQb% zN-PZK-Uhl%kAFluwyg8*Ia064A?CQ=N4#ofQ)R$~H?My+yxO^Q6YIp)Hx~p2uF;Hr zuy=75OWjY8d)7-zc3g@M_kFhU^_>Tt53cB~D^m4O%f0fO^U2%GM=rTt_4pL`BuW2o b_+AF4RThVja0}N1oyp+o>gTe~DWM4fh6-Iq diff --git a/editor/icons/icon_baked_light_sampler.svg b/editor/icons/icon_baked_light_sampler.svg new file mode 100644 index 0000000000..0bf630039d --- /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 58468c98bd13c93337890f0c0b376bda631a1ef1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^So-U3d z7QM*{3)m_?JUIBDonP*cdi!}7QSk|{g + + + + diff --git a/editor/icons/icon_bitmap_font.png b/editor/icons/icon_bitmap_font.png deleted file mode 100644 index 5334c335dcce41525c5073f818c2c3c621141896..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_ko-U3d z7QM*{3j_>|3=9mm$o%?0U*@c7Sx=A8lwA$1cU@BK&ZO=*A}Jvu@j%ZZyoFz2?Y5^E z{{L?|)c(jo!Zg7^qQTg4!EyU_N18(g!XGKBZWZEX@H!$R^&();RGzopr E09N5QEdT%j diff --git a/editor/icons/icon_bitmap_font.svg b/editor/icons/icon_bitmap_font.svg new file mode 100644 index 0000000000..ce5f88b97c --- /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 1676c650c2d75b3a9dd8fffee6b2862646602428..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 578 zcmV-I0=@l-P)%hW++C?_^0RX=5ZvZVIF|)a9wYnTd(RdukXPk3uz&YR( z@D#u~_w@i^D79l|Eg&|tE0s!R#X0AIwupQbk!xWX-c!{_z~+G|6s_HE2der8m;&BA z=Wd!=zu9d59Qj01G(J5&{Y#Gn40Cu$`vq{P1pexKP!JeFaI9oHesGzz5!DS++PcGn0+r zzVCknR*Pzf&-#yoa=HAy-|ugTNGHp(8^z#ZX^(-shuYPE|L~a(58 + + + + diff --git a/editor/icons/icon_bone.png b/editor/icons/icon_bone.png deleted file mode 100644 index 2d9a7b47f338661accdc7445f86b188814523814..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 349 zcmV-j0iyniP)K~y-6wUJFq#6S>6U)eo^;2lC5FW?XERNM>BO1(hVa~9X*Mpxoy z@CM^XVPrf(pvf{167rxC{}=JrPm@d3n5ILb7ijs5mDg1lOCz+l`&>IID+?n z3>-$>o%I5|_hS)x1V)jTk0`)?>2CRYCs;V-mmsp?b9ykUTwe4?WRlQEr z^tt<)02D>>qN*nmt5IW vWY(!Kh5)wx2q8?2F*~Yy4lFmP`q%gb=+A1#)bEsy00000NkvXXu0mjfF@lyB diff --git a/editor/icons/icon_bone.svg b/editor/icons/icon_bone.svg new file mode 100644 index 0000000000..01662cd9aa --- /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 882bb55f44fed26adbd37323f9246ed2eedd0d5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmV-T0kZyyP)sw>ngFf+3H0O;Nbx{ z2M$oZ@^JU-1ga{&u3NzL+AXRJ15>fK8B8D|3cN+_5h4>`6fV2M#y1Q_1Yi6E6^hHVniwkj~Kq{9ykM5A@+B(>ZG*xIlim}@Gu9)p*N0Z zlIH#jM?dbFF@FI>mI-}5WZnTx*Hx%K0d1t84w-iVv9>9#y+w5q>8l)|>>mtFJ?sOQ fsIIqP^{@2_? + + + + diff --git a/editor/icons/icon_bone_track.png b/editor/icons/icon_bone_track.png deleted file mode 100644 index 1e55e53d6b327007c7461d6361ddc56d1d3f00de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 343 zcmV-d0jU0oP)}bp!C#0 z0Tnb6H%J9iQ0M|@@D*?#OYstLf@32gwt0H9J2U$Oe+<aT+!e41^l?fQr`a?g z)LXb)U>8^c4hTOke%*nYiMR6{2n%oy*24vD#c5XAfg}T-=int!i_k7>N3hq^BcQn; zy;mvV$-487r4=s=1#EP7I3X_=;CHYmAO{|?D1pfm{i((`plz@LsQH6zw6uQmFmDzC zpz$?m$3xS%o?I9~8|8CWlM4d$%hNWjB7X}wC1CgX1rQ_+jih@t=h002ovPDHLkV1i+bgd_j} diff --git a/editor/icons/icon_bone_track.svg b/editor/icons/icon_bone_track.svg new file mode 100644 index 0000000000..a8adbb3dd1 --- /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 c680bc195a85674289e71812b31e0a511a62c0b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`ZJzX3_ zEPCHgG~_xIAmDP}?I^Ryp7vIS6-%cJFVdQ&MBb@0KHyfqW}N^ diff --git a/editor/icons/icon_bool.svg b/editor/icons/icon_bool.svg new file mode 100644 index 0000000000..56fcba5833 --- /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 68ec6088c9aff7c3a1a40a7f87ef8a480a3d1978..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 392 zcmV;30eAk1P)kn2mUp zgsui#ZunqVv5PJ{+bP9rjURYI;-{fqkBNMVEdU)r1WF(9>Oy!3reY8=I{!I!xO#!h z0#s|?yxu+}0!|ICi(qIlInuP8E5L0D8q#Y>@1>eTpB~(o;rt;u(SVf=#(xobtgu*i z$@_h_+yemt+lMrCReA1ElEXSyG(^hKnpJLHK?Gk>$Tn0mcPm|0?#A?ym@%*-21^&u mpbGnpvVJqKy#Fd^5WWDI>1>5Zy^10L0000 + + + + + + diff --git a/editor/icons/icon_bus_vu_db.png b/editor/icons/icon_bus_vu_db.png deleted file mode 100644 index 2c51a2e5592ee68061f9b5e54daf88c3e90558c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3410 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 diff --git a/editor/icons/icon_bus_vu_db.svg b/editor/icons/icon_bus_vu_db.svg new file mode 100644 index 0000000000..23bcd8841c --- /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 32d886b1a2fc73d32769486fa74943c6a52dd199..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 938 zcmV;b16BNqP)FIWV}RS_X%G}0#TI>zqSz26xq%@18xZALpB0v;F`gBvGcd*jWS>g zi4fJrfrX=9&@QLK6GSNf%KnL&kr>~Nf>g!h1zXC%m$DZfWX57_9S9;-*<~XD@H3`C!3)CXeAL0tsH&Qla{B`=f*~IW8;engq>8F4ng@a1 zD|?B;`nv`h1kB<}q^j$eax)UUE_ku?r{xBA6iAS&xs?+IU<=7lMq2w&FGFS&gdkOO ziKpSq-yIdgb)w_c}g-T*`;N-T=^K2AvdWKs=DiTQq}y?*Utlp z_p6P3I}21dYpv=Wx;%j}J`k4I;%o#VNZr0>Pw#+Wm_qWCRF~EgQftFPKtdI*N#|xH z?zzYd!khJbPIaNNde#z>1~5z^`I#H%Hd@$8l?1B9)tNj|;93EEL}7NbRca;z3R2Bg z)4A1IGrb_ZB-NK&51a_i z5~MmWkLU9OHwr$4l*)8D^+?^7qjqUS&gtHX0hRTx`f^o=5UV5b7-F_!K50?#Dc6LDU zQ=Pl^2AvQ_FAUllsn~5^$6iwEkS8P(LcJ(`ny0iCb>wOLk#vf})cL+#A#vvg!+$+n zcxAV2*&mUbX=f6oUX}FzgPpz9g}VnSc4 + + + + + + + + + + + + diff --git a/editor/icons/icon_bus_vu_frozen.png b/editor/icons/icon_bus_vu_frozen.png deleted file mode 100644 index 4e9b8f4b4bb3d2b13e18cc64b7f1297f74b89129..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 925 zcmV;O17iG%P)X1dBGzuMAGfHeoITsvYoFtSUV%n+1-=#>UQh?&i&l)^L?K0 zIT!ffOMboBf0F^gD&yz$#y;r;fH}Y4Dk4Dn>nEn}O4`5UKOgpU?Z3qUp$&o58+)5N z0ic+Ccig_KLT5%AnM@md8rB+2u0z6aAz!t z5rKdX?wXf)Vanqy&zPn4d(T66#{y_X5bEI0`BM=H+6m}_aBnP#(F-K>T8aQnm{kyX z6w=}QqxPm6p;vb-NWEZR6b}`SJQxiT#*PH))$I$XBE$?k%WQh#|F6j(@!?mq8^Neo zwl&YZt^1Vnk%uE$J@Lxc=G2W5Ry#`Jkq?eO8VO=7WrBKn%c2xv91t4#+F0{M)Pp>nM@te%K%0jfMWz+4cI zfYJH7X16n;VNLsV6(F|g?9-9D-qg%-KN1>NCxsMYFQi$`%999hYXOphurjrC#%gl0 zbJx3!js$Aoiqy`C_JHA%k-Fa3GmgI0zU2)xRq^q{hq^s%M{3`)M1>*(QrPM$x@4r2 zAL~J2o6aQl!qPuXXR9+9JyhuaR1Y*FNTl{I`4fUQ=DFCp`}0tioqO9`XFl4*TP#rD< zjWJIMtya=g8!}F9E&-!DlBYs-QHqe|1&_H<{hD!hj?`*%1BK*sg5lT3y(Z z{ymVPf{Pb=zLi0u5dosr1=H@4kda$G3aMwTv}YuWo|#{1@}8^YNdgo@%P3qm3D(Z5Hp58eTsDq|v^Tpxn^{00000NkvXXu0mjf@pZ7n diff --git a/editor/icons/icon_bus_vu_frozen.svg b/editor/icons/icon_bus_vu_frozen.svg new file mode 100644 index 0000000000..99884d33fc --- /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 b47deea254ac3738a8ae42eee2d2e63de4745d17..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 894 zcmV-^1A+XBP)%e7TMpJu=->k06;AH6*B*Iy=nfBtT^PqS8~gVvk5{W z0s~O2(m?R1K{KQ7c00Ll;;XnwipL?NO`4rT*{ z@hfr!2B3JE=V~EzgtmHOX%qk`Ug983BCt3=Otdg|wO+0T21+TebrUIUEsS1QAOKKm zk&A%x>_E0a_;#yKg|M)&ZWcv#E)l|C$(uORRZD=rtV`X#Ng@qAuOSr5 z838DBV*rA<9+@EYzpPe70V!*}4*?Y?vnZ+`Uh5E6tZi`RjAFZN)7tvpRuL<-kiELe zUsP2lXRcNfp|__>CFh*nCN~NZmKrrQLFjqs5h(gX?kcCKG6ORTOOnaN@}^hkmDl9B zHV=@+ZNVf8uih)BcK}+q(l<9oLLRza^fjvH#tqrk{-P>Am&%Mxcde-p&-%}(it47U zN`E3LHa0+@fo8EsVgSlpej?yWmRt=62#*I_RC3;yS>bPOihT_b9)3D6MnC}Cv9vs3 z3t`Lo=GS(WoC_Bf2R+pdQ_dZu9det8K!;Kf2UH}f%`-u0 zAG@aN&c!K3Gw;qeX1n$K4MK&@D_wBV^+-{c&OA1WbZPvy%H|!3ADBgVHklXB{p=LK zumk`)Hm|^m0)Y5Il1(BtPjsn@>hakA04+$>Z1RTV^yFRD_+J&tpN-A?pWbl%0{T~h Un--5{ssI2007*qoM6N<$f + + + + + + + + + + + diff --git a/editor/icons/icon_button.png b/editor/icons/icon_button.png deleted file mode 100644 index 0c39e003e440c2b461d5072de56cb93062766493..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_~JzX3_ zEPAg_+RMinDA2n9rmx1|Jv{o3O4|~%{TEDp!TOOcOC(HX%5SDUJZ4&x_AYizsh`l% zvEHWq**we1jrm45tF3NU|5|hG*A*9`x#ivaQeR(^Fk_hJdb1^{xclq5)BMY<*DpH6 z#liSntGz+jYinf5HGkzfO^f?aDLh+ZWy9+Je=P^Y<^$T2hkr;dyn4d&_Lf`sh2kG2 z-V2^;HlfpIuAt=3pH<%jdvpz#N-8vGS!=1u1_gcY%?a7zUQxO!@J^F*rtlw0ajjI_ VGbfVUGJsxU@O1TaS?83{1OVA#a5Vq` diff --git a/editor/icons/icon_button.svg b/editor/icons/icon_button.svg new file mode 100644 index 0000000000..605546d174 --- /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 ac2e484abc29f9f271ff6662a66f44dfe74c1d82..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@^JY5_^ zEP9s)9ppV^z_TaY)=j&TkBfN&hkQMH}2gSFTdo*;mDTlD9!k&V$v#sO)Hm{-k?vgli7kF*tV0Nb$XM~M5zOokDS@&v${M9xc+tTs#OQid~2+q-dK};^=|Zcn?*hc&h#BN zcyp|9Nr%kzmgh1#XWytz+A1}vb@z6|pI^o9rB2{%kzIcE?(NK3dfiO>l|)}0%J<1` fdA)!7z6XqF!kw6Ub@}{&eq-=-^>bP0l+XkKQ80C< diff --git a/editor/icons/icon_button_group.svg b/editor/icons/icon_button_group.svg new file mode 100644 index 0000000000..110688adaf --- /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 4dff1791ad4bb56b0a1401d3ba35701718f0e1f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`BJY5_^ zEPCHgILLV@K)~gG&Hjj%D91NPinTm`lxB#lE#a3oG)tHzVDeg3g0pV1xZ{V|X{qUL zi4Xf3^g_2DTjMaxy@WUDL*zDjxft_u{WA>QXS&ka>&1IEvsg?|eY8YGbMCXsN5^BF z)y~Pvm5U4SJN=z`UG8q9&1(+|{!%yVvH!$kz`c+yE8(*F1SfGJQ|T7}+y6MseV;2f U%!~0C1-g*I)78&qol`;+06y?hO#lD@ diff --git a/editor/icons/icon_camera.svg b/editor/icons/icon_camera.svg new file mode 100644 index 0000000000..aaacdec36c --- /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 6497997afe4c946796adcc0a05e64d9fe62664bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_$JY5_^ zEPCHgJj>e@Akea3^-etFKa+;u1?hejb+tEIMHWnBXqAv|U^`;{*i~3HK~7v)`1!V* zGfz&B{c)PX?`o;?N&z$Jji!_Sl)XLmPmSqC%I}W`4bRdY))(t7rAaQidXFU7_hDMfZ}VL($kJio^oq`ikKbtU;0<@ aE~8|#_BP+I%| diff --git a/editor/icons/icon_camera_2d.svg b/editor/icons/icon_camera_2d.svg new file mode 100644 index 0000000000..089f864511 --- /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 64f5d8abdfe4a0b93b70b8571c43daa0dfccae76..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 411 zcmV;M0c8G(P)UqK~y-6rIJ5O13?hQ-(0LBh{Qg-B!xmi5Q2?`CR%CX2N0|*Y;FA% z+F1AnM6ffUAlTSwYa6}Y`@@+gV3We-vSX7Cmk=%|4s0=x`Mu!{3;eU_FT-&hucT>u z3!n+$TuOOW*dU6c%5XS*0-GBQ%&e}I zQiob=J9; + + + + diff --git a/editor/icons/icon_canvas_item_material.png b/editor/icons/icon_canvas_item_material.png deleted file mode 100644 index a04f6e8f5fed642c22a79fc5bfdda68f9be1ff9d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 350 zcmV-k0iphhP)|LU79+J8X&*ojt}tcX9|E)@;Pr3{?6;hr0+c%# zx2-qIV?}UqO|r-dXnu*0xh1Ix&LYVaJeuu70q=YyGpIl1i~D2H6zHyN2K6L%A4+5O wGx@ihSnGrKfxW_>AdE5dL`J8x29(Y94L!3@5ASZkcmMzZ07*qoM6N<$g5C9y2mk;8 diff --git a/editor/icons/icon_canvas_item_material.svg b/editor/icons/icon_canvas_item_material.svg new file mode 100644 index 0000000000..d043e6a5a1 --- /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 8392f889d10e9f1b0cbe7586891c02bcb3536460..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 416 zcmV;R0bl-!P)XCB#YMo-oNBE9kT@QKG5>T1a5O=q9d|=ZLr@prg5u+vOR&Qf$s!w zt0V16v$tS~7UkohrhK0z8(oo(x31Ev$&3Ge_*H7Oc^e&8{uw5^0CQRuUL2CaWcJ diff --git a/editor/icons/icon_canvas_item_shader.svg b/editor/icons/icon_canvas_item_shader.svg new file mode 100644 index 0000000000..e92dc7f555 --- /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 f40e3755af86eee2b0fa4fd5f485595982805bd1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 440 zcmV;p0Z0CcP)N&E7qS7H><$W!PC=Xl$Q%#x|p}C=-0y+fFP7EN> zoJw}spCNMwOdDJY%Lkf&=!pPeOAAjCQ31FVOd2|OcHEUDA-J)aU|gMA>Du};84?nY zd@!aINmqgn$%LMwh=ioYxx2L#i2!!jZAL~7z{KooRjEzf+pvMw8)p{(PE+tG@RtG| zc>prPPU5HYhl&+7yetKv3FHh$TJa{vi?qx^-zR@=rAs@-iW=tjAAymN+DbA5^MQNd i4tf6fQ|Z + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_canvas_layer.png b/editor/icons/icon_canvas_layer.png deleted file mode 100644 index bb32d6d3adf045d88786354414ff63ffc39ed017..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 474 zcmV<00VV#4P)>bMCzy9{eW+Aj`52 z@D{jU*JQ1Y00x7>wX!VV0lTXDDvskL0r1`jRo%1J{#Z82dw)e$zX7-B)Va0xY6PIF zH&%(Ab34G-iWuM&AX;~0x7*zok*@8jVlD-Rd>7+3c|~CSPfg z=lSM%JU#~QSLgt=lO*vAqSheK^Ub0tj)4aix-TMaYpnywvTO#hQD;yT#Y^Df;w>Tr z5osG^dVlwBz@MD6EPDb-v)OzdLb#=>&w;!w%SUON{;V7Jdjsd(Q{W>&2;sdk<{*S{ zKAldF(lqVXi7y#MQPfdY095svbM8%&B!|m{mkhl3C#t$zEr`h0Ix);sP}M`=qQaky zMx*b`M7>_`9?*yRX994}-4u}ya5kAtKD1h`i$zp5=&S0BIF7&k%a$wg3qrJ`;N4Jo Q4*&oF07*qoM6N<$f+$ejMF0Q* diff --git a/editor/icons/icon_canvas_layer.svg b/editor/icons/icon_canvas_layer.svg new file mode 100644 index 0000000000..9a2ab5de9f --- /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 b76e532268710a1688e1564e71036ddb76d18c91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^#o-U3d z7QM*{3j_>|3=9l(?*98|Z#iqR?N7;>8l{ZfyE>0#IF%W4?|SmTiAm(Wj(>thf$RK( zjK}hm=QJd7#_2D}KE_rc< + + + + + + + diff --git a/editor/icons/icon_capsule_mesh.png b/editor/icons/icon_capsule_mesh.png deleted file mode 100644 index e656b4b04758118645ee2b52cf55374c36a5bd66..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 408 zcmV;J0cZY+P)P6(>gXY9`>al`BVg|uQNTVpwL@CL7@p0Pyx#|~uSZ&H#9E-jH0000 + + + + diff --git a/editor/icons/icon_capsule_shape.png b/editor/icons/icon_capsule_shape.png deleted file mode 100644 index bc00e491d3b37bdc873fea4d55715a4f085675a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`BJY5_^ zEPCHgR^&V6AmDmmpebr=3k%=D!YKEhtP8xD+#}hqzZC6S5fRFhCa~jOj#F^+gVWRJ zPuEXNNIKGV)K}d5xabYWRRT%=wfav@-<;EJERWfy&8KytM4{jdU&G}M)~C;`3K812 zeb+Olgv%wI(b2BO2WR|Y-LF$2vF2~o0s)>GMn=;mshM1|bL-_#Y?7IB VkInur+zoUggQu&X%Q~loCIAz~R{#J2 diff --git a/editor/icons/icon_capsule_shape.svg b/editor/icons/icon_capsule_shape.svg new file mode 100644 index 0000000000..2940816d60 --- /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 6f6554fbc75b1dbe2011cc66fc1f37dba8a73c27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmV-50m}Y~P)-JcTuA>0b^1Kl9BzcyOiUoH>X!NG&6v1)#7p!Y~SDT?)vC zzks?E?Tklr+?GwzG%g_9Tvz22OCx~*SOT@w^6vJZ0P?e~(4RcZ_pBpZFk2aVfwE zLsg!D(1%TG|DvBnc`JQF6w2CoG=UG`02~nJ2|N}**UfYU9h*hQJ;USr00000NkvXX Hu0mjfj=g~5 diff --git a/editor/icons/icon_capsule_shape_2d.svg b/editor/icons/icon_capsule_shape_2d.svg new file mode 100644 index 0000000000..3549a289e0 --- /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 61904e7b00fa20f15196527f445f7b49070d97cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 294 zcmV+>0oneEP)3rVjZ%AxX8=JHmy-1sW z2Y~3j4*3kr;yVC9xCPbP0h+Zf%=XL@)Tujw=AD~637DV?gDiYIdCC8b&u&gfAK(NG s%O4i1Ba~NA)ue<3hvgn6KluH60BSu`l;wO*c>n+a07*qoM6N<$f=H` + + + + diff --git a/editor/icons/icon_character_body.png b/editor/icons/icon_character_body.png deleted file mode 100644 index b859a271d54fae42261b3a0a23362b23862c970d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 559 zcmV+~0?_@5P)Px#24YJ`L;&Xixd6+hj(!&a000SaNLh0L01m?d01m?e$8V@)00007bV*G`2igh? z10FYwdM>~K000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0004sNklBjU6oo$*tCk!j7eomtG4AHYWJ(u9p>8o`$*2q=Lrj;931sh2Xou|0KcN4F@rRrb14 zsc&i-?!ytbW~d`&UzM3*}%CjA=dg)%vrLPAaayTH*cf z7OUGE+|*A1I6MB1=*eUoCt`f+=vF1R4QS>?ixz!*rh({6vPbR2=!&j{uTt3=<2TTpt7a`jd`SQR002ovPDHLkV1j%*?x_F( diff --git a/editor/icons/icon_character_camera.png b/editor/icons/icon_character_camera.png deleted file mode 100644 index c238487942430dd7d204e1014bc132832a797ea0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 477 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*x382Ao@Fyrz36)8YL_7YEDSN2=X@(eth_tw-;018Q#xJHyX=jZ08 z=9Mrw7o{eaq^2m8XO?6rxO@5rgg5eu1Ff>~ba4!^IDK}~Mz6yGB5nJ-gq$XO9Z2Gy zbk(kkKhvE!ZK~EXx3k7#C zxiw^6(>uTEP^0Iqx5l#l=1$u_Z3``~D&;rl|L~*7>_tM9*zT)ZyAl};zSz|BGFY72 zw(Rv5{cj7uvwY=Bz5Iu(u!}+a_LlyavHMdd@K5#KY|xtfHQ=`2?%FMm?C1DjUe#Wr zzWvNn7cR%M+di+XVSA#Ozr1|4{MCqE0zUhTCmbo9FyGgcYoe`A_uP{$DH|C$xRPb6 z?g=@V_v9oxO^CR5DmJhuyM0PK!<(g=>t}u2?R?7dPg7x2+v{yV%B$GFSheaNHRo>v P1~h}GtDnm{r-UW|VBfvN diff --git a/editor/icons/icon_check_box.png b/editor/icons/icon_check_box.png deleted file mode 100644 index f0e614d0e7edded765db1020d143f9f05c457929..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmV;F0c-w=P)hSe;EAk4FH*9c*O*m$eSn|IILc{A|eQUKSz_MRxY64;#6 z+Z~IME2j&Ozl$b-R&vQ7%s&7i18`^+)x5a%o|`q*xMqGzxn!660LDDSv^k-)C#d{r zRh>rlr2x&>*0y2jJHSTh4E%m=`U;b$1+EQHP8GWKo|_e=Jtf#EZmo@E-boh+u?gyd zYnvnOnIr8r{Ps>lX%9m4dNS`QXVCCl$FYDlMj{{rS&;iE_RtRsj&cUgx0@s2EEZ5o zm0ng%odX^K5IV#6;GnWq`2Y}67li+3CLn^0O=A~0x2)uTWDYg))H8<&-vb0r;`XNj y&p@W(w`7qa)Kj!D07Rr3LY6WsZB&=+U92zte|yLAr2}IC0000 + + + + diff --git a/editor/icons/icon_check_button.png b/editor/icons/icon_check_button.png deleted file mode 100644 index 968188f43d4c4eb9bc2e5c4556a3319f3bbf5bad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 283 zcmV+$0p$LPP)_sMoUaH)X5u6Tk(s3Hlr0Sz|~2T>JP2MCJpK zPnmnw)>J!%#z_N2$$3Gx_t2KQPD^#2mIBtF0peI4jsY^!#pOvF4vNi7Oz9@KkUD@) zSNSs`4)6e!k?GuDmtrC>(JkyCdg3ftR&;3gAWq73U#zP23eB?y=;zu;ZA}%_3JAU! h0}+-lbIP!vp9l8|Mj)msxLp7M002ovPDHLkV1kzKcKQGS diff --git a/editor/icons/icon_check_button.svg b/editor/icons/icon_check_button.svg new file mode 100644 index 0000000000..c6e0aa99c9 --- /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 d3442930bb98990c01dd87aa94feb9c72e9c79f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 377 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHiQ(*=8Mf5NN%B**{f?p|GfT0+Bq zy*Rnj*!$flcMmJ>GF(|4Mm_{dt@H TW1cJp1`>m(tDnm{r-UW|hK-hy diff --git a/editor/icons/icon_checkerboard.png b/editor/icons/icon_checkerboard.png deleted file mode 100644 index 5f658c765ea0a147b1c50665822adcc067de286c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1SD0tpLGH$&H|6fVg?3oArNM~bhqvgP>{XE z)7O>#0joH_lJS`a!+M~QY-UJAiF1B#Zfaf$kjuc}T$GwvlA5AWo>`Ki;O^-gkfN8$ z4iqo;ba4#HxcBzvLCymP9IO|%e0f*#&b~>ygpE5l=+nQ*7Irz2{xdRjU0hc0TNU@V zzHdHA7X&24t-Jc|cV4|R3rvLJ!ymbb-2LC>;Q|al-pPHCH*kUr+-Az#wo7b>f<|}< ONX*mK&t;ucLK6Vz<3{ZO diff --git a/editor/icons/icon_circle_shape_2d.png b/editor/icons/icon_circle_shape_2d.png deleted file mode 100644 index 7865ed3dbe17bee4a1b39b9a6f80ec49fe6097d0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 425 zcmV;a0apHrP)IOPV=mB)#IA#nypYLeg8pWLevAo&V<2U) zSF9`lX#=4aWKF}#+HE^Fz^iJ_7e

``jYMB!gqnV2B67UC&4p}MhG`; zfue|z$3iE8L$}c;9{UfGqOZ6`cC8y>&j#7yIu`g^LjZ02p<@i zs5n@N+0CpSeiD3;>;MBXOEeIL7W_>BP!2TsB<9_;5!b!|>PhhZjNQflpuf}`e#UiJ TMA&sg00000NkvXXu0mjfZNa|H diff --git a/editor/icons/icon_circle_shape_2d.svg b/editor/icons/icon_circle_shape_2d.svg new file mode 100644 index 0000000000..bfe5aec81a --- /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 5faff250d7e1bdcc74bd8ece5c75d8c5468ecdd6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Zo-U3d z7QM*{3j_=vO{)0t;9z~uBQ7p3jjD(bnrb&$`Q>bW@NaI65MRJh6m!UB6t28=&b7p00i_>zopr09d#) A9smFU diff --git a/editor/icons/icon_class_list.svg b/editor/icons/icon_class_list.svg new file mode 100644 index 0000000000..1f2b37bd25 --- /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 795756dff0ce16b00c43d583dc9752f681b8f24f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Y)RhkELuf?qQl i-lSY{yTZh@k$HhffZ4pJ-7-KIGkCiCxvXY8O4&t0EjWL6W zY*NSIihknC&!8$IHxGyDEy}4(Nav;9;3by2V<%`rL93JOkGugqZeJ^{TGx zw=7^EA|h5*Bhco;SwI5Wib%UCP}Ph5@Q#C@N<^~Dz5$Xew5n=>C*TCQPsL^d8Htx6 zgkDu2fwLS$4uw-;x!0+x>UHM?#+Vxs>3}iD*r&pprg@*|`4$*~Q&sJ=qJHz0|Gqu| Xy)2XL3*}F-00000NkvXXu0mjfjFpra diff --git a/editor/icons/icon_close.svg b/editor/icons/icon_close.svg new file mode 100644 index 0000000000..f797070e16 --- /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 cb519691e579992949cdd07e8f0a9988c5531a57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmV;20eJq2P);!-_cIM<|L9#6?iifA-)HxPps!*H4)1Kt^Y$yriXfraxc< zO-RyJB$WVrWo_Heb3dw8rP?e9lRR#kh9ocYk8Rt|NIo`ALja4sCOMmb7y!&v^+rTK z0SqLc&FmGx7C=?kwM+=SgG)1ePdQaxl059X?j_5eh{#urv7dC{Bv)p(Drw~4?-=9H zL<0bbG4>*|R@FOC(H~UxTtqfGctYSdkUYrZ)a4?Pp-@aCR3x8Vu+j*(BC<~N?{whc zha9Y`XR3OiVl!KfS6o`-7C_~KZ2*wuwVAyE=mE_0HSQcz2;s=Vr>^#|3;Us}O8`{} lA(SrlpCtEVeR97)_6PQErw=8;jMxAG002ovPDHLkV1jiHpcw!F diff --git a/editor/icons/icon_collapse.png b/editor/icons/icon_collapse.png deleted file mode 100644 index ad2442183d5a141c095a440cdf3505aaef930d39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_$JzX3_ zEPCHg*v)&$LBJ(_Vzt8E%dH{}F)V_DlD0bqm`-$L9Ok^tVCbH}+j)M|8TV}pj!BFD z?!EYqsXmg=Ba7?BJ2r;R{^mbc9h@S(>*hI!OKb;9S!#?o=lZR=uNcX6gK@_G2K`Cb z6k9F_H(yg>xWOF36IFWIWVJ-{U41*7i+9g!E)_bUcwI$SRk!^^w5OIwn2NUN(Toq@ aOW4;WnJ38kdp-v`lfl!~&t;ucLK6U&%T_1= diff --git a/editor/icons/icon_collapse.svg b/editor/icons/icon_collapse.svg new file mode 100644 index 0000000000..ace258a38a --- /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 0dfbc8b175ae9354220d624bdcd4b3237ee73ca8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 338 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmPqrzkIj<;_=|6+of;o-U3d7QJsTI%Y9B3ba1VSK(H5 z)E79xSR`8hD)f~=@lwkpIjrJBCs>87+BjyOJoHXM*wks8rbfo9*MGn6>i)li?Rnri z?~700^fQX8`Ci`h*KA{Mv|wR(`4{t@c87S(W}h`Zm;U2G`o`$QJKNrxCP|2YXT6Xt zFZg-NrN~e(PnRPO9XZbksYiIN!Wv!(roVf*Y;cQa*CMzOz}Iug&m~ zNPonY(!1A7?O e_y0Wq!Q?g3@6P&3QH(&ZGI+ZBxvX{;{ zj-|8bp46M5z%kXhzV27u z@+67-A?^CFzq7gCZdJ%XZ0OS!-t_lnlVryP*W5Ggf449@o-tT?I?s^lP~pZ^=iGLi zDxBrm>3N}}zj8-plVgCd@rlUSYK~j8Z10E)oC%t7=xE-Q@&|m5$)5j1OqHHU#)N9$ z`uvT-A>XWU`W1!xHyjEj%O3|lj4mzwyt1BU=WCY0(e0m!*XP{lehs>gTe~ HDWM4fX2Wm~ diff --git a/editor/icons/icon_collision_2d.png b/editor/icons/icon_collision_2d.png deleted file mode 100644 index b372749cb0e59a9c58f3e0724481b370a837b110..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`VJY5_^ zEP9t-I>^Q7C~@H9fAcMtHx@UW2i%dBnPQ<(*MFTIJsfMD6rCdrx{t?o@-HNemZN8y@|hb-lcMfBE4v{Mvm2 z93}#OfoqO2oO-t5eZ;QGi9d5#Q;xbF5RqnN-z${Ca6ID0lH}FeGt`7TCQNK&4$#lo z_WA7AS==-D?szYGnQ5_LrKX&tlwsV#mWaKMVxK;K7JL06k9psO3Qm*IO&hjz*$eD^ dnpbyL*u*Pt(aFBO)j*#yc)I$ztaD0e0sy{QbD01D diff --git a/editor/icons/icon_collision_2d.svg b/editor/icons/icon_collision_2d.svg new file mode 100644 index 0000000000..9d90a66c6f --- /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 738f80c3f36bc3bb3cd6b67e799dd8c8bf6caa48..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^vJY5_^ zEP9tt^37s$6mW|V-9CXkWuo+sj@xUTCOil#Vo%jm$doki_K7>*f2olRf9R*Y`7C;RX;J%3AJyWKA&y2 ip6|QtlPk@Gr)#%ONNz|uxBn*4e+-_kelF{r5}E*A{doNV diff --git a/editor/icons/icon_collision_polygon.svg b/editor/icons/icon_collision_polygon.svg new file mode 100644 index 0000000000..1c5e0be781 --- /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 b372749cb0e59a9c58f3e0724481b370a837b110..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`VJY5_^ zEP9t-I>^Q7C~@H9fAcMtHx@UW2i%dBnPQ<(*MFTIJsfMD6rCdrx{t?o@-HNemZN8y@|hb-lcMfBE4v{Mvm2 z93}#OfoqO2oO-t5eZ;QGi9d5#Q;xbF5RqnN-z${Ca6ID0lH}FeGt`7TCQNK&4$#lo z_WA7AS==-D?szYGnQ5_LrKX&tlwsV#mWaKMVxK;K7JL06k9psO3Qm*IO&hjz*$eD^ dnpbyL*u*Pt(aFBO)j*#yc)I$ztaD0e0sy{QbD01D diff --git a/editor/icons/icon_collision_shape.png b/editor/icons/icon_collision_shape.png deleted file mode 100644 index 7bcd61c719a52c794d86c80fe70905c15f147e07..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_qJzX3_ zEP9VlHsot^5OBTEV7vT-#IfiLGX#V!Td!4hE?uzjrt^&ob}9dZ*A7I?Fx6&sZtC2B z`{e)nXYbD)@;VU`xVHEAw!7UYI2}UQ7tXpiDfMr7vqMGLjh+tv(7ipqDSj_l8G=jm zr!agucURzMmP1FAUsmqliw;X(&9!E-W_)p~s3P^k;h1X$K`vSiOEi@B9K4;v=v22Q z#H9Vdw93PU#%l2;ox;L*7zI|cJ)d=MM$Fn?=frd$JB#Z-#6Qfs+WlpA=)BXro*1t^ ZCY&X|PO^p}bso@L44$rjF6*2UngF+kc9j4C diff --git a/editor/icons/icon_collision_shape.svg b/editor/icons/icon_collision_shape.svg new file mode 100644 index 0000000000..7975b288f5 --- /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 afc13269592d989eeef30257ff19d684efdcf3e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_Uo-U3d z7QM*{3j_>|3=9l(?tc5Jz^uI3)YIz!e|xF7N3+kf7`C~b^{9%NaCDJvWyFTnZmizh z>whvQ8&AwJmXa_{xWd53wq;7koI@VP2mk+f_uMv1#`XpSLtTbQ&S!~lsX$8@JYD@< J);T3K0RRj(IKuz{ diff --git a/editor/icons/icon_collision_shape_2d.svg b/editor/icons/icon_collision_shape_2d.svg new file mode 100644 index 0000000000..b5fd8c7105 --- /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 589a6d3ffac25e8128af78e6184e1dfdb93cac81..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 582 zcmV-M0=fN(P)ksX$zhx)fXY)R)HN~dgT+>wULl63h1(42|t$WGn#-D*gY zqXVpJH>7vR%sm{H#y6WGNeuM1-|W6ZSkh&A$Qw-Zo+K^v?Q9>pM`#pC11mr?zzUGso4G6g0*n{` U5;M2M4FCWD07*qoM6N<$f@dB5^Z)<= diff --git a/editor/icons/icon_color.svg b/editor/icons/icon_color.svg new file mode 100644 index 0000000000..7e2d9216f3 --- /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 15679a9558a8066a302b30c6b993991535ee455b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 416 zcmV;R0bl-!P)#+kouGwS z>j#M72Uv?XT8N;fg{5F&uyC^PjYL5qA0TYW6qNp)?Qj-Xa$a1>2bFQ4OouvQ(h-eMKi>kgl=gMIi-l^)owf1}* zAo+<)09Nz){0)G4Ro%1JUW~1t0918`h^_%V0ys3rJp3g*5&ZxtRJ;DIndP_u0000< KMNUMnLSTYW-nQca diff --git a/editor/icons/icon_color_pick.svg b/editor/icons/icon_color_pick.svg new file mode 100644 index 0000000000..893afb4eb4 --- /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 6d1114054a596e99db1ac58d62124ab187326399..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 432 zcmV;h0Z;ykP)sYA6NMd+RUr8u-vo|dpDZV^);@tLDAEt~e^0dl zV9E&sCw(T$Qi-Ubn2CyljeKrMg>h90fcP_!(a`bs$_h5}xgkUrU)1!3u9p#IvWR2- ztY)iz6nuq8+`)@X9JQ$E0>~T?E7DoWo5qrYlCaSul$pTs=D~IwL+@~{fBDwtD}0|z zp)9LvU+AXKGq+KbCO8&lcG&gTOSP51z(v7koa?YgqL12Z`Q6rpyd0v;1a4~UCm7zp z${Kn=uj-uY>o?dQp-fkTivo}~pzH4b@gO16tRhpP<8N1jp?C#p0QSM0s!A%X@qPvW a%e(?`hoxNW9s%C~0000 + + + + diff --git a/editor/icons/icon_color_picker_button.png b/editor/icons/icon_color_picker_button.png deleted file mode 100644 index a399128773ee5ba1da842d6ae8c56f0c2fc9b769..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 548 zcmV+<0^9wGP);;v@({rFAO^E)HsSkfP=iO73vz z;-C)Nse@Zb@z3HWm6E&a-K8BmwE;!jIXv8B{A=@ZRdApj{E+YCsl$;`0JiEB`$AE=T@$oEUMbPI8HIRpZ)w%xY z+Rl&#;HR2}~|Tk62ruPg72;HU92a31t2$Wax!;pK}@`T@JO mvxS4eGME>tQuRg0000 + + + + + + diff --git a/editor/icons/icon_color_ramp.png b/editor/icons/icon_color_ramp.png deleted file mode 100644 index 03d19a56bbb7fc457c0532a30882b9c12dde84b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_WJzX3_ zEP9g@Bs4zkR#@H$0-Z8v+Kx$q7kv!u-wwOEJx6_)~=Ge|-?bn*bYf)#py0LNMhO{+o zGJ9rUJ>bxCHiGxYU!&%X*@iqfepxPVWc1H?Y?|=*e-9fQ(?VZk1_rhF2JB@%Il4gS OF?hQAxvX + + + + + + + + + + diff --git a/editor/icons/icon_color_rect.png b/editor/icons/icon_color_rect.png deleted file mode 100644 index 4199a8904901ba1d707cf7d3bd28d0e5f464a3a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_0JzX3_ zEP9g@76=#^85kJo)b4*~Z#io*tFy#RjZ#MLU7bfVoXQNjcRl&v#I)l{d|KQ6zf=F8 z-z%PG(%!k%(9dBb%X0Azna9{RNI9%YV`I~a`*HfrhiWI$$2Y$_@rX&Rs^^%m@S=$` zv?u*O=ilS2e%?OmmE6Sk;Od|GGp8 + + + + + + + + + + diff --git a/editor/icons/icon_concave_polygon_shape.png b/editor/icons/icon_concave_polygon_shape.png deleted file mode 100644 index dc1ff1d3881669629c38e10d8ce3e3e190bf5ca8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 449 zcmV;y0Y3hTP)Mz#kzG}nj%0`tqyh9YsimUO(=Zm>*VY*fYu1OpZXz-jjn>!Gn{8V0A~*@njz*JLYTG- zNB0`i9)Y|K2e-NhKT?W<5-dYWmHSs!UyUT*5F{4({@d@HBS<+gdofp1 + + + + + + + + + + + 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 2e87eea5aa7adc57feb26213bd638d4dd79dec87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmV-H0lxl;P)F!cY`O&rK}t1{!b&9mH9NmV#OY-A73Wu0~KdVrWWJ zD0b>B19za<4HRN>JBje}V~Tdr3vcj#&Uepy5B^vJ@Eqt$;Rc)WVkrA2zz@|SWhwAI zAIZH1pwI<8QX)T8=NC8vyqv)*opCwv@${nYGCT?NmXtTZHP_1lF~Xgd@oJj*p*jh? z105hXftESBf?fg<(8*1D*BOW8*jd?F@R$kPT7&6GzOWgXCWX!|9%f_NHC=(lQ1;mL zb5%DVF*g0WAF2ctLWDKK`V?GwgGvZ^r}i5S&Z++oD7=9ms9t0s@OdtH2~%4?vqMxf Tq5uQ500000NkvXXu0mjfy6u8- 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 0000000000..3264e69ffc --- /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 bbf93f2f71f11646e1ed0b7622e904054a57e6a8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 497 zcmV?!V$|Sj-l;wLM7;e{M z-1`f_?RLFvG(H$E1K%wDlHCNbbRfG9%mH7+?CdqQT0ce>Y^!KAcB*55x#MGis-LT# zmx_LW+qOmkWw-kRSR8I^7ilR-BY+?^k(Q9&R-;=*mc1NV7<4)VK?-c7F}6m5b~*+~ zV;or>tgUTGdSb|HG1k)YENp+C2>IP)>WTElV>bfGvuq3d;V?~qx717R*UZd(;fkQ)Xz(ax@ nI0QC>J)f?w-k0Pvkxi>Vm0GVk7q?V500000NkvXXu0mjfoPy;h diff --git a/editor/icons/icon_cone_twist_joint.svg b/editor/icons/icon_cone_twist_joint.svg new file mode 100644 index 0000000000..c9d92d6537 --- /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 ffadb9d9077e3feac07409e64cedd4c11d2bf517..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 343 zcmV-d0jU0oP)*zuDGdXh}eD{1F721iK*U1zArB4sni=2wt7nz-Jj82=iIDg$O`R9!;|&K~Fm?_+4-NmTLu*re+dZsZO^E;~xd8 pnu^F3Gbg>^z{cWC+A6CHz5(4fTEa#pWA6X}002ovPDHLkV1ku!lqLWG diff --git a/editor/icons/icon_confirmation_dialog.svg b/editor/icons/icon_confirmation_dialog.svg new file mode 100644 index 0000000000..491a3bf1f3 --- /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 0963063bed7bac9ab654e7f3b1d25606473a3f38..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmV;u0Yd(XP)@>S>;rw^i-jPB-YFVU=Mh0W*>tf_@Sz={wV>#U@!=xD9QoP%-alGfSxIv8qO@YMoB!WNU(z4!(=Xhsk7855q9(cDn~=b`GS?tn9sS zEOs_^@Yu{wQ>oN-uh+{u=bFG901>IRTCLPtgIq56bUYsKm{}S42^43u*{629op#Qh z0c~J6lgYf;m>{3e-+AvFBJu?I1r&oIsEEkS%-+Y{y!^vJRiCSBUsZdmT5`_a0M%GN z1V|>6moa~|F2P$M3p@~!cL3Arv>9s!fYE5wjd^xkiA#iGcne$s-xlY^{OjV)@*7pP n1k^>u=JR>Qdw;Rb{QlrKVzQM~zH4+B00000NkvXXu0mjfxRuU@ diff --git a/editor/icons/icon_connect.svg b/editor/icons/icon_connect.svg new file mode 100644 index 0000000000..43ec84646c --- /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 76e036e5bbb6744b21c65d2d4768a24fd5329a39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^LJzX3_ zEPBsQ-Ys~@K)_|bMEVqlgI}HHQ}md*6c+Ek>cDx + + + + diff --git a/editor/icons/icon_console.png b/editor/icons/icon_console.png deleted file mode 100644 index 7dc7407ef766f2689c6af7d817ed1d4e78b4cad6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 640 zcmV-`0)PF9P)e zSad^gZEa<4bO1wgWnpw>WFU8GbZ8()Nlj2!fese{00HPpL_t(I%cYaCN@GD3hQBkJ za0QW|vMAWxLdYvDx~=W@`vm4G@&>j(Lu|J8qUF|sG!_yeRSE@TaY^o-duEP>+>p3z zu{bacGyMNK{~Z1wzPRM(=H^?T=ReFW{TETh&1SPdURA#@m&@OekB>O#wm@cvh+t-0 zZz(1E{XVMt(}xgjI-PQLbwx^P4R+3vQfj-ciDpI!f#GmSmSyHuRbq_fdCt+%5ho`n zR8>U?0p}d^`JBmQvM#)Ns;c-9f;i`RetxFg?Gi%3%y@l$C4|6Yv7o9dM1)SKLrRIJ zX-Fv%LJ%Kglvd{DaUp=laoi~t`BvMi%4 zORlf4i7`@^B~?}7oMU%)7gfc3kBA^50Hl;YzM!h&z31%gjDEk*{{BA8<&v^2+1c4) zu~_i(^1}J~IYm)W6vcX=swzIlNQ{yD`+IJ0Z#U&(X6vDiMkAbabUGaXTAo)`RF&0g zMYr3Ncixn+o6{{L&Ldh0(gC6tZuL0 zRS?FV{?(!UXMj5cTY`wMXp{83g&iq!n|>$#emuAObKDyLpVl+B*KYc2d-u?###L$# i=S!_5eLvY)88GTIhYM6qIlKpGIfJLGpUXO@geCxEr$ + + + + diff --git a/editor/icons/icon_control.png b/editor/icons/icon_control.png deleted file mode 100644 index 0d2a82ad0ed1df990838560fcb6d770a05252c8c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 414 zcmV;P0b%}$P)z zhngdyhzWuiO~B!h5dI|S1xM(D7=vxSh_*?$vLNB8o0oUax#ztDe+?Nv2s9{$t@fTO zTOup~sPbS${BpTeTa&fVkpjoB^%=)97Yd6b3~zh=XnlLyeMt{Y);U9Nim=(~Ipdw4 zGcK@!@(fgL%QONFiYd=dhp^S&BOyB`s<;#GTgLg^Z~50~@eZhjVS5KS8rT5D0}x?< zhzx*N_CiFf$=+Tr0_YsTN7uO;kss}UUd99SKM4Gef)sMUmW}WPP_nzrqXc@!ti)G& z%n1mb0H|`{xBSUr^6~rGlq!b+MEDtAjHEy}Km}+bT1_(>Yiu + + + + 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 166f122acea1d96ebc43522f8c56b71589ac3c4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt`Eo-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)BnzYE@ 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 0000000000..9d1219078e --- /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 238f33a0981603fb4e6ac6e15805cd7b7b2f4f04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt`Eo-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)BnzYE@?9$DCqzI 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 0000000000..fc8e7adb3e --- /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 ff8b6a017754240e3ef953e1623b291cabebdc81..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt`Eo-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)BnzYE@t6o*S7%ZE{oUP?LZOpV d5}EU&827&CN}n6<-U&2@!PC{xWt~$(698@_D#HK( 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 0000000000..9a9bc0f2ec --- /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 309907767ebc90b8b8e1ab9fd1597973e43e29cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt^Oo-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)BnzYE@s9G7+S e3hx$o@-lFialP;eR`>xlhr!d;&t;ucLK6UEJSk)V 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 0000000000..111ea52be7 --- /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 964f132ac39ab4fd30619a48fc87e2604e898252..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt`6o-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)BnzYE@7Ry| kd0jaRX3HzQY*7OmTfoD`^H#!J5ojEPr>mdKI;Vst0O^n{@Bjb+ diff --git a/editor/icons/icon_control_align_center.svg b/editor/icons/icon_control_align_center.svg new file mode 100644 index 0000000000..5dd012c389 --- /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 704b4f504f98c9c44cb95e3085b6946e57bae728..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_do-U3d z7QM*{60FSp5{W(8*Vp|$zRbbfyIXL!1&=}CtENWt1Q8yf8LSm79BuV2qCiayp00i_ I>zopr0C{8|MgRZ+ 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 0000000000..38542419cf --- /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 bd7111aec332f4de049ccde1077a3133ee47aeac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^yo-U3d z7QM*{60FSp5}cYl%HH0p&v_IT71hH71U^%CB|PAjU~Oh(U|5>T!oi%mAseWR!PC{x JWt~$(699ahA4C8E 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 0000000000..371436a6ad --- /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 75c2d8573f1ff95cd6d0e3780e75fc474ae42e04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt^mo-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)BnzYE@ + + + + + + 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 92a13144cbf7b887f8b156e462c6de5b3a8eebbc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt@zo-U3d z8WWS}SQIKTYc_PMT;<{6(GfUx^{S{|NJK)-E3@ RB?8pT;OXk;vd$@?2>>Q?Axr=O 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 0000000000..7020a8a406 --- /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 a85903543950b7d448579b97d5afb56764a955f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt`6o-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)BnzYE@ + + + + + + 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 b6fef9569e0fb0fec38b32d368c8c956822ce890..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt_Jo-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)8Fl>F?jaAHKP}yL@u;;T3HY7d1|Nwo;U#T9~u_ T)@4&mpk@Y7S3j3^P6 + + + + + + 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 5cdd6cd2fc1c46d1c5bdad8d9e0c8a80cbfd68c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt^mo-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)Cz3;lF=%7P~iW5IFbk(o~)m;+5?@O1TaS?83{1OWY~E=T|X 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 0000000000..4b13ab28b9 --- /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 558e3f08cbd4c510191e140980c8019982d89820..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt_(o-U3d z8WWS}SQIKTYc_PMT;<{6(GfUx^{S{|NJKE~|)z4*}Q$iB}J+&va 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 0000000000..cd06aaad82 --- /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 5ca294de489e1172c06cc3e07d44e9675d42ce5e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt^mo-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)8Fl>F?jaAHKP}yL@so^IOvm52ows=(KF!yJydf lM@s}(GD`7JFj&^f%fM64^+Hh9ZY$6<22WQ%mvv4FO#n#HFH!&i 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 0000000000..3bbbb89eca --- /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 ec089d017432f32b450e7eec97dff8dd6fd3e988..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt_(o-U3d z8WWS}SQIKTYc_PMT;<{6(GfUx_3G3Gm+tN^pPbD6*3{u|KtzN`z{=^<#bf7~D49Au fW)wPRvXPM?@jv^Ea`(a#pg|0tu6{1-oD!M<)iWx) 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 0000000000..d704d5cc81 --- /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 45552740bfce803045963f05a5ac60ee91b0d980..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt@zo-U3d z8WWS}SQIKTYc_PMT;<{6(GfUx_3G3Gm+tN^pPYPnMcc$hjI*XGylhbensG&#og*sw R`&pn~22WQ%mvv4FO#s8HCL;g< diff --git a/editor/icons/icon_control_align_wide.svg b/editor/icons/icon_control_align_wide.svg new file mode 100644 index 0000000000..683504128c --- /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 f298b22f5f2794635610d3ef33b7f7c9ff15bbb3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt`6o-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)BnzYE@ + + + + + + diff --git a/editor/icons/icon_control_vcenter_wide.png b/editor/icons/icon_control_vcenter_wide.png deleted file mode 100644 index b6c90646fbcf2289f717e089063069daae3483ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt_po-U3d z8WWS}SQIKTYc_PMT;<{6(GkeHy)Cz3;lF=%7P~iW5IFbk({oXaIw!tDnm{r-UW|kYgxG diff --git a/editor/icons/icon_control_vcenter_wide.svg b/editor/icons/icon_control_vcenter_wide.svg new file mode 100644 index 0000000000..892bfcc50d --- /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 4dfc9acc9e96ab53212b10dcdb13bf7356010e73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmV;F0c-w=P);eML5Y1xy@jzS*XvN>RWDK=C3$#;%s+&IAMivU@sb3!BXrxjt2}-dbD$c@tm( zB%>UwbczSWb<4Us5Xhwi&=vTd<;vn;ir y9rvYBRVM+ZmdCmeUD{Rv0000p5 diff --git a/editor/icons/icon_convex_polygon_shape.svg b/editor/icons/icon_convex_polygon_shape.svg new file mode 100644 index 0000000000..143780da53 --- /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 e449c6930fae286111f8215545eeaec0c7e088e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmV+^0oMMBP)IWF2cLiDGI@1vUFSB!4WiVdX;fM%%pl%CfT^~ vO}75RF8O~!t6B{67 + + + + diff --git a/editor/icons/icon_copy_node_path.png b/editor/icons/icon_copy_node_path.png deleted file mode 100644 index 877bb81d81459e989c5e555c59c6b723336caec5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`3JY5_^ zEP9tt*eH0&K*V`|G0!5_jG&D^yJT3;F!Rc3g!0XBSbSlLft_`s!`bcsA~)&$5N15^ zjoBjaPVc0oeQ&1iRArOMjsN^qQFW4^>e9EFmVDbLmYf!Tb8v#%&!Z1cFS+_4)~In! zvy{r*;CUrMehIs`+uqzay`t-u__5SuT + + + + + 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 45df9b1e252020b4ad5655c800134a4ac119cbb3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 349 zcmV-j0iyniP)K~y-6#gVZ}#6S>+zuC38-a-WfOB&I7LwT0DTc`x8Q z2v!zXT3A|GYjX&h!HWnMc4;KsT6h5shcSoXU+oSv`~CAT{I{g7A>0u0w5y0z>W9*9Kd^j2dn`b08UjmMdSszm<~Jv z2O`o})gEvuBG)m-v8wixB)N|h?l28vk^m|2|nn}4MbNqcR15WBOB00000NkvXXu0mjf + + + + + + + diff --git a/editor/icons/icon_cube_grid_map.png b/editor/icons/icon_cube_grid_map.png deleted file mode 100644 index fe1322269125c176f19be0dde99628f29ac3a806..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 607 zcmV-l0-*hgP)Px#24YJ`L;&Xixd6+hj(!&a000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igh? z0~jSKnfML>00G}gL_t(I%iWVdXp>LGD5VQL3)@(g36dH<#~{(Y*w zKSiuzet-GCt1d3L`lvD-#N#PnsXQ>F60B)Dp;7Ivi#K&?RGkGgx3)Rm-k+KRZ~*Tv z-9uWM)77QYQvqLHDsBQ+P;IF#l~ypV`Q_3V^R;#2+}GN-<@JrlF@W8n{aGm#DAWV?Fnl0bH#b{w+>34+9LFlKV$lZMXc!aD%d*}=AaE<6j6KYyb; z-#eIG)z^N3`1;KCoeno_s<#j}i?~ix{}?B2AX_n;Kx7YKsLl|$!Yc2MXBV??AYG0=d+f|tAnG=VqhYG)#Di$0%C{> tCWx7tTOG+Ccy!_RUtRBHy6+$Op&y<8DoX002ovPDHLkV1nKa4BY?# diff --git a/editor/icons/icon_cube_map.png b/editor/icons/icon_cube_map.png deleted file mode 100644 index 9c4c6fdc9f371487ce4a986bb5780c2c31c14faa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`Eo-U3d z7QM*{5*Y_N^ez;=_+Ot=*DI^sCY5r)WhFP;J%(x1{!0h`iMe~LYZa68KcmuEgAZ&y d%bE`|Fyt*03}!UgdlP63gQu&X%Q~loCICp}Ef4?z diff --git a/editor/icons/icon_cube_map.svg b/editor/icons/icon_cube_map.svg new file mode 100644 index 0000000000..8afc2e42e9 --- /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 a52d7a1823d56cf1106d04232c186a0903a4d21d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 447 zcmV;w0YLtVP)3u29^ECszo0qIjvs;07$ZGtv+xA+^E*-FB+Et^14UeFiVsU zkGdi9`XXQq6o`H1LFYURDpmR>_GoX-oCX3X|F&w`HB1r86+D+bHLG@`dt3!43 pgVenHKdZdd?mryU%DB%t{{=gbrrp5puND9R002ovPDHLkV1l!q$aMe! diff --git a/editor/icons/icon_cube_mesh.svg b/editor/icons/icon_cube_mesh.svg new file mode 100644 index 0000000000..0ed3e5e12f --- /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 a261e00f66fcc8a34c0b5ae5eba83f0af5f607c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 339 zcmV-Z0j&OsP)>8NWm)zljQ}KFwg$u)4}mS< z+BtXE3gEpT07v!nWSRdJzt7QJ!J^=OhT^;BPks|;A002ovPDHLkV1g@SkC*@e diff --git a/editor/icons/icon_curve.svg b/editor/icons/icon_curve.svg new file mode 100644 index 0000000000..244b7d5678 --- /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 ce46dcaad4b5ae069a79aeeb9593f50847e380c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmV-c0jd6pP)qDcJfTmLe8n zji z?3~+K7;4V*d>^<5Mv|s=wMnmoq9`_-rWpf1a4YFX(xaJ8q9}R?=yf3JtZlw<&Yk|G z@dg0908P_ec4>M6z$$>5JvaH0FLMFR?4&*K`vB8_kY(ATnJoibk`5&u0H0=dJ_yM3`~lehHXUFh>Bu>k%;G@6 o8&CpIz+F{US8*Ko?*A|G1^&ulA$F*Xz5oCK07*qoM6N<$f-TOFx&QzG diff --git a/editor/icons/icon_curve_2d.svg b/editor/icons/icon_curve_2d.svg new file mode 100644 index 0000000000..3172387555 --- /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 561837e4de74b171be49dc4fa6f1a613fe35ea79..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmV-W0k8gvP)4!K~y-6wNgP!13?h1n%x)pfZ4rB@(964cr%cH1iTs4R|q-iH$()# zkV6jk^wBREQ(k7nux^YjTBo6>ySlo%f&YM{Dy1|xv$dH${gfLH6-rtGm>z4!To~N_ zLee#WN&b5yc^6~6C%HXDPy;|p=^4OTCfkG%mNCW$lAk?=wYy(RT9ABin&!MdCb1jM z-DhTYMe;PqrsW8gyU%vJU74^6AuIu)AMf66+mgLbLtb>)dy-Q67$oRRmb3r>lDDNN zW~PqdHx_(@nW-bGbKn)g3CWuw_Xm{iW91=DB(2PBol=@hs>;INfkDy>Fmem|P98~a iM{S|J%u!qTQ+xrYljG;DY~hpu0000 + + + + diff --git a/editor/icons/icon_curve_close.png b/editor/icons/icon_curve_close.png deleted file mode 100644 index 9a660152521e08f544e57999f1627772f5e75c28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 351 zcmV-l0igbgP)~jw zSgPuxuIqUihO=g_Kw^x!?+aL9A3#-CS(e=aJ56sI1cC2)p5M@|F=o2ebL4$m6M2iG z=y+YHX*v>-7hpVi0H7?(OXpk#SXE8hvzyn0)%l|t1B>>& + + + + + + + + + + diff --git a/editor/icons/icon_curve_constant.png b/editor/icons/icon_curve_constant.png deleted file mode 100644 index 510a01c7ec344f5085649ebd892cbc90b83c60a8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v_cxPZ!4! zjfu$#5{(TL8yg!R9&BcBmz0pm;aFk2Xu*Pn(=OHKyvz&?Nsg>6PH*4r18QOLboFyt I=akR{09nK!wEzGB diff --git a/editor/icons/icon_curve_constant.svg b/editor/icons/icon_curve_constant.svg new file mode 100644 index 0000000000..153d023dd6 --- /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 b07820a5cd6c258921c8d6ae1faa1b2f9e75d2f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 375 zcmV--0f_#IP)1Z7Do#ORffvvQ zj$mbo1&1Nw4=$ZCV$3Fz#eXaWv%3KzcE0ZA&AhzK8~FE-G`Z11Q=xAVIf)N%&tAeY zFjLiOk|g6wrE(7R0R`ID+F>DQ*aNB_CE9-ml@tKH}HVt=mpj{p4Mg#AC1RVW2!D6v+K@(sbnFXD^?i&9i VYOqle@>u`?002ovPDHLkV1iQeoGSnT diff --git a/editor/icons/icon_curve_create.svg b/editor/icons/icon_curve_create.svg new file mode 100644 index 0000000000..c26361bc9f --- /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 7d71af0a237c428040851a00bc589d7cf27f3653..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 412 zcmV;N0b~A&P)IXs-h3oJpoMr+aBSTwwR?-64$@nndnB>|;!3H6=XuI73^mqP0VMne;mKn#lD1`8g$Z{YCnO?o z0CxV&pj2m0fbfRl4FR|m6laCWWb#`?&H=OlxFn0y3`%w8JOj7sXt#2(`H`}1`*dDt zegw-kS|bB@6cjR%jv^(y>hctmo*Ruus@ZJ5th4*8M#phNN~w2}+qP|gt$m5sI^XN{ z2K|1&t+hT``vR@C3m`tGu4$TyWd;lX!Yc3^6yfXn-|++R>wkso4rnm|0000 + + + + + + + + diff --git a/editor/icons/icon_curve_delete.png b/editor/icons/icon_curve_delete.png deleted file mode 100644 index 108bfeac355c96011e22fb718d59c1d3b31c78ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 457 zcmV;)0XF`LP)8!Q3+TSrO z=nv4w{RycOu&~;HVG&qxSjQp|LIioB>^L`tPkH+ilRBrGGw0sR;T-tyA$6ihM|-GF zFhpqj^AVT;3XH6^7g^)r8SsvjSPjAH&dxdT2I%H_-cKpz z#+baCodEsi10n`h0L=aU_o65co~7Arwjv_eK)b$T>f~;H{q(WbdH@2dqq;U23?4+} z5V!$?Hgo{y^ZCB_{?luL{RyVQZ$)ISIi%z9wmSD>U7c&|c)Sgb7QFYHBJ!muip}~m z#!P`gj6(pjYzp*9X}IJd#^`~r_rCS=nNk1(utk + + + + + + + + diff --git a/editor/icons/icon_curve_edit.png b/editor/icons/icon_curve_edit.png deleted file mode 100644 index 51eb5833846113ec72dd62492db313e2adbdb692..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 488 zcmVP)VVZsjeaq8sZBsrBEohHpIT;&?xt%4Y>ME_q*SBzI*OD z@ZUpxQs2_Yszk;hGuPe5?8MOlaIC7GUaxl$hT#Gb0SZ)uAoy@?Ah3yWGgU}j?&bY) zeGg0k)7IKznx@tmWBc9+C}sjgFsc{lvvYG;DwP)hXmK2mipY21hF@cRayvMAHD=Dc zK%zp`*D94tS45rx9UxKFj1EA%-G0()wcZV#*cBL@!Lf);`WN+WZ316LPI>d0MvUtTB$`QETmys!o;5IOh^zx=)iJ2#Nq}J9A0G8Lbbor`)Dns_H&=lBTnU|VE4PjPQg?~k~uXcS? epZ*Q(7ykyI@|K|5UG&ia0000 + + + + + + + + diff --git a/editor/icons/icon_curve_in.png b/editor/icons/icon_curve_in.png deleted file mode 100644 index a809ee43d37d8c68b1990725db67ae29088f69e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}~9o-U3d z8WXopFyuNEAmDPJP5bRpz5fziFLjHXr^qR{Z`gV{Ib*u?6Q=*+imk1hQ}`SAi**X= z_&ChTicBj@WBHXhL^6MwF9AI+@J?+UPc#>g} z#;zW&HCtD%%4<|>DQMC6kIoJjwEU{K)9@Lag1%E|=;v*@;j4CuOKjeIR*4d}1#v%sj0|rl5KbLh*2~7YS C!C`m+ diff --git a/editor/icons/icon_curve_in.svg b/editor/icons/icon_curve_in.svg new file mode 100644 index 0000000000..69877bbd09 --- /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 88e07d48a7a22105fed4bd8ca1ddef14952899b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v~0wo-U3d z8WZRCZ}d8nAkeb^r~cLjbA2Pa_cXU=vP9o^viQKta?nqp+VO*|PR{#X)r`MI{&^Pf zjcALVEfV<8`ohYx^0XO|Ka{uh%d{;l{cin0q{4jjwp+^kO1_6D817#_X~*kb%;oiL zVuBwvUYtTfBtBZ;`18DISle?+kTz>Z{X6> za67YZ;uCA$+WYd)=E$pTJy0fdeEFmL;9g&sIi5@s!Ct4AW!ibSRW8*}m>XoZ{`If5 dD*wdyF@DbT@UrFUR|9&D!PC{xWt~$(697HLcijL0 diff --git a/editor/icons/icon_curve_in_out.svg b/editor/icons/icon_curve_in_out.svg new file mode 100644 index 0000000000..6e8bedd27d --- /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 80306b6e04bacaa9a422f3b49135df2acf126891..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}|_o-U3d z8WZPUFyvw~6mWZJo_0WZO(~P+)=gr9)%mNZR + + + + diff --git a/editor/icons/icon_curve_out.png b/editor/icons/icon_curve_out.png deleted file mode 100644 index aa05bc8f86ffb12c07ae1dcbac28bcd478338ac9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}}ko-U3d z8WX2ZG|W2`AmDO;oz8Sd%|#niPK$fwIdH1(WXya~+#aJW>%KrqeF0bakL>ci;0Z+; zJgyvSKE{`_?yYmPIy7-O` z{sh*9wE2^+9nd@fd7Vbr;iJzw0$ggg=kAtxGa*Q7b|iyxdHu>&S;f2s4CVE#ZU@RV zYS>iHR>kwTo@e-Q<@dY&2UrwNZ+a(I@awR+L*z93?G3w2Ss2bciHU6&aRd5;!PC{x JWt~$(699%1XLtYr diff --git a/editor/icons/icon_curve_out.svg b/editor/icons/icon_curve_out.svg new file mode 100644 index 0000000000..d74c0c6689 --- /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 7be46fc7794c006f1782bd8d9936d29f7c84bbee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}~-o-U3d z8WXo(Sm?zXC~)lK{~mSeoN1enZ&;u3iLLqSb^#W7hl2@1NAx(p>#kutY&N^Hx&3Z} z$d-9?H_p+HdALr&BDd|n!D06QftJtpp5I|?x&OhU&-${7EW>;TtMbPJ?GCe{#>=TTb`C-&Slf7PMsi_UeaksDE+~f3|pAqJ`P!>V)lmad&GY zy>@2b{+9f7$)nbpwv5s5?lE51TNe*%9jXn_*Rzar=IK k27LzK%X`j0w7)9e`OkO#)DLdQfF5M + + + + diff --git a/editor/icons/icon_curve_texture.png b/editor/icons/icon_curve_texture.png deleted file mode 100644 index bc5c7f6bf16a6c4b12eb40ce6aca4cb494887c65..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmV;20eJq2P)0C$8mfL^ne}UE(n75EH86~k|fFY zcs%wil}gn)w<{t|;1~$9vg_e+c;09<(uD?t!QgTBH4E_UoVyIe@OC+|yo2}bd;=7C la?afcLC_PC=?a0r;~V4~iEPoWP$2*S002ovPDHLkV1hpvrN96H diff --git a/editor/icons/icon_curve_texture.svg b/editor/icons/icon_curve_texture.svg new file mode 100644 index 0000000000..15926087eb --- /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 da147ce7b4c101166821d02c1a6ae2f779663cb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 364 zcmV-y0h9iTP)uY+(e;{}Fht8Rbr5&R8ko)o0&MZH4%COY5c0Is9>9$X97q2EkPq=0h}BM;pmU_#!Hc97 za9bdNr(b|`yLf*IBw)$tJrKYv&h6zEpm0pX_rTKvyZ(Dj6YB>Vp=Q|pb&`7k0000< KMNUMnLSTZMPne_t diff --git a/editor/icons/icon_cylinder_mesh.svg b/editor/icons/icon_cylinder_mesh.svg new file mode 100644 index 0000000000..92a93ec220 --- /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 fd7d7e26e298304383ade78980409e11683a9c54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 673 zcmV;S0$%-zP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01m?d01m?e$8V@)00007bV*G`2igoC z7CSeV_CX>@2HM@dakSAh-}0005}Nkl;Fnufpb40OEnKn;^a3$pVC3$2^8S36^; zpa2@M*V!BZ&Lpl}yZ-q3t7jrUbfMgUVhv2&k>HiVU)xaTr=Px9|1$d#$N_3ccI@Kt z=xFNo;`EjkkL+krYJkfHz_dV@!-31U9^RHMy|n#vX&q=todE-5sYjo(&Q{HEd>w=k zP-#LwI(CPX=g$E?3FrYLgE#KojP-(Lb0}m9zA2y_zdA%PeirabZU%mz49NtX4nm-3 zzkG01Ef=6vu7YWR)%F3h+&Q6*Lmcdbf(l_j6jdigMFX`3`3lf-8Mf^KgnXFKvJR!X zW2sPumPyxOBpkISM}-h3U`sApKk@+SSQBVVfC2p8Tz)(Mw+rk;ZgG{`_7>2R+*o$M z&%Vqk8c5<_27I2QlFb86PbY)&POiGP^kJ>lKYXd-i$^>H>W0%)4KVi%w2c*o_o*p< zWafY((CGS1r$)w;i3jP4T{{{wEy$L1gN4Z%7P>#vf4%b`F__S@Ua6YS00000NkvXX Hu0mjfl9?tR 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 fda7d48353e86bb958b5939800d1f34f11f8ad81..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 796 zcmV+%1LOROP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01m?d01m?e$8V@)00007bV*G`2ipP% z00$X(5EGIB000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0007aNklQHN}*UpN@zvwMnyqH5e5AZ-1-N&btky#KhT}K z(ryGdE(8~%i-I9GM5VSRwRG}Jn@Q%)%zgLWdyWg;eKsH3`1&>g00#OGM8pJEbwrL$ zfI#S(_1XH4q5@fY$PziEK-gn-Eg$Rz|jo*K`d-3`82O0M=BcbH9t5Jr{ zgmcKM@nGEB*swwnVdA%U?!9n!rC;*ZM^CobM(uodx;IWfNVS+c^(&*nx#!kbx=D=l zzN786mwx*3*H1rro zuHX3R!}tE)KRnp}rCS}v`AN!Iri;c!etO)bS&Y*rE#kAZ^6tkUe0Ad%kv({{w|9T% z@+(*FY;9`gv?Q4{C(NEY)|g9d*QkH~?D{v~en)1PUcS7w`ExxOI_sE}7p-&VMsHqA zT`66rS*l6WZ2t70qie5Tz5npf{iCs8?q7WI!q)FQ%7CzAcEi_SD>2~FD=2* z?vuwIXYMcUojL91XuCGoa3Jr!v}GpYijze+-|$ z{QLLi``_a~e*K>$@a6TUh6e3l*j#`S2E{#Zwf-{xk74-#Kc0bsK^&^+Jp%*7n*aZp zmrN)VI*Qi-7zkbUpIP?tTL(7Q|9PC8%pUyQOsu@zOpM9?d? + + + + + diff --git a/editor/icons/icon_debug.png b/editor/icons/icon_debug.png deleted file mode 100644 index b67e306697ce0aff7dd33e6db5b25fce3d953144..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 455 zcmV;&0XY7NP)-{-k~uTQ40mh4+t273bua!6}8t&Yin)% z0a__R>y5+Y|&r5kQBCwwZa%)eeA;d;1;CJZg-|^zz1- z3^R|$4l1Q8N~uaH%DV6SZ@%xpYOPn}`hFq^A!dna(HN6=PL2Ug0hngy6XzmNM2kX* z*}etLd;tK~+S5j(Q3Mc + + + + + + + + + + + + + diff --git a/editor/icons/icon_debug_continue.png b/editor/icons/icon_debug_continue.png deleted file mode 100644 index 78a61aa98f9788b3426b199599075c63b0a773f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 302 zcmV+}0nz@6P)Q3djk-{hu{JnB5kfggo7YTw%9c3X`#+3 zkf5R6dbh!pRJI$7r6948;~)-@uY5l<^Yq}rze(0Urq$}CTOR;;?}s6TWsI?iF}{Zo zocDg%nH^Kt&&j!q9RXv^T+%gg3Y + + + + + + + + diff --git a/editor/icons/icon_debug_next.png b/editor/icons/icon_debug_next.png deleted file mode 100644 index c61f22156243ffd7da054d34f79bf5d96c7355f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@=JzX3_ zEPC%w-pG5%K*Z&Kq(|goTjmXXU*rz{a(!ZZ$cksem3b=57*x15Ei{%q-1Xo8|GSb) z?Y#lEQ>Jh=B#Ahj+gW4v?cV8J-+~OwEiB)BKO71Y|6Lwnty@@sp^?GMi@Big@w%>$ zmxL-*UhHD@ADt<-Fd3Pa_!C* RDWKyRJYD@<);T3K0RT9KSt0-c diff --git a/editor/icons/icon_debug_next.svg b/editor/icons/icon_debug_next.svg new file mode 100644 index 0000000000..6251e174e7 --- /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 a1839d56d89bdb19489baa15812e5793879dffe2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@=JY5_^ zEP9g@76=#^85kJ+$fsRlQ(YpqP@v?2hV|LO%ZML?a%+o&$^^~j8)?$18+@wLW)kpnsxJB zFB=^AAbrKuT;ktf?&LMAcl(@R$kB^9aNt~?Q%~9&JqNauliVWA4F6u~-)ms_AOv(9 NgQu&X%Q~loCIGoFRyhCw diff --git a/editor/icons/icon_debug_step.svg b/editor/icons/icon_debug_step.svg new file mode 100644 index 0000000000..3a98803fc3 --- /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 4c31fe5cb2e7b59e7619da27da9f10abb43c4f5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3480 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 + + + + + diff --git a/editor/icons/icon_dependency_changed_hl.png b/editor/icons/icon_dependency_changed_hl.png deleted file mode 100644 index 51dfe6b39d479adec86e30718e897b1af8313b5e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmV-Q0k!^#P)QV*ze&ji5)kq=;C;T^CgO_$=_p%I|- z`6rM7PYnsrsD?6~u04R6R~2X!G!Jm%!OO5=BKX zRCO{>4iM)KsD`wA3q>^)=Z;Ws<=Je6NCNa4%qMH*?@PcRra11CWn&wrHw*88jSbVW cMV0OK3vX;uJ3%*nh5!Hn07*qoM6N<$f|aO=hyVZp diff --git a/editor/icons/icon_dependency_changed_hl.svg b/editor/icons/icon_dependency_changed_hl.svg new file mode 100644 index 0000000000..fa0f3919ea --- /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 d8737fd2f443c2f3144b898248d9f616e87eb52a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 571 zcmV-B0>u4^P)1InQ-8!~YL8zuU6d{&E zOrJP52>t;XHDZFb6rqDn2J2`YyGR11;O1m0RocZRsd-=LxcDAPBrbZk`@83y-^abc zKNbxFNA*J114?1Y^CFl407Z0c80w=YDNilePKPdN?XExY0>2_adI;Nvtxb0}SKW>= z)jQk`yw?Jxm7+5}V&yZAGn#Rn(Ufi6S477Gq&+X#YBnC``xG423)!|GeTj!NDRpad zsdnDWepr7r_A~T8Gs|TF9p{q1F@5{RHxmFnpcKotv{{;5dU@Vz6z+L`^qfGVZNr_; zRT{0`^(S5Sw*WYPH{1a5SOGv7@h44tCbSB7cO)7m|d_%oBYf4lAYT%r;FI00P2dj0+%%0#bA$EH?*-=Tm5fYredbg;7~0N{l| z-$Ej4D~rpCf~n=&sjW>H=ud8LWs`bs{B|!XZMZXcUVTp%0Kjanx~;Xf3ZOI03K6wO zQdWNEZuL!q4K^LVcdz)}aD$oWIl^@SPzJu5r1q7?<(T=u)h`%u#a$I734#Cs002ov JPDHLkV1g&O_TT^j diff --git a/editor/icons/icon_dependency_local_changed.svg b/editor/icons/icon_dependency_local_changed.svg new file mode 100644 index 0000000000..5fef88844a --- /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 a87c48ca3ea120e2564c0a00b2f6cea6ea383492..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 460 zcmV;-0W|U(c zB1i^E`tUVyLe1Thar@!N0qPWI5O#sC9|Ye}%}cs)@Cg_Z@}5twAmlKtIEEDmod&Le zE=2a#Sr&eERt{{?ared9Wl57M0hz=mS13-s+8j3FqVEWBN0p6%p zwOj=BYlQD~Vg;{6ONec%g6h2Iz?=-n(sTfKz(kZOqieyL)v^0%Pz)XZF6`jAodtDD zbBKA4gjQ9K;QKTFre2A;2}#*c27rv)52)seBqyV55?&+F7R^h_ehROEqzebA&H~l8 z%Az?LDI5m8Xoucx^mv~{GQhA8U!xpjx?7*h|5hIx5rfhXk!0!s0000 + + + + diff --git a/editor/icons/icon_dependency_ok.png b/editor/icons/icon_dependency_ok.png deleted file mode 100644 index 2b9ac389ba47d3e78cbbe08369941a2622d90489..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 518 zcmV+h0{Q)kP)OZj6?C#q)9>T`7X{zFPd~bf=e9R2+pQ8N_ zjSu%uBGNTyZ565|03hbiEc{x1?mRr#{5sQMdC*&mqqq;nks0lNn4DP&Dy^+4gXKYQ zDH8Jv&|r7lZPx7b3C)0P1vpY@n*AMy2FT-rN;4D$3wvbK%uC zwcWKh-6yF{s{r6!S{fT+ia?BuXFu)gcvfwV>R5x@U+%rM2bxQU_>v7EDCp zB)lg + + + + + diff --git a/editor/icons/icon_dependency_ok_hl.png b/editor/icons/icon_dependency_ok_hl.png deleted file mode 100644 index 62e48531e4e2d577033d18ef061809819aed143d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmV;O0b>4%P)lBvmvuGm%+rAKs@QIytVSPBn-R*feGU*fafcQM%Hw`w0TGuC3Y{+HPIuE0kC7Bb!m8NG$CFJIu_W?W_tp ztLSaslGKNYs0$3pooVX!jZzTURqbX}MDM*c99TLfs>^J5|pd|6S zqA6hb13Z|Aoe}1Bs@=^A>GUT00000NkvXX Hu0mjf?oP63 diff --git a/editor/icons/icon_dependency_ok_hl.svg b/editor/icons/icon_dependency_ok_hl.svg new file mode 100644 index 0000000000..7c3f058dc4 --- /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 31f47c974d1e9999cc2415ba4cd0b150a4ed0784..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 426 zcmV;b0agBqP)hpU}q_4kuEdmW`O^c4g#x#z%KHL z7~uOy?0MyRX7;?Y_Wh&T8qLBWx+LI9D78to+ItKR!<^N6$iO<7k5#kT2LLrSNTmkW z+DF6O70e~w?Y6+Y^F{L@vi3|6T}Z$cO5LU=003^cmry8_jkON|mJ=JiNg*m2kDtkP zqs$D*btA*v%76i&XpA|Zg})ob(w>f;t=*(wEHI}<#L1EZ09CL5G-4ir=wMEZo1{M# zVwBIXD&{)?#Td%`DuF5{lb6g8xz{UM#~BJ^_M{LMFkgdt1m+QdD+yFTi1w}H+;gY1 z5?cWPjMm#A+K@yiAnK?_<1jWr80MtbrwptaqAdXZ)Pl)VPX0pHDKFG-p6So}1P+m` U5&vPT-T(jq07*qoM6N<$f)l2=@c;k- diff --git a/editor/icons/icon_directional_light.svg b/editor/icons/icon_directional_light.svg new file mode 100644 index 0000000000..31802ef0c1 --- /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 c6f8a0887476a88461437384a11ff0e07e941eb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 397 zcmV;80doF{P)pyAAR-%M{4&^AroU~pe~7=15LLyoH!Gzwl2dE#z>BQ41CmpvROUmBF)2{HMCaTK$&+f^GZ8uM zbUNR_`Wvg@9)KBuR{*zKYc@_ + + + + + + + + diff --git a/editor/icons/icon_doc_code_font.png b/editor/icons/icon_doc_code_font.png deleted file mode 100644 index 628654f6e8c5a92dd1fbcb51c139955866801433..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8123 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 diff --git a/editor/icons/icon_doc_font.png b/editor/icons/icon_doc_font.png deleted file mode 100644 index 65fbcc5ccc0a9642dca661e6e6eaed0332626ac2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8213 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 R|NYwo20EtN?;n9<{tuB`OyK|k diff --git a/editor/icons/icon_doc_title_font.png b/editor/icons/icon_doc_title_font.png deleted file mode 100644 index d78b394da0f713bdd7f2b9010ba478098b262d8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10222 zcmb7q^;gu-_y2R3rMnx6rMnyH?p%6lk#3M$x*I7eX$6%A0b%KGB&0*)CEW_>hxa+( zf8hJWojhme-kE#n&fIw<=xVFrVo_lM0D!Bes;CbDpywihz<@lb+Fjuh&l$)^Uqv4H zJVkT#Tmjo^s3-!!#}p=k=NhJ`s;LhEU=#n3KtMqu#d9ONubP$;`Wh-2Ov=N=g4Y26 z^njY8oMGUPlhE*2MoZlXtkPc#vtc{Tc!WEiAr<&%%y<_WR=)KLAp>#p(Y~rL2d|hN>QjUmx{2nWH2_R@LUuE40pYNH92fiW*4?YKEJ5^vETkjE6pFX3Z1|E8M zX-Fo*6ea%~u$&Yv0`aH(SKYzE=J$h|r6=Z>_~{pQ_lEDQ#oJ+=tK|D~x{r>&Br78< zWFHo_GNmfM*Qk(>zPnt)QA?vg%qYybIe}IWY=%PP1~;KC;pKL$(q!$Dw_WR8GrQWq zI_)WQ>MH$`_xv);b^MI3r*btyu$O!?yT{gTzqGyVzcFs*#Zk{Fl>@X~?X5Z=2}aeN zme!yv%;7=MUl@@snIy93G^1e`0o>AW>a?MV*ZX-tMSc;t@sBH2adXrCTAorOTcLH4 zWE^qN+sh#O@_HA74aMfl99nJP=zA)x_~PBN{A+!>zUS=;_FFm=of8}WMZ%Wrqozd( zitl6a0+bJbrIi~Emp)sn_n3R--fDEx2h;&XTHpl3@5(piib-BJ5J^ zQTu}Vs7YtxMV3bXTfpMWsTJfJwKTTEgBig!n*8`()7zMjby}<~*5^mp)k@Xczu#>! z*x63?^O!3!mQWRO#mgzGrMhZ|#O(g^zpok8T1Soq8;5?Y-BhrW?aKtQa)R2e)>|+R zv1NZ8R&b5dHP9V#b>|4}CD(*TS4`6x3l19dWKN6Hj|@sv{)bap&yDE2GR zwCiz{=KdUk{kJ%~t7e-LV+(JzS04lU^xv(LtTliIZNdt6+hrV$^h*hN`dp=QSy;EJ zlDT%*_XE6=U+5^UHs+qXQDb6N+uii^EO|R7oK>wcAN)@4=!c!N z(mJ3k3SzNW{{g<2uSoB%dZS@J7zA^ShrS=NpR?wZp4vRKA=AV%J zzMMu{X(zf1Zr#d!48=6}!hQGiEc>z6_?KpjA;@es06=IxPolc(CP&u>bTLhL;BP^v z?3kvu%xAqlo~Kya;c)^TgFG>5q|{TOu46ImUNnAJ6%_jU;Zl z5Tbi$(tvi-X&3~au+L3ma*)Gnw(PtTPCnUBAzm$-1C2n?a%vJ3$(fz*eM;Q z@q$89UUCY5zREg7vFIbF5q=}drT^Yw{G6%);S4rgC0O{BkjD> z^I+3hWApwrasi)8^$k}hm#4fQ&HA(Y{Vbf(ovYh+$Xuu+3FSv=`4wXFlzseLCUc&L zoBjjS@&87|!Yd(B)URHF{87b=@A-Aeniu&Fwy?oeO(92#}DQN%+)&~I?XV5OKNa#%b!0H?m{8_2S=lA)-3&¯xq_nDQLiFW$DL< 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 HJo5hl`rFeW diff --git a/editor/icons/icon_down.png b/editor/icons/icon_down.png deleted file mode 100644 index d2fcdb4c9fb6d8950b27eeacad8b1ef5276f0c94..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE(|^(n6#=~11Q2-;1OBO zz`!jG!i)^F=12eq*-JcqUD+S7F^efGu^A?;1PZx(x;TbdoKCL!@PLt7wV|`o$zda- zPQ{adi$6-Xw~7A~eyQpuDWdA7g3`c3Pl$0qg2D~IM3ODFGPoTa{VwYD|Og|yJQuZ*Y1uB)$m Z#Qizf`u3k_`4*s^44$rjF6*2UngH+nL@@vW diff --git a/editor/icons/icon_dummy.png b/editor/icons/icon_dummy.png deleted file mode 100644 index 24998a28afd8145ae79195ec38aedf6c6c43a87e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5ZUJq!PPw}3*Co-U3d7N?W{ zoc}PtQRu)C2gL)K4ZD@XvMT7tV diff --git a/editor/icons/icon_duplicate.png b/editor/icons/icon_duplicate.png deleted file mode 100644 index 320b36504eb552b258f60f2c10db83742730c1b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Jo-U3d z7QM*{3s@^YJUCdNa^}E+0|o#8{pHKan%QAGW#Yt*GP4z3q#I5P>|i``PW7mOSW<3y zKtRF~HNPp0H)7a~CoC~Iz~;t#K#+UKA|B}mZ51`aMB_P0`T;x)MeB6tg)Y5%0%#9| Mr>mdKI;Vst0Gn(%zW@LL diff --git a/editor/icons/icon_duplicate.svg b/editor/icons/icon_duplicate.svg new file mode 100644 index 0000000000..4b27dcf62d --- /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 b685841e3527cd0c1b60318088f529b3478bb72a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 559 zcmV+~0?_@5P)Px#24YJ`L;&Xixd6+hj(!&a000SaNLh0L01m?d01m?e$8V@)00007bV*G`2igh? z10M&oxGyaL000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0004sNklBjU6oo$*tCk!j7eomtG4AHYWJ(u9p>8o`$*2q=Lrj;931sh2Xou|0KcN4F@rRrb14 zsc&i-?!ytbW~d`&UzM3*}%CjA=dg)%vrLPAaayTH*cf z7OUGE+|*A1I6MB1=*eUoCt`f+=vF1R4QS>?ixz!*rh({6vPbR2=!&j{uTt3=<2TTpt7a`jd`SQR002ovPDHLkV1n3#?o9vy diff --git a/editor/icons/icon_dynamic_custom_body.png b/editor/icons/icon_dynamic_custom_body.png deleted file mode 100644 index d383e7087fa9a7c9e3f71703595759a59ddecb34..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 556 zcmV+{0@MA8P)Px#24YJ`L;&Xixd6+hj(!&a000SaNLh0L01m?d01m?e$8V@)00007bV*G`2igh? z10Dj}$?D?(000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0004pNkl+GoX u)MyVik65chBLe_@6dw5~JR+$I|6bp5bHAwRngt910000fy|4S`#jjnHcK~5RbUVh zl-+seOvv{$w>Z6;Y>k6gPRdfUsym{kWRM{jQE*K5i*uJr!e{&m}@`MN4G>t=o4P+mLx kxRRqu!Fr~mdKI;Vst0Ny!XeE + + + + + diff --git a/editor/icons/icon_dynamic_font_data.png b/editor/icons/icon_dynamic_font_data.png deleted file mode 100644 index 5cff86c40c844fe6c28fe5eb488cf21eaea09fc0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_uJzX3_ zEP9s)S@RuM;Hh0#)%s?i`(?}Nr#gx@d{b)E41dvNEuz$-&2(z^0jA%zJTWYc4ILTh zlhc;%D%*W(LC%MSG_B=NtOae`cXf4qJ7qNM%FccLue}^585nIm_BXyTUaV#r=NX@w zf%8_JJIiqI>^fEDQora;JuL!<9`5*FXE!FVdQ&MBb@03u0fjQ{`u diff --git a/editor/icons/icon_dynamic_font_data.svg b/editor/icons/icon_dynamic_font_data.svg new file mode 100644 index 0000000000..644c987d8a --- /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 f804b2952876c111e45b6783ebc4b55f0a75023d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 546 zcmV+-0^R+IP)Px#24YJ`L;&Xixd6+hj(!&a000SaNLh0L01m?d01m?e$8V@)00007bV*G`2igh? z104}{TKN6|000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0004fNkl@E)K@kgvo)OwZDO%;pT1}TwI*o7>pYl zF$PV5C`|(tUh5zw1;vo)S>8= z)O#%oW)=WPc%!miRRCGD%>MfEeqs*x^^B#+0QUWr5&fjfT~&M3_KUS;kP74 z^?GsRhrI|)Y&C^q#HZUA4gl!h-ucmfZ1ro9V#LRK#!_c;@RO{)9eEy}+^+uknSOC1 k00H=k&0L^otT_LvPyMQpm>0#M^8f$<07*qoM6N<$f~rpBn*aa+ diff --git a/editor/icons/icon_edit.png b/editor/icons/icon_edit.png deleted file mode 100644 index c114d2f84d99c530f47fec9a199afdfb86fecef9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 346 zcmV-g0j2(lP)NeVk#i#2m?%#saRcO!n?4ELP-13i;v*`WCj`oPY)bT}NomSwr! zTcE0e_x=LdtE%e0D2lDM1=iY45%FOd9sw`FuJ?YLW!Ye*z&V!!Z`Ru5D2hH*^#FJR zE|Vmg$!~C;=VK9>03k2~#>SXiRSiVM11uG^;5whcjxpxF{^(r6IhS_86>#2!J120? zrK)<}0iPOUuG;krg1+#A;4ko8V6EK;9$N61s-DDge6tLOpChX3VMph)Rq$LOB1xaI so2k2Q0C%eT90b91G#Wjw1OH3D0d_HXv + + + + diff --git a/editor/icons/icon_edit_key.png b/editor/icons/icon_edit_key.png deleted file mode 100644 index 3ebbe75f7862b62d9358f0be7c7bf06e672f0e57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 405 zcmV;G0c!qcriBs zR;FT!G$&{0+=7Ut)oOJMcm|fzH0_09SQ{HW7Ov%U6h&>|#W}a_dEUFKwzB=BAP9ze z2O@GTBC8^DKN^j?zVF9_!Js1|XFwGg0v&7Zm8u#MN%IoRRDj3&0DNoh+xWqJA+y*e zZ~}BE;nD=zS6!6AyVlzC;{KGutnietU&lFNHP z!MTBm1hd4R)cEQ=aILCO#+Y8cUcdVd{4e?haubrkuUmo900000NkvXXu0mjfd2qA1 diff --git a/editor/icons/icon_edit_key.svg b/editor/icons/icon_edit_key.svg new file mode 100644 index 0000000000..2959900d04 --- /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 230122b96979fc0f04743637fdf2fd315abb6556..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmV-N0l5B&P)+ze%tVJ4u_ctMLhw1Xv9k~an`5Ub1*i$JikxhgvrdPfw=9f;i5?d-oZ|NJccC#q_yYD1dnuS3?~VEqVu zrrj?(=j1oBs!oBOzHVs--usF7{;X-5E$7^>i0qr$H85K^7(!J~fg9l6%DvlJ)OEetb=@nl-77ze$YtBMcY`aa>NHK$nTXu}xY`RLTqH?yJm}yn+`|yUTNFjl zJ;!6`Tmh?nr1Lz_Uw{X|fH5$ts%o@qgChVDnV4DWoGZ+%01nJ-X@(2RvfNPBllgi6 Z_yg8LVycAdA}9a=002ovPDHLkV1gl)m)rmV diff --git a/editor/icons/icon_edit_pivot.svg b/editor/icons/icon_edit_pivot.svg new file mode 100644 index 0000000000..32c51a491f --- /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 fca57f3e7e7b62cf1aa174d3a1ccd60a2bb928c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt`jo-U3d z5>spY4Y`;c1z1+Ihw+%&-*_N2U#+TB-!Sll=RXJGn{(Maem3?@+@Rh*wd|sAH(U9B z2JZ(Git897v|WxUDVa_3d$*4*KzmA1*ram~@`84KkK-7&Ueh-A*mX0;VB$aDB~!{K xvl&}6?VV|RCg*nP-Ot~TMqjd3YI}c{|G-kiFG~eEDu7O5@O1TaS?83{1OQa?N(KM` diff --git a/editor/icons/icon_edit_resource.svg b/editor/icons/icon_edit_resource.svg new file mode 100644 index 0000000000..a744685de8 --- /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 19c83415f93b237b7f260713d55b2081f6740f20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 365 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg)W*$~v(e%f+Gl4>qC9V-A&iT2y zsd*&~&PAz-C8;S2<(VZJ3hti10pX2&;y^_wJY5_^BrYc>I4}t>y(`Hj@#Dv|U1|SX zK0Z`9cA%jV2ok5}U;BUBd)vR+$s%9pgG40Nc0M`8+V(h```>o?8-L=TJqUNRlYjib zZ@=s62Uh*-b$`6iQ2+k^#=mv{`O3Kdr`6=d zmyv;i!HJWf|E=xp{S!Z1;Ai~I#+m%ClNuWt8B9|HYrh5_S`PFRgQu&X%Q~loCIAGH BoJjxx diff --git a/editor/icons/icon_editor_2d.png b/editor/icons/icon_editor_2d.png deleted file mode 100644 index 1594f5adf04dd62d2db64e1cb69c38e1ae77aa7e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg)Mga~URfBJzCIE$8JzX3_EKVo? z(O3UIzme&{p#ujFe0X=~j#QBex1{R!4F@dGMwd-k^fPvCKRYuJ2s5`PTxkeoW@~5E jd679gbP0l+XkKf0;b- diff --git a/editor/icons/icon_editor_3d_handle.png b/editor/icons/icon_editor_3d_handle.png deleted file mode 100644 index 6935cc9bc4f1ccfcc286fe38707ab25f03f83487..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 350 zcmV-k0iphhP)NT6+T;3tlzh~s=!+tlqs6ag#>&yPb&fO{a2Wt$HvHwz>ogvVbGsENAR wampX+$<8mThw7C&QCCGw)JyeX_kjMOFE6md7RG^+NB{r;07*qoM6N<$f{*=`S^xk5 diff --git a/editor/icons/icon_editor_3d_handle.svg b/editor/icons/icon_editor_3d_handle.svg new file mode 100644 index 0000000000..189baf3dad --- /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 158dd62a7b84397c17901bb19478e27a2167af1e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 472 zcmV;}0Vn>6P)^`Z*$Au3 zK7a_SWLe`4-5bxN2UJ_W1rTT&eJIv~iNU$&ZUR-i9B3VhpOwAWt3Wkmw?Sr{2)ZFo z1lf+;g3De4N|nuVWoy@f_?u=$VG0q+By0Sj`{GY+3v_QhuUHELlm<`+P!@qHOd*fU z{sQ4pu`*0CJ#7m*r5UA6lt~T%j8^}_?ouGO-cr!{Idu=BLc^&wqm+p{E&za> + + + + + + + diff --git a/editor/icons/icon_editor_focus.png b/editor/icons/icon_editor_focus.png deleted file mode 100644 index 40ce11f38197be744dc4b99dae576a2f236ae35c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 629 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=Y)RhkE(|^lUJQO6npxX`BAf*t zk;M!Q+(IDCc}xgq=hj9M!B&Nv{Va7xVcCBVuG+P=^_S>;#l>cU@~N{wbemdy zXnFAWqT-vxk38@Hx*z3N2#)d?&gZ$CFYZ_&t5 zP|f<_ox-Dg>HGij-kANL%~Gb>;y2%&$aj(6d_Ub*yhLX6rU-rDOWotOM zMDQ^4Uzxqt>s-5qZ5DaCd29)fbRT#>-Ettq;pn23hubG?KfttVg-djj*`{?}%g@#~^Vekl b{A0gNXhVF+zim#y1j69y>gTe~DWM4f*4qhz diff --git a/editor/icons/icon_editor_handle.png b/editor/icons/icon_editor_handle.png deleted file mode 100644 index 8950a216dafcb7be3c93069f5eef4ab5af46821e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt`Lo-U3d z5>r$AH}W1b5OKNRAEB_))A#9(-~%NcmJS{wD>YVR%BDAe(P(1rI}|20zvS%Y+Pk$3 zDqknPn^bp{-;>P8GVEzjj9}c)theNfVP8&^m_c^oyE_c-NlSv#ma{Qz zwwf?g>VYdqslw*vQ@7?n+j)1D6T@>mhkZKv_f%@T*H8M!P=C6|tHy$B?th@O7(8A5 KT-G@yGywn`@lb&P diff --git a/editor/icons/icon_editor_handle.svg b/editor/icons/icon_editor_handle.svg new file mode 100644 index 0000000000..7e58aaa803 --- /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 aec161ed5435246f47fb769f16d7449c0c53ef61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg)78W)gYp06N$3UU&o-U3d7N?W1 zoZI^A|AQmBY#_kO9m*Dy6VniAef^a^Gi$@gi=Wk9Bp=)qI~MSA#^HqY%yy+?E~|Rm z`{a`>O8yAU@t?$KaC>6xL8fGxck@pwEML;G=;6h^zj?N`zKn=vG;U#?pC%hDJZIg3 zf`f~zzXz&p$UMdt;las#ew)E5o)sl$93O6fKfmdIgZA?C1~+a=JpN)I$GmQiU9%wb yiI4q{SaSkf^<@R#vgUmB4^#+x!<2K8gCQ`*&2vWOG*+M&7(8A5T-G@yGywq4vvYF* diff --git a/editor/icons/icon_editor_pivot.png b/editor/icons/icon_editor_pivot.png deleted file mode 100644 index db7feb0be609b93f641447a9f7c115a2337da59b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^>o-U3d z7QJ^TALKmXz`=5TLeaV@f7bc_jr8K$;b*qqfn#}0oYOaTJ>_*894?pUZ|#sVzAwfI z)W@5qyZK22>t6kU^CI diff --git a/editor/icons/icon_editor_pivot.svg b/editor/icons/icon_editor_pivot.svg new file mode 100644 index 0000000000..d59d2d804d --- /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 ff7004b993ca845c24235d89213e13c4cc958fed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^@JzX3_ zEPA(23gl}t5OBFKbS|-4;4$L|1sP91r$hTcDwtIDe>|MD!NJ+N#?yY+&2v7xTbm^u zI3DV~oRe!(ZSh<$b1z#*yRQ0%)PUu+JC{_mZ0dPj!D?kZdC9eE`zag}7nmopTwq+M z<+;JFv!UVGnYaVNLENqR5BAD8T;4N{E5&`M8|!?3A!WbpN73E3++ux&A+>kR49n~e t_Ak1b`|Qr!U55n4m?qsS38{a|E8S!J^T*2hZa{}Kc)I$ztaD0e0sx{PVIcqj diff --git a/editor/icons/icon_editor_plugin.svg b/editor/icons/icon_editor_plugin.svg new file mode 100644 index 0000000000..528a583a04 --- /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 f59d4935878ac18ae6834b4af0997a0daeaccc3c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^MG8 zVAJZun}8ym1s;*b3=G`DAk4@xYmNj^kiEpy*OmP?H=~d|v%v-nCZJH9r;B5V#p&dl zg{yzhZ)7@f=)i#k9}3E@YZaNCUOugLqe5Yo=fyt-W#NW*SUnyvPyEFiu&04XMK69| ztN(NE*jUpPJ7MP5gewgP6BxJ`R;XQNVB8eT;C*`ulbhFOV+N)c(FONHD&7EXV(@hJ Kb6Mw<&;$Tdm_{1_ diff --git a/editor/icons/icon_empty_control.png b/editor/icons/icon_empty_control.png deleted file mode 100644 index b43bb14d390abdc75d74402960a67a1a735888c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP)r-T>-8#m*jo>Z{%z+5OJArzldX5 zA@4y(7HRQ~g*re&kR|${rxHsmOFBnp@n72=kNK3QGRAxhYvB5_Yh6}s+0E#^|6cdj zFB8~4tx9*PMUjK#f1ky2&jb#neOo%^*_0c6LJEuwMF%ohUO)TB`^6MS@!DlKSpM*z VQO>cRJrCp&22WQ%mvv4FO#qT>O^^Tp diff --git a/editor/icons/icon_enum.png b/editor/icons/icon_enum.png deleted file mode 100644 index a98a33aedf66ddf59403f4a0373c2fa4540d415b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@zo-U3d z7QM*{5*Y_Ll5HwJJg{eGW^Qh3Vp2Ae7jIaZylCm`HVz417p;bi4k-x?3>^C;xTLo@ R#sc*+c)I$ztaD0e0swe#A}{~| diff --git a/editor/icons/icon_environment.png b/editor/icons/icon_environment.png deleted file mode 100644 index 265af5e4adbf976d6a76fbf37701a6ebedcbc288..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 506 zcmV2Y0Qd^D0U+G z0^0hg6cj9jSOgTch+Em@1Ly}(vxXViE;A&oRvF>gya~gat#XvfqmP=-3-t0lzi9hX;1-T%kY(8);B=$Fwx^PIZU2?D1e}@K$nQ9g zyLAWSQ1t+KDCt1b0gy{7ff6Vs-Ia8wSyKyq4)J;%$FFUF0J=p{+$xG<73cz=`u+Y} z+qXmR=*U8Ijlg3`U+1jx3h;!+8k>i-X8U~*9ob%#bShXol=Kr==D0(uk!9IUU?a4A w9Oj>Ljh&sHv*AdVfeV4IKhvw(&vat^15e}5BEN>38UO$Q07*qoM6N<$f + + + + + + + diff --git a/editor/icons/icon_error.png b/editor/icons/icon_error.png deleted file mode 100644 index 8a9130f70bede0128156a91ffd9e05c6c07f1e3e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt@?o-U3d z5>so>ZRBkV5NW$ue4p)>HM8GB=9?EL1YD5%et}cx#=&X#uFVKwKHoOO + + + + diff --git a/editor/icons/icon_error_sign.png b/editor/icons/icon_error_sign.png deleted file mode 100644 index 1bfb1f345cc699e4505242e7766e43a9334ce1bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}}Uo-U3d z5v^~pUF2#u;9i zq?Tau;9XtN?++5jHSBH7f7}DCxs4?EF}rVe_}g8`&Y{I{=C&q>Lc`CkyXQvhYwD_O zlAdpSy1OB-!)Yg1hMUGywFc=#jrlVbm3}d>+z!y0&E)?W=za!IS3j3^P6 + + + + + + diff --git a/editor/icons/icon_event_player.png b/editor/icons/icon_event_player.png deleted file mode 100644 index b5478ca74ee5d7d506f9b1ec243803268a88501f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`6o-U3d z7QM*{3j_>|3=9lxDn2~0x11#^A|f$Uqm;3Wk&BC~2ZWD&GUQosgLN_60;Vq)+@4>) j$68{X@ZdAkQ3i&2UfjxWgbP0l+XkKa3w1b diff --git a/editor/icons/icon_event_player.svg b/editor/icons/icon_event_player.svg new file mode 100644 index 0000000000..06630c349a --- /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 8a604f945b27dd5076fb4d88a88d02ddba8d8f8c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 322 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP)I}eWlpWP#d(?Fr~o-U3d7N@UHvgK=X5NNf(Hov7| zp}|Gt3K6gO4;?KSzAxCK{EgT- zy6f#wr=-Jhnp^qhuSOOf-!;>2d`YiPoO0arRE<)>Uj_Cz%W4+4&N=G&OK69U*S6VP znV+m$I?F+Or}vQyEjs!=>vEr%Pn0ZRUUFfT_3pogFDA^*l1n~&aLXzKhRdgFuO8xv zV9-ujdCym)LAZe7oWsKN2STo$>0_OIK=#BH&EB@N!nWT|=bL>luV6BL=C({$%JVYN OYYd*QelF{r5}E)*Zh#R0 diff --git a/editor/icons/icon_expand_hl.png b/editor/icons/icon_expand_hl.png deleted file mode 100644 index 6f51806db2074cc320b976c1a3d3006b694ae488..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP)I}eY%h>OJ2I-t;5PZ!4!i_=#p+440x2(;RVIXN8& zSegDoCa&qo?2D5tIBghoTU%9*M647QOjcfVcG8+pt2?&3$4g=qy~+WU;qw;(eE82Y4qqt$vsLy?vwew^x-jW-+f`XTTKpc3)m1)0sxq z4FT`XrX1kB!I-|_N_v8JcG>wR&j)-@UQKa3{j8Jm_f_-RKdo&TU9P&vUy$(=0(y+W M)78&qol`;+0AgW%jsO4v diff --git a/editor/icons/icon_favorites.png b/editor/icons/icon_favorites.png deleted file mode 100644 index 14e05ad9b974c9d67e873da3f8e4688ad81f9fe6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 385 zcmV-{0e=38P)UKSceQM4~2 zfvN^T9jN3C90F|-X{l< + + + + diff --git a/editor/icons/icon_file.png b/editor/icons/icon_file.png deleted file mode 100644 index b012e1f2145493a18d6223f37c333a3217cfe763..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@)o-U3d z7QIV@cJekD@H`P{j!{dJ(a_M0XzzUE>yxUYXz$eCiKZiM|Pot({IB%v=7p%x+Pb?35|8SA{&4 y!b@{zT#QYc%sl_@$+n;OLSOmh(|}yOERRVZJYS$a59s|OXJf%6IoEb-dbJlK+XGej(vh! z%MZWW^387X3|Xb*1ZfFIW#jG{yF%2?#AIK5vUH_wLi-kdU(-acJIs#-4s}NzE0kHz bVaG5(uQ>a5{;6(Yd@^{t`njxgN@xNAx#Z6P diff --git a/editor/icons/icon_file_big.svg b/editor/icons/icon_file_big.svg new file mode 100644 index 0000000000..569b449a59 --- /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 c918e2b3b279e0b8825b9dfbe7c04d866a7acd61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`3JY5_^ zEP9VlGUPjCAmaSCgE=7VRHsB{vqM9JN^0ms&yNmWnFuYh^?$uP3b7nipQWj^%FnbBh`%bgl*T3&re^U0({e%|_n)e@TnVm78 mQ^hi0$ourY9W8&~+b}#})xS4E^PN1<#SEUVelF{r5}E)EN?*hP diff --git a/editor/icons/icon_file_dialog.svg b/editor/icons/icon_file_dialog.svg new file mode 100644 index 0000000000..fafb940611 --- /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 a98a33aedf66ddf59403f4a0373c2fa4540d415b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@zo-U3d z7QM*{5*Y_Ll5HwJJg{eGW^Qh3Vp2Ae7jIaZylCm`HVz417p;bi4k-x?3>^C;xTLo@ R#sc*+c)I$ztaD0e0swe#A}{~| diff --git a/editor/icons/icon_file_list.svg b/editor/icons/icon_file_list.svg new file mode 100644 index 0000000000..6eee2e63cf --- /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 f5a18fc52d6e567934ae3ac600bfe23a5a0001e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^`o-U3d z7QM*{3j_?3gl($6yr`GBee0IgYN + + + + + + diff --git a/editor/icons/icon_file_server_active.png b/editor/icons/icon_file_server_active.png deleted file mode 100644 index af5fc0033a4683ad8e22f714e8ea76b4d1ee11b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^`o-U3d z7QM*{3j_?3gmZrG|7hP6d-z3vDDOo!1?HSK!-wSxi3T6ocx)0<5)R0|YH{FQY_BYA o#6EM`Z0-{m-DAahnhh8jp4Umcp4JPu0h-9*>FVdQ&MBb@0IWPM8UO$Q diff --git a/editor/icons/icon_file_server_active.svg b/editor/icons/icon_file_server_active.svg new file mode 100644 index 0000000000..d491df2009 --- /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 6fb4b8f36f0bc20e2ad1368c65f8f2c1020ace29..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_do-U3d z7QM*{5*Y_Ll5HwJJh0!jq^XHXSE7pLAN20<&s`s#x6r=7R0pSNPK8XS~F?hQA KxvX + + + + diff --git a/editor/icons/icon_filesystem.png b/editor/icons/icon_filesystem.png deleted file mode 100644 index 5faff250d7e1bdcc74bd8ece5c75d8c5468ecdd6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Zo-U3d z7QM*{3j_=vO{)0t;9z~uBQ7p3jjD(bnrb&$`Q>bW@NaI65MRJh6m!UB6t28=&b7p00i_>zopr09d#) A9smFU diff --git a/editor/icons/icon_fixed_material.png b/editor/icons/icon_fixed_material.png deleted file mode 100644 index a9b0ebb568267f50eaa057dc0a74aebe522dd627..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 377 zcmV-<0fzpGP)@W*1!Aj`5d&iO5XApq&(B@sQ9Wtj>g z)~$d%&&NbG0}!+f+!|w&D2nF0fEvwr0A6~%USDfH0Px%Z1VnV7=lS)Xfzwt10#s#TgVlv1a@?@z3?Ljad9UNXiOMNy=?$^Ta0 XjT&eRjF5iR00000NkvXXu0mjfBe|!f diff --git a/editor/icons/icon_fixed_material.svg b/editor/icons/icon_fixed_material.svg new file mode 100644 index 0000000000..e77e89df31 --- /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 f26ac3be37ad3498a368f0887a1b9e1ec03ca361..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 409 zcmV;K0cQS*P)GD$!bh!h}F678Vv;NVQ-LwO;@U zW)lkxvDT=K=#SVDiHTYm#6s=JvSR^D$igN|obt|_J7*^I;GZF3L95j?o>vC)z~)HQ z4wm(RF|O2Vy+{MCREmhSfMi6&U%-||<7UP{dzB(0SHL48CBzea(*$y1NR)j^k4ywW zKdNbr_Y5Slh8bCL-vRXNB!ln2&LR218)jwQ{Y(I~*1WQevHhu6m&>5@M@fNkfYZbn zqYz{)O!GpWBg2v?!{(el2a^;g22bQRrZPF;Euv~VvT%kK*u^NAK>$bq@Uq(lwim4K z0wV%}_M+`A<$gl2bB;Uos1SWX;rJdH+zG*9O?nD8@phqrU8+kT!l!(Ey9e3=Qc;~j zZD|zm0%7(uIoGQg + + + + + + + + + + diff --git a/editor/icons/icon_fog_f_x.png b/editor/icons/icon_fog_f_x.png deleted file mode 100644 index 54691aa9ab9afbfdc676daff98251959538c97e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 540 zcmV+%0^|LOP)Px#24YJ`L;wH)0002_L%V+f000SaNLh0L01m?d01m?e$8V@)00007bV*G`2ipP% z01P_CX>@2HM@dakSAh-}0004ZNklz8sbFO=TnUta+>3HFg04A2mmy}e<)UlV*p-nBy9Y+?t4RiEthXhS08))Ml3GlP8< zoFmNV+X=qX+!&s2Zlz${se_{B+VvemQgsjCMZLR3WzEoAfP}anUWXZ zki|EP4-RnSG1+KD;r-gc*w4X5QADeiVvR*aP_10b<74I@f=;Y8pn?J-imDLB!r@^? zD84gujwM{$`9b6C4BzY32#jSh-_YsFgr{f!i7vgkVDk6~i!~B!>?(umtS;W)2}%uD zsKNmnKQH0W-`yFUoWj+wgzMi$WhgbqMcFt%hi;d|8iNY8C6qLc3E>E941%Ddplb+0 e(AE)gr^7qq1Hs?J6jg%&0000UKAa97EW-zCWk + + + + diff --git a/editor/icons/icon_folder_big.png b/editor/icons/icon_folder_big.png deleted file mode 100644 index 05c41720d881fb67110a445e776631b3c11ae979..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 482 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=Y)RhkE)4%caKYZ?lNlHor+d0M zhE&XXd&}C7DNuy%!GE9S8`#>~PKAjjyieA>H6uXs@#?0v5Eo+`&U3cfT)QWjOZ)+sF@Le|9+r2Scv5+@J|F=fSSCwn) zSkoC9%9@u)+%lbgcAL_>&sqyaZH`Xgw(6bBo#&wrA*qq`j^26xN8rrom}HipX+hJT z{;aX9fAh8Ky`uQqY{vSpTnSoA%J=gpZ>{G36U=>J-m1ROHv7NqbiB+JVW!db=z!^! zCrk@gox5+)tH&_^e{|i|FHE=AH7*l>aD-_Mb3`)ZHO4g?8D2A7i)bii$ksVv)nF=? zAbUWHdjnrWFKYz*hGSTi*|F|n@fSQdIs3r!hIXl@h{Ck*ma1lJ)Vn#;%hDOIdUmgl zdUT}p;@dLyb&Bs7Z*mQM6aM_iuMaz3Wj&ERVB4_pe6zZe(xS897*zv<`RXtHEdWLu NgQu&X%Q~loCIGFT)5!n; diff --git a/editor/icons/icon_folder_big.svg b/editor/icons/icon_folder_big.svg new file mode 100644 index 0000000000..1c0cd3584e --- /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 6f6d706dae66cfd2a1f5ce0550b68782efa51a50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 644 zcmV-~0(Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipf4 z5i=K4^#m6H00IO_L_t(I%dL}5NR&Ys$A9zAyk6GrMM4aUNZr=$B1ox`*kVu@UBRM5 zR1{r9D58S8bmoi-!`SAj%HHvRTk>2itZROP4;tIs|@%sJp(tGabU!Z8z}X z0|Uc6%^M3}mBicKA#J^|9PoEcCxhpn7vQG7`dVr;cIik;=Yzd&&H&WSi`i-Wm^C+MpLz;QlvglbNSj$>gsAS#%$7v zk(NBzd+UzLX0wbA4~Zgxrw!G9A2<33=05~cDJ|BtW;wr# zU15{YEV;26nfdzw0000BI{akh4}JZ)uZ!DvnbDOUY^M}~?qcwC L^>bP0l+XkK?)6ih diff --git a/editor/icons/icon_font.svg b/editor/icons/icon_font.svg new file mode 100644 index 0000000000..1389ed4024 --- /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 529964f49da824ad8917b0aa7080777fa963528f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 292 zcmV+<0o(qGP)xtUDwC zk}iR7NjFW?oNWMko-f_~5lGzqrES~&2mt81?iP3l4*U84$(2F~$G{sfl60PB**qBn zYf(>8#5P4hUDqd)u7MvjyNZCSs`ezk_W2KGSuP?VP1Aee2>39wyQoEPJqIwe@#=c$ q@C=OHeL7tJ0g^uZ{*zs;HuMW5;!+5{YW(8>0000 + + + + diff --git a/editor/icons/icon_forward_no.png b/editor/icons/icon_forward_no.png deleted file mode 100644 index bf62cd6ab26536bfc7cec123f62346977383f375..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5Z!!}h|BYk@+Mo-U3d7N@sf zzR1g<$iaN!(%Mo6+1b$y3p4usx9GDivXs$3y2A4K7xe|r2G$`0Vd7dXr;LqTUTyH> zu-5LLAhzM#rfdbS(+4zl7$bMEtSaErNMzU$UzfbxZpJCO_Cg-fuRu!}JYD@<);T3K F0RVkMLD>KR diff --git a/editor/icons/icon_func.png b/editor/icons/icon_func.png deleted file mode 100644 index 45b32def8ac3fefbd28f0a88e5d0ff95281e4e7a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*x37`TN&n2}-D90{Nxdx@v7EBh@bK~^Re ziKn=Yu(xv&yEY3$fxY-l&4!KK?lT4bO_N^=5 zQ29>m+kZ!?8A74=mzur2xko2rR>1^~UvupXJ_hbPv*hYKpo-EEGkt25{f!a{~{~x#u>>qc@G7CrRO>s?LYlasX(5JB5f`j8OA^3fmAuV0)6g zRYyS5kvs?R(iV`s8Q?ttq6Oz%Xh_2xU!yx7qpllcUDs1HI~i*5-e2_+nAr}RB{4LM zH0>i0k;^phJ~3`qMRH$NE0WiLvXGFpc>1l8 + + + + 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 ea4fe06704495dea1058863b034d45dd8aa535de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 392 zcmV;30eAk1P)K-tc;#RBpgFmauA^WS z5Rra7o~^qmbsk0g&bdL+K}<}50Nev7z)?)U15@B4)(ow+cK~{ArB?g!-iPSwGIM$u z7l02Td~S`+hUvtyMZLvevEzjWP2y?wl*mqw_#2vQJ#44uC}nVX|7SZhF1m zPieHAlRG$2N?kP?4S?&S=Zv%Q5|vV?aUWJ)lg>p>F0k`&RA{%`ua%Q60q^}w6uSLO ms6u`Rix9$Oxm=F-75D{mxPZe*hlQ2^0000QWRUxX^PLB{`Q{6ZHb(6%?{J zLZr$e#|T|6>=`EG1eAQ}Mfb1%^{cBI_JrF-h)8hG2|$c742Q$7uDGnZQPr`CjMDb9 z&f?rv5*?}PxYI!*?g0ZHfK%W&(Mwh2_d+wefVEw0A^O0*%WxMh|Okmw_dOFl>M%8XK7|rGb`#6DyZrV*y?i! z<{^Z-OSM2*mS-`>H(JBhfoNtIRVV7;7~^3QjKGYa;i+u{^Tavl+(D;wbCgA7qN=8< mmRgL6obMdvHvamV_Qp4&vXm;#cB%LP0000 + + + + diff --git a/editor/icons/icon_g_i_probe.png b/editor/icons/icon_g_i_probe.png deleted file mode 100644 index a15ae1867535c2d5742564d3d1b85ad73a6f6f49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 341 zcmV-b0jmCqP)VXd;nL;1bZc-Z4%57>3NZfPN%n6D?WrtJbg|A zYGX#3>IHD^MV5rnfWIx=Cr9WM#ljkMy4kmICd1)p5&$6m{t}o28rMr>hV@_2O=H_v n*(7*PU96o8wR52j^dS8JE!=3oTNOox00000NkvXXu0mjf&=`-b diff --git a/editor/icons/icon_g_i_probe.svg b/editor/icons/icon_g_i_probe.svg new file mode 100644 index 0000000000..37b2cda223 --- /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 0aabcc49cb988ff7ba6476bab73d09bf46908359..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 350 zcmV-k0iphhP)e95wG|Nm#kW5XYj0a$A{!0|qUs;aW#TEe`SI0gO5 z{nrKn)>=O_YnrB1)d%1-P*#24&+EE=gWwXq|I6;p}X(1i($5eY?a_Csx3fb8gYL z?RD36nW`=Ty!TH@gJBm$WZw7v32^S5dsF?Qf8=?7H(7!)W-B7I@xF-6j4|7!!LSR_ w1lSBH>nMiZU+|2u@2iX%tfz>h_WmC}0d~b*u?P=$qW}N^07*qoM6N<$f+gCP`~Uy| 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 0000000000..f5a0961a35 --- /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 50474340d1c5c8ef6e2773a8cda004abef8a4871..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 461 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85sBugD~Uq{1qucLG}_)Usv|qOzaGjdLnN+oq$4;C9V-A&iT2y zsd*&~&PAz-C8;S2<(VZJ3hti10pX2&;y|l3JY5_^EKaYT{4ndV0Z)tlP1U?hCYy~T zG^R|sl=uFB)8=o7%U&&AT4La=FsUZ}r3&YQ%O-_;>puRhd{|;O-J(uylyy0ffhHFV{k8YU5(a<@STOf3v?B=o~K1)&-d|*0Qem2#}PblgsD^v92 z0@LAtY-AZVJOBUy07*qoM6N<$f}WJ3x&QzG 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 0000000000..dad266fff1 --- /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 bdeb120b438e8a5ebc33eb740f2f00f6fe2a1deb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3628 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 + + + + diff --git a/editor/icons/icon_gizmo_light.png b/editor/icons/icon_gizmo_light.png deleted file mode 100644 index be9903f8c290f16f6d1c55360e6a6ce9117c0dfd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3064 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 diff --git a/editor/icons/icon_gizmo_light.svg b/editor/icons/icon_gizmo_light.svg new file mode 100644 index 0000000000..c411d13dc7 --- /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 47e978be6184b55ca6448b5f740e8af67d67e0a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3613 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 + + + + + + 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 0119dbc433986ebc960ced7ef2abebd292c73e54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1297 zcmbtU`&ZIu7=Hj!GD68LEH}+^X)ZNuUMTUBiVPL;h;~d%O3yZ$B>Ec%^%_{k)H< zN{BC|--zpz9+mn^edSX6bmi`jUzGZ1KAp3!K>WO#!U8$==kMG(7n|i;+tTj|7pE!Y zv52l+-uRxb>sMCRIX&5Pc(DWAD2Ah`(xHlNY+_2i*Wk4Vl11=9P@f4 z4D_%PCu^aV!u~OEGA)bFbSH{aj%Do_e(&=C@L#tDRYoP1@zJR^oRN7`Vg{Ma%XzIErBSfgPK?I-N~%^NcOs><9N>ScYAvgc2WJF0G<e7PV}tFQ|h!dY`IL0@@G-v^S8z9?=BAmXM*t|`=;CT4ON0g!De)5juzApnmb@M z4tauJ{8(2JLEar>rce{?eD|<1p-Z>rKgF1eUyd}NL}h6|9$|s)spU8;D4e6ZpcU%n zA_@@X0zL+Di#>rLvSA|0UR&;i_tK$YYbcaIIECVyC%;F?KS;_0KY>NvHA-T5!`GD`xIQDPOeX)^-(Hd&;IC_i&|w0-JCyIe=*AO8_C3 z-|j>~iT!y#8b|@d4J#qhB>a*G@Q6DdWyta1c|Hb6XE;M<;Et}1BZ3&0mllq&)%7fd zSC@I~6XWEOR0QJF*%)|55r4%#e1M2EyTW|_LgvMc7mPX4d5*}sPk3KV+bCs&`TQmu4noCm?eb` zs(grzUG{5BAhp-&24v|vP2UH<0OM;xxpA{Y?NpBom*uvr_ql+~ZcPmhHOw5-I$|)1?kS*gY+63icSonQY zKUuY}Y?fp1O?>TpBIV}z7q$hHcAtj|ky&Fv(IzI;8TT~bATthV!4W~Nfr)4T1+P~? Avj6}9 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 0000000000..d40fe230ac --- /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 6a4f85d550ebf926cae0be1c43881b61774ce1c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1720 zcmbtV`#ThP7yr)1Fyqc{Gg!o?S(#jtatSjntI;${*0>a-yu`9vY8bZ$2^)p-kOpIV zjoY?SLvooJOPh?zEV9a_qA_k|9!8NV@7U*k|AO~9&-r|wbIx-yDB{Q~N4WYyyw=kiS5ND2hd4R2LV|CTuP$puD9t6K6=DP_|oZpWagiKmd z|8By?xSnmE_p7>DVf4#uy*sJ;1UC!2cKjr}iJ;fhU!ks_xZ9iP_XSQd)c6_~b*`aT zW~T!ujbx7&bm#V`P7FOuJI&a4O_VCHOc?BvcJf`Nys*lIh*`Hpl$zOPox}fyB`=QZ z`4?-8H5oj&7_&dMpg&*&R1O>G8$^`%#jpPoTAk!6)zD*L?CgJRMCaHKj6{^JN zyN)%3nI@+%6WHCiog<3DxzRQuBu2HVbI~)GJlokpTTsh@eoMje_t|sZ@Dp=T%Tt}p5z+f$O zX;bgaJF#aBfLGaE&8g?X3mf0wCi#rueu;xf;-fGRY3YWd3|o=epAVP@%T^j`KP9th zdT0hN%+&Yd(y9i2h9u9XJUu4<+!$9@S!a}|4st719?V+?5htzVEa(ub{}kOyW|d2} zU9Urr_=vlH+S>10xaX-lczw$R;4AQGjDnskt6N47>Yrd=uX*f!29TO*r4Og$0rQ3A zZrcukO{813s^V#MqXP&fqJL9ol$z4Ta*e3sK5Klh7xc9wk}YS*-V$TP%i@}9@ zWde6~!xC|KpX*iBibIq7K;&nWau-DA*EViDv3N>mbi}}wv-~0^Fh=#GTcO-1@^2c5 zz*%tUMbGOVj#Ny5iZjL!(tS5v`Nl{*R&Ddxb=Fllt6-<&M~q;RG+3<+Dv~2^&+A?& z2Hfs^O-`hk2o)oAN6RV+wPSJc$$4Q<0f}4A$bsM>I_4Q^POr)bgPP&gH#}zfQ7(?L zIbBwJRAm@8_itAawJeOS-3waf67Vw!h)z~J&4mj%JSL;c$qC|kCz&951vUJ%GQwX6 zg3FDZ$aCid*D}3f)U%=F{ClLq^Qu0LAt$21&wOcc^XgW~UDGF9CNc-}@O~3YSKWO8 zmn4kGE(sGJwYWnaW0SRXIH{NB(9eZ?kb=9sLkUM72N8S2zXSqA!F&LP2r~Nx!qyKG z@S5(P3S}>oPFFFCrJ89CXJZ}WARckw1!AjnX@6U4Xk*$Hsm5z}-a4IL^m2#bmW4(V#mn2`^Y)zVJhywY)@SM-T8wvT^l#Z~EgOYZ z*XLIS2c7sIJ=rA>oNe^}krJV@r&~6X9Z?ln$jpdnW2(X<>tC^dx9$Ceq|!rqg@>z? z_DZ+xP-3rNOSK@$*wU@^)nbb*zEwyHp(v$2sAj)9i_(qrPTD96=y(#ep@`5afE4-s zG2AB$uB0%1?I^Wxi<)vfzf3=6x+@&@`6#O4Q;Mtxh0YzQWkGcBDpO#4=aX(yAOPjw4O8sM#@f0o2-~c<=WI}a_g1F z53{&!p)>X5TTUk%OKAGT>A_RTL!zXW@Z W$ngY!J$^q-&HNAjJrnW( 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 0000000000..2cf3966364 --- /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 c970204359f8dc0500ee3654e19bac6a34a57d8b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 676 zcmV;V0$crwP)Px#24YJ`L;wH)0002_L%V+f000SaNLh0L01m?d01m?e$8V@)00007bV*G`2ipP% z02Uv@s+G3@000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}00061Nkl5JD>(CKmY?4U;=ue11`Wh0Ec%1H<7)At#fPu2bdX)!B_-pzymH6!cFAf z!BHG{&ao56#(@}^8nYRL8m+Bl01M^I4J+{|j(aa0gU|#aI`9UXlxfLyD3yVzt!0H$ z?;hBT;}C>X44k6punFwN;nmPNF-$_75|Wgx#taMrh`?4HTj$tsJa@Z_(?i3j$A-sU z#cs}w&mBLXE{GX98OghBaAK?{ukmV4WOg#Zc2Y9uoj zRpu!(z6|^t6N?%wndLI^e4QConberoSb!9Oxj1Z0#;_>ebt3*a^L@_ryNdms8J;_y z{`6cHrOU>^YN|N^1JJ9{iBT_^O}8LVE%|THZxMV}Y|e~hqFpit|pby2@J0Pl2 zEsE1bPRck6wKzm=HBwUgth8!efEH*2a4lZ&YB)30j9HaFtyvI?m36i9)mHNPCeQ+* zgl6s8da-uyEsZ5iQ~B}reHveGiJ{V0c3wHlWI0000< KMNUMnLSTaTD;%@{ diff --git a/editor/icons/icon_godot.png b/editor/icons/icon_godot.png deleted file mode 100644 index a5e371865c681d1d0c7f4b0baf6e6c021dcc016c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 739 zcmV<90v!E`P)leK~y-6eUe>B(_s|Ge`l`!Gj&PJ%1J>VH(f-8Ley1O%s#ZNkgk(% zvWUV(*oBR#pwt_K(dQ^Ms6|L*HI1}x?50_1=FR-9)D&gr)Ru0i3#XZVJn+KHdCq&z zd!F+MbKoecNkA;Q2*b67nbiP}vifY4g+?e;_1Kj&Hap)uw*VMkL3g3_I?7&c1Q3m0 z2U5ccNl$^@|1BV*qp@qMXtetu+^^Wq@~1}h#{#z~H&w_6Jq^VD`7;0_AeTg`R^hP8 zGFBj2C3S8@j{M`nf1!xmtR`8elamB|x9IUd2f&{0V9kzvOmR~aMk9ac#cWPBnIjYg zd>%r5o$Nn*hZE%w82#Eoz~`Ci6!3W%>+j;^l?UV&-)5w@oq*4SIYI$>F0aL~+H}vw zDs6n%q|QR8UcLWBf#1%xdr#C^=+wq{&6;zeN)4+`^ITqwX}U|IVWy?I3BSLQU~eae z)kZ}_2New+7*-p>zApU!Mm~OMBGLGzv1xjy+8gKTic2H+&{5o;O6(a~d>#HyU+_Ej zbO&xvCHwM^(JpqL-#m{!BWr4nE^mvaeQ4-?!~JsmCx2ZMAb%IpLyx}}K$oX)9oc;F zc+aXui`I+F+hS=8etVsgWN;v3#j10Unv(&t*QW*S$??emJ;Cu{_4_Yt0E+jn3qE|) z-99i9W_7Z4lK?nM>pu&mU`#T3i0|~~w_`y(E zAHV&w8u(P>%v@mx5Tpq7PK<~-j)`fZN`0*hRk1PSP>m{5G$Ue-b4vvx+f;cKTU#73 zf5vf&5sNACQdG9pIy3K1HJ^i=()z_=WP?d`X;dWzz$7}LQTiq)B5z-u**-Ws|0lS+ VA9(mSY!3hc002ovPDHLkV1nTxS{ncW diff --git a/editor/icons/icon_godot.svg b/editor/icons/icon_godot.svg new file mode 100644 index 0000000000..32a1eeb6ec --- /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 7478399e8b10d207a240b93d6dd81e2e8c882667..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4167 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 Rpoahe002ovPDHLkV1k6%4YB|L diff --git a/editor/icons/icon_godot_docs.png b/editor/icons/icon_godot_docs.png deleted file mode 100644 index 554280c5b4192af75fd0908f333d2dac12c8f786..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 722 zcmV;@0xkWCP);hlt`pMYNTQsXc2X0{{O${ zaQ+JuK`HUa`WO7x@SnW1S_pYm2xX5n8-9RIr=z!&5_zSp6E~04Klqui|7xHKS*L{B z4A5{odIdnidLa}Nc^4RGAOJRUQk{&^W=wZKZ;_+pcMoEE~?qVIwX! zo{E$U;phP61=4_LqJ2k@1ZIHfRVu$qN7@aPss^wIK9$p#gvqmzGri+f>PrGO_!Xvm zJknJGsA{C$knI5@3`DGVU5IpoxxN~-(hz3s?wHt&MbSz*=K5+Noxpn61rTWu7-2cW ziL3q;f&DwEHG4SJuoNLBdUqJTI}B2zsbLAVW)IE#ccA)H0C4~bpb9x1n*&EaO(+=R z^|Qy|s$y;Z2G$ts5w0rY&mR*ChHw`8z~&g%j2Z~LvqUjV@YNvuT8@);*I|8*lP{~J zP+p1p6esPjV_(a0uD<*Z#q6+VGzZ3_ihOL6Kh|?UJf~afQlS?6yJmi` zrorWoWZ6KrI8P|fj3sgVvCH;>$+Is3TmKQFkx+2;i)+fxrw3OQ$9*RM$=e%+klUmX zeuZ)aj*(UlNFl@{fpzglpuY9L9%?+->S{dK>iQe!2TJk*hO0w%BLDyZ07*qoM6N<$ Eg1CQD*Z=?k diff --git a/editor/icons/icon_gradient.png b/editor/icons/icon_gradient.png deleted file mode 100644 index c5e89c3908405d37b24f8a6bae928eb920d98a50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_co-U3d z7QJUDY~*b);9=qK_K;K-O=4k7$n$!3f}!P>=t4!0DaTlAo^f34a^n94Bwqe_U-+=6|oGwSq7yV|oyMI8JL-B`O$W`5A8e##V{o9xJ Z&*}fA(k2~WBo4Hc!PC{xWt~$(69BuTKfnM0 diff --git a/editor/icons/icon_gradient.svg b/editor/icons/icon_gradient.svg new file mode 100644 index 0000000000..cf36fc1afd --- /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 fedbf038a3048f76f31c67321801491e4ffa37c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`ZJzX3_ zEP9ttG~_#EAi$!&+~t(K(-D z`30O#9BRGhx-y=@ek0LU(==6m`*o4QRf)CTT0>U{#*m!%PSS<O9ekOEzjR2Rfa>)78&qol`;+0H+OPTmS$7 diff --git a/editor/icons/icon_gradient_texture.svg b/editor/icons/icon_gradient_texture.svg new file mode 100644 index 0000000000..553a2d843b --- /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 03d19a56bbb7fc457c0532a30882b9c12dde84b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_WJzX3_ zEP9g@Bs4zkR#@H$0-Z8v+Kx$q7kv!u-wwOEJx6_)~=Ge|-?bn*bYf)#py0LNMhO{+o zGJ9rUJ>bxCHiGxYU!&%X*@iqfepxPVWc1H?Y?|=*e-9fQ(?VZk1_rhF2JB@%Il4gS OF?hQAxvX + + + + diff --git a/editor/icons/icon_graph_cube_uniform.png b/editor/icons/icon_graph_cube_uniform.png deleted file mode 100644 index 8b4ad57c3155bdc9a974f56e897709d8792177ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmV;u0Yd(XP)5)Fb##xpbq{3nt8Rjb|k<~Q11>15SS#}9!|OvVi= z70I)t4J=G3z0%fyNCq^lXG`u<1{(dnK|bq&lCNU??M7DDsmEgg>(01Zx0?T~&V=Q9Z7dN0C%AJE_4HbvW*6mYb}{Pd zl{*JGVX$;45h3rdf)x7iYLrIKh7*6csw*K*_d(VL&fa@*2C^QO>$N}G-s+gB;um?A zG)(=z7^fS>hf=fnP-+(Abi>r|^DJoy^5d;xo+ZvO27Gsy8i0s@1GYx*BLZ$1{yhq8 ni}*JGr>&?|`tqc-5wE-e1A2@0PoCdN00000NkvXXu0mjf4dTf{ diff --git a/editor/icons/icon_graph_cube_uniform.svg b/editor/icons/icon_graph_cube_uniform.svg new file mode 100644 index 0000000000..a7ef1499b5 --- /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 ced27bd62fd529c7c774b3766e3d6cf2e4ca6c7b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmV-Q0k!^#P)Dp|3_oSW?3GYT$}ZH~g$<*Z`vg9p3oHX1-o5kE z7ywl+bmyi3o<(HaId`3uu`#Pfq}w#j{BP(R^xm&{@5OsB!)WWk191Nq*>cVum1Q|d cI!KB>0D3!NTkT#}{{R3007*qoM6N<$f*hfY + + + + + diff --git a/editor/icons/icon_graph_default_texture.png b/editor/icons/icon_graph_default_texture.png deleted file mode 100644 index cad05e8332f878d8bf1ba862646ca6ca72c2c281..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}}xPZ!4! zjfu$#3(ON*4C8E1{P6E#Gi;UY;Q<1lC$~JdxVgEtu}v~HGBPshICVbb$oh}=hqc(; zj&aq@k^q8;3qRKX|Ce}nV#wS-zn=c(@nZu5LslPOjR#kod;YJNOKTGfYQB5y|Nrp4 lRTCPoGf6C{E#a|YVDK + + + + diff --git a/editor/icons/icon_graph_edit.png b/editor/icons/icon_graph_edit.png deleted file mode 100644 index f6226b2193614328554cc9ab4b2c9a47f1c56bdf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 467 zcmV;^0WAKBP)B0fM@#m26>Gc|>#++}=- zLZNS=+q6bVlWYsEDeW_uMP0{*C^Ug!LA{y3i{5K4X#-XN)tNKr|7OmdfqTjT4t}aHyW0GRC{ zeMyrBy*O~CD8F@zkQr(!!tF@>dKrN6qEy*mZ$*j342Z->4KSr_+x( zm+^#Iz;*0)fpvr4IOm>Z%{Kr^HQ)s3r$1~Wdjxd;=TqHDzX2%9sq1`*!L0xQ002ov JPDHLkV1nmG*PZ|X diff --git a/editor/icons/icon_graph_edit.svg b/editor/icons/icon_graph_edit.svg new file mode 100644 index 0000000000..d56fd74b8d --- /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 4725bcf7b1e8cf953b8dc8331c8258275038f061..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}~Vo-U3d z8WZPUI>_7PAkg}--X>$3*qZ|rUYu21;cza?f8J59E$sa&Qq~(-)d~u1HcappVY%PS z8-MTJxkK|OemHz4ZPhMzGlw_R-#a{;W8LBLld*fz3}*3!n}L&e+D>E{nbo P^bCWitDnm{r-UW|ilA;! diff --git a/editor/icons/icon_graph_input.svg b/editor/icons/icon_graph_input.svg new file mode 100644 index 0000000000..c5034ecd2c --- /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 fec38cb3eba3812afc008c21f034e287f1755cf1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 397 zcmV;80doF{P)^<@dt<%Btl`M;dU&%lP}NY^sQ!R-hE~#v+z$TfUDQmp(v>dyrWdLuy%C! zllgLdeIR1bfE5v`6w@a+3ZOA+_JPfq&HIJa@sj}e_OJ!=To6KFP`m(&3lSOszkrOu}#eC?K{cwW2nN0prdU}dJ_L;yMqFY0^)M5F?| r0R8ZXElZU_+Q1vatuIoJXcSMMu0ML>+c7V!00000NkvXXu0mjfp2MU# diff --git a/editor/icons/icon_graph_node.svg b/editor/icons/icon_graph_node.svg new file mode 100644 index 0000000000..e5e1c1dfee --- /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 3113a18e8c650e2a1d589f65d011ffe523447d7b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 443 zcmV;s0Yv_ZP)Ta`)%7!7wcM9^q8L-Yq{U~~w6-!tA?7WJ?w zc{%4N$D4kbv#>6Jo3OEH+ql^*Rnx>bP5kxOt>W7J*s+P}o0xuD3;S)Ed_Fzf&T002ovPDHLkV1m=Lzd-;1 diff --git a/editor/icons/icon_graph_rgb.svg b/editor/icons/icon_graph_rgb.svg new file mode 100644 index 0000000000..403572a82e --- /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 09d633e722197b743359c90e49f6e478c2fc559d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}}PPZ!4! zjfu$#3)p`A|NsBt{~ZStQ?~YGNd13oJY(WS!FBUkSGTpWgvfG>B}g1{=@H*>tM82B z(UlRVY6dC`G9nIaU^vY1%UU#hg^=J1W`R{N%;XL(=ASR~k%3`{oYOyFX~7vlTNpfD L{an^LB{Ts517JC} diff --git a/editor/icons/icon_graph_rgb_op.svg b/editor/icons/icon_graph_rgb_op.svg new file mode 100644 index 0000000000..6dbcd6ee44 --- /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 dbe10c9c8ecfe0304884bc5d70761b41b75b5225..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 346 zcmV-g0j2(lP)lW<7I?wIz%SPCdzK&kNnz+&S=AJ6{B*{FyY&+DqY7^%tTC}$HARyN znAIAL&JCmTDYHfm1tviyXZ@AY1nx_P + + + + + + + + + + + diff --git a/editor/icons/icon_graph_scalar.png b/editor/icons/icon_graph_scalar.png deleted file mode 100644 index d44fd348911489b11e3ae585ce0dda9e7435fcd9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 269 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}}qo-U3d z8WZ z=F{63D9-$%baB1GuYy=LYo#BiZidS5Qp*f10~O7_8CfSBlWVy2Mo{q29k0X3+&sU# z8YMHQGo0$3v+;(;zNO0XaX+u#)_Q35;aSnvc>i~s-t diff --git a/editor/icons/icon_graph_scalar.svg b/editor/icons/icon_graph_scalar.svg new file mode 100644 index 0000000000..ba921a961c --- /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 adcfc7d8572a2a9f986f5fdf56591cdbcd89cd65..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}~Xo-U3d z8WWdZG~_zuAky;i|6Y-K3J0AfTv)6HH-48f+u2toxb}=74~J$^GmE~0)Sayp8&=%x z^|O`d;rS!+QFmTgXv)RCqI!#cO+w>SE?hYz;mv=5bMq3O_b(VFI7GH?D)Boz$!G~* zP-Db`9h#p{TCIvol>WsP`$GAPWBvv4y$AGGG{y?r)K9Ux!Fj|%Z^le+Q-OzC1tDjW hcD$V*`(nKfL;lq;LB3M{S3t)yc)I$ztaD0e0st2jR`vh@ diff --git a/editor/icons/icon_graph_scalar_interp.svg b/editor/icons/icon_graph_scalar_interp.svg new file mode 100644 index 0000000000..edfbe36066 --- /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 6459cb97598157fe234f1a94f3d812d1aac417c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v~0)o-U3d z8WWQf6od_wiqEC*u{w3&KtikYQ^CV8leQV?3C}Vq^W_18|B^WqcIpJo{x|tqfRD6d z+yDRa=MS9tFm-|3VacSPHsd1?{+Z6w-1p*ryxQddJUr7qH%)A8Y&@7U?L@Eq9Q(79 z|NhTs6}F!L@s<6VXbV#zCY>EB=a%ffnDFagz9_SDvz`ynP3s;5^#w1zQxZ~U9QrW7 zQ94o}Qdv*>xv@Zp!j~z{;g*|vS2P|zQNS{N8PJ0EkGmT^7#Q@An5pgJI;I8m3WKMs KpUXO@geCwFFKSKz diff --git a/editor/icons/icon_graph_scalar_op.svg b/editor/icons/icon_graph_scalar_op.svg new file mode 100644 index 0000000000..34f7d9b2b1 --- /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 e7e0b9a73c7991173db815f0888247ea00114595..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 307 zcmV-30nGl1P)R-;}``-L7W7)X4MtTN%w986HY}qJZ0_QCu00hgZ3TX}8 zD{?Pav$M}*ARFZZFt~^gFU)LunfRwRQ!8NEvH8yY2J}yXuJ+U@f16kV-Bv?@koZAJ zy@k}9BI}uPx9h)m{}ld?)@C*>J2pRF&igpOm3V9bYoGlZ5imq++ak}F{Bx=Q# zt%lTFqhX_)MzAi6Nzrv%4JAFm-uv$_=VZjd>MxK)`~{ZtSY6aY6DR-x002ovPDHLk FV1fnigMt76 diff --git a/editor/icons/icon_graph_scalar_uniform.svg b/editor/icons/icon_graph_scalar_uniform.svg new file mode 100644 index 0000000000..d2ee2ec827 --- /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 b8893e78cadf2ee0109df98b32d0e0326aaed106..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 355 zcmV-p0i6DcP)p@K^l30cJM-8)N02RA1j z+;np8+*MpsFxt^L)S=*96gxR2qDk%?q$LO`u@8)U!I*u1JwHGv0e1T+l9Anf%QVr{l) zo^MPI9S;}*4NZta*zc8M0r2Ec?sGfdm3B;VC@bObUT!512kV!6TG@%EO$s${oFzJo zYTsrONIQ0<9gox157+H<-xj_xI(eyOIRW4R<221m(HutpYfUNw5DqXlvdne6ol;b2 zlsBLp;5pC5{?1W*Au3)q10K^{^IFHPN?&g2`~V_YZY97~m_+~p002ovPDHLkV1ngZ BkH7!` 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 0000000000..bd3bc0424a --- /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 628990553a5cda296ba39a9c2e622462c85e4b7b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v_bwPZ!4! zjfu$#3(ONz5)u-Ae0zI4k&TT_TIs9I!$*%cwPybD@5+sdiRtlKVky8Fal!Y{a*3O% vDYq?JOct^5Xrm+QdcEx)>O&dxaV*PO0Aqn#gTe~DWM4fE)O#S diff --git a/editor/icons/icon_graph_texscreen.svg b/editor/icons/icon_graph_texscreen.svg new file mode 100644 index 0000000000..6c26332203 --- /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 9c0c758dc1411239cfb9d035568ef16b774c6f73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}}so-U3d z8WXo(GUPgBAky&g|JACNvcQGk3*QT7$=Ec@+BP`Z&URMPopOwugY~h3(?y}6gZ0%D z`px&8IGb~wubfS+bP0l+XkKJ^Nvv diff --git a/editor/icons/icon_graph_texture_uniform.svg b/editor/icons/icon_graph_texture_uniform.svg new file mode 100644 index 0000000000..9e72743432 --- /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 2a9b73dc2b5e597fe18e28e2cb4be00e5d17e536..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 398 zcmV;90df9`P)q=zC6QbdKQp-7!S zKnRiWGm-KGh=QEC-88wO@kLIQ2v)Le&CcxD>lGvsLO68J-HOO1fTIY{NPg6HJ<9X^ zv*Ai}P}OSyV*ojJM*z_G-oGFfscNmNRMj^#J0;m7*)p>;Reg`ST2*`N>#1rP6L)*u zU}i&AWmQ#+5JCr4RXsLNDKTQ)!X{Dt;6$Vg03!0d&u!fhk*BzKMO6cUc9vzii2S6E zsmOaTBy%$>0R#tNgYcIr0Fa~uFb9C;a(S}tkgk*?B6CM_8mkQc;W&ug$;Nk>*>Io2 z% + + + + + + diff --git a/editor/icons/icon_graph_vec_dp.png b/editor/icons/icon_graph_vec_dp.png deleted file mode 100644 index c395b61bb6aee0c7a0f59d0e9845a68e5f596c6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v~0qo-U3d z8WXSfS?3*cU~sv=W=B)z%Gwr>#z=D=b^W-ypDu?bV`aQHI<-&0Agj9D90M8*awDkE-xU ztIO+Qac)SdjW5fMF|dj BXtMwS diff --git a/editor/icons/icon_graph_vec_dp.svg b/editor/icons/icon_graph_vec_dp.svg new file mode 100644 index 0000000000..0b24b47895 --- /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 00cfe6ed29e55b3e10a22be6e41d9ae3498fc985..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}}=o-U3d z8WWdZG~_yDAaV5L|LHvQ794bb@kB?7kE`iW)7$5XOdmY1`K-qSF|jyPODs28fzg@ zWfD8f_bTV^3*iz@@`*fE%^P2^E?XeBOzDHYR_uFQEAPW9Em0gr?0%OFW`8fgF7Qj+ ZKP4<$P-EYjQ$SZTc)I$ztaD0e0sz+9QZ4`h diff --git a/editor/icons/icon_graph_vec_interp.svg b/editor/icons/icon_graph_vec_interp.svg new file mode 100644 index 0000000000..a3df7ff93d --- /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 af449109fda60775ae86d77b4b68f667a9115e85..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 305 zcmV-10nYx3P) + + + + + + diff --git a/editor/icons/icon_graph_vec_op.png b/editor/icons/icon_graph_vec_op.png deleted file mode 100644 index c4e3cf409a01106f64d0954db90c23d374da8ee2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v~0)o-U3d z8WWQf6od_wip%z#vN(0%KtikYOF{mPFSi-U3D45u^W_18|G5(?bpmGpoBYTp$IOZM zzx??F2YyUl;KsjEvPUk-_`$!g0`qrvOnkYXQZP2NgoFa|nWc{(`}=+V|NsB_ zrp~t&Q$NZ-)14#5$tV^hWPN{0roo@z`(D{IFV^$nxoO>FpstYp>->QUCr%u&Xl;CG zZ@$T5liM0IBO`+|=?MqqonL6Oug^-6zR1-6kwdPw{i9W51Ovmza8s-O^S|u|dWFH$ L)z4*}Q$iB}i>7N3 diff --git a/editor/icons/icon_graph_vec_op.svg b/editor/icons/icon_graph_vec_op.svg new file mode 100644 index 0000000000..2792d63378 --- /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 f7fc3b054eb34aae555e7612d161525f085bba61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 299 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}|@o-U3d z8WZPEH0)w>6mX5_Rq9yT)5&gdGr>{7CHc8nl9F&WL$mDxx2Cn72`@O+!i^6mOtw9o zkhCCa!Pb*KCEbfx+rRo1y1y>ebPwmoW(~e@2j#^jl0O!QNmZKPKbJ%V2^X^=(($Kj}Vno_!t(&^J`*idA zC#ei8YQAgAd{Q{~k?}EC?wab`tIGGB5wr_>clpP4KBf(vk8iIo6KvCPoxP?5=vgz#G7FUNR&QuMGu$lL8{txDK2aCn~9VW~H`jx@c)z4*}Q$iB}J7s$Z 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 0000000000..effcb596a1 --- /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 b0f2a9c4aecc30fd588a12976c930e677734a1bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP)0950%j}Mfg&J);p@JrY0zxDKBB6VIn^r1(05$+`V)Q{IbR8$H$EpeB356G!M74Bf z_m)D}anf?6rwBZPQMJ@q@6F}{;Qr(2Q4LaC(zlo|F-Y;Zr+n*a^CG()>vQH4LioFJ z*{RaE^3u0FJxuNv&x)V3`NEBrdc7a4Olm+E$OT5XI;U@$NI1ijgqdOy<_L7FbNrr( zgaDPp{k}0`4|oM~(&(F55TJZg{u&!u1D-*cIA&pf0N4Ry5o|`E3;+NC07*qoM6N<$ Ef{W9d-~a#s 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 0000000000..2ecacb8434 --- /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 b5217badcfc9a39c0ca175211e658f5691a22753..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 347 zcmV-h0i^zkP)1neW^0|wN7JGts+*pJ}n+r#N)iChv%)r8m5rF$~t5@)>6~AfLcCIFQ zpaD>!2<)b*g#CVNJvU6m9jh=@*fwe&2DfMBT(DVgPaUp->JW5O#dZfb%dwdk2OI4v zxCYFy72AEg&c*_8H$H!~UiYjQoCoW{dcj72^}Jt*%v1TIy>GH!%wAD-F>#*WOHguA z99l0G=Vj!+sBfKKelESS_a2lW4nZm)qn{)jEnw#(D8 + + + + + + + + + + diff --git a/editor/icons/icon_graph_vector.png b/editor/icons/icon_graph_vector.png deleted file mode 100644 index d78a3fdf5cf419dad1a1e352e336272dc6866842..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 345 zcmV-f0jB00000NkvXXu0mjfn|74& diff --git a/editor/icons/icon_graph_vector.svg b/editor/icons/icon_graph_vector.svg new file mode 100644 index 0000000000..81772fa4f5 --- /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 a89166768bd730f9877692ddb1d9667456bd7389..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 390 zcmV;10eSw3P)Ivw2I=f}U|BSm0qlB158U=le`K)uk7>W!|o%2PD`E0oK&uAhIkWaRIm>RP(YUGpcUZ|Om zYQ!aX1Mu~&ONk07*qoM6N<$f={Wci~s-t diff --git a/editor/icons/icon_graph_vector_uniform.svg b/editor/icons/icon_graph_vector_uniform.svg new file mode 100644 index 0000000000..66f31bf5dd --- /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 142ec3eca582b3b82f617e67ccbb84aafd7a1563..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}~1o-U3d z8WWdJGUQ@16mf~4CNfW + + + + + + + + + + diff --git a/editor/icons/icon_graph_xform_mult.png b/editor/icons/icon_graph_xform_mult.png deleted file mode 100644 index 94981d81afa02f7e3ed1bec176aab7b896b27f9f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}}Qo-U3d z8WWQfB#at9hNiuH`2YX^&9%Qj9-Y?+1l`Tg6_k}9>u-EHIag9bLZaa0W`jTf^ADdm zaNxk%bGI1`U+N6mRw^oo_i} z$9ObAdd5G)KkjA5t8DJLZIlewQ8at{Cp{q{p@E&Rr(dlr`MT-f#F-F-J2Q} Sp(jB1F?hQAxvX + + + + + + 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 d0edded8b09e1108503180156b1d152e210f82da..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}}4o-U3d z8WWdJwB&*yu>$I(d-qgO@qR;k6K*YEFJt340>;MOxh}N zR3V;bBRo$TB!LUoUsd8tw`u5}3EdnQG%uEP8p4HXl;`?QP z$NR!X4<~bU|Kjz@th~}Ijn_vVUBUk4 XnYF`mod+j@eq!)+^>bP0l+XkKAkuMl 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 0000000000..350d9e98d7 --- /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 9e2909969f41dcfef494991b02bd47a8241a1ce7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 352 zcmV-m0iXVfP)X+0qUpt&K9f#{v->VB=R!X6DH^bKswmv={qN&En@8*WU5bD7E)Y zD%5WllSH~e6(I+(5)Q7yf>CZ2Hi0N>%@KfIiaKE-&P=)>6%mOfD?v~^dt2H#=!6Aq z+y$wCME;8)*q9>t8P4c5ypQwAws$ab;GN3k>EaQ;S6{cT+K)Yxgo zJBcPazrVY6F`At(Y^)x)#`sJfbO>4&YkPMuC+jQW3}@nO9dxLwWp7RI=5>l!{;_)4 y8YjYmz%x)b)?B870JU2C-59L{j|g!ZvoPOzqGTC7%wXXF0000 + + + + + + + + + + diff --git a/editor/icons/icon_graph_xform_uniform.png b/editor/icons/icon_graph_xform_uniform.png deleted file mode 100644 index 36ed91e42789d471f20acf260eb819d6310d2488..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 310 zcmV-60m=S}P)&uu$gxDYL0YN^A)yEfJWzc{$uya{xu2fl-nX$kgyQ zFdKd~MgKOQygC$uSl07*qo IM6N<$f + + + + 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 3866430f72a79ea45b4ad5eec5ed0a84df07d68c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}})o-U3d z8WWdJbmTjjAmDaiWaH~aOZ*;)Trw@}%-g+DKsx3Cqe{}s=@Zs@#vI}_*_Eg|wU2d{ z!hWyX-7`;~nf;T^%gd+rYh8f2^<2&$9E(nQ`ET{yZ@Zr%q*wTDiP|B9{?>&z!dcxI zu1ycEVF+BkIOU%0%72^lRFo_j?p{k`7dXo3uz1HuU)%DZkB+xn2Fkq9?>#2%t=+|J zdhx%~vu7^t3XTO+&IoHUaTVyOXtgjjZDqY{GbvH=;~TYP>%6RgDXFDJlQVAy_v~Uk X#&0d7^#2Ag&{qteu6{1-oD!M + + + + + + + + + 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 07a7e214c2c2d8263394fca5d57bf8e0334ae370..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmV-N0l5B&P)XI_2-f5r^pyx&|{pKd<^T)Z{sH)h(8 zRYS3}cO_~3;Y38 z7!4sSo4EhYrv0B~;KWIpYTIB7z{yTWyjAn=_Xx}T=`*74wU>A{tLLxjHJDpGtSx)} z*2g7)zzpH+Y_L}xn;|dGv5_VRSFk2mgJRIDd>)Zi7py%`d ZWZ!b)R@6}mmfipW002ovPDHLkV1gMlk5~Wz 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 0000000000..edb68ffc4a --- /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 8048e755c57da1b8c87e1e9c6d98d1dfb41e1863..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmV-W0k8gvP)4!K~yM_)sVeP13?spzdJ4}{#5FwwAB|77yN0IHFe@UYyvjo1NaVx zY@Wer?FMZ`jHXw#6)Tt6iHP7_i=AvXpbwA_h8gahd(Yv**dS@`;6_y^KfgY<0cNJ> zu0`bAk54uSqRW1Lb!VaZ3~=>cU)f!3K6$8a2rxS}f1Js54b^;dl19mowc*8EEdVga z-X&?&@rK@d^k*iOM?^y->??GRoZSsRiKj9 + + + + + + diff --git a/editor/icons/icon_grid.png b/editor/icons/icon_grid.png deleted file mode 100644 index 1366205fe0dc12fd2008947df172c4d90e357690..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^po-U3d z7QM*{3j_>|3=9l(?*98~Kjr^)kJ>XlKyY#1ogSYlyBb(;KFjdW6I;>!PvCHRLPElV z8>|})el)9{>v?0OQ^Pi+dxaQVf$+pw6DhV5zUIc$+#<{jVjk8q + + + + diff --git a/editor/icons/icon_grid_container.png b/editor/icons/icon_grid_container.png deleted file mode 100644 index 027e992770d6b463960b50f5b62b65950ff7383f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_=o-U3d z7QJsLS@Ruo;BmSChIiVu^Q{@vvsQlhdBV`amc=*aN + + + + diff --git a/editor/icons/icon_grid_map.png b/editor/icons/icon_grid_map.png deleted file mode 100644 index 69a431ccba80c7b5b8556958c468cc6dd05ab5ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@!JzX3_ zEPB@l2l5?K;Hee){%~%{rXv+XhYZiy9Gf=x$PArXZ$hkYv~MtA%jw+5&!n3hUn%lK zQ0HmI^{w3?TCenPY3!cq!5@5?Bfebw@qa_6*%?7~?jmBG QK+iCEy85}Sb4q9e0Bc5a(EtDd diff --git a/editor/icons/icon_grid_map.svg b/editor/icons/icon_grid_map.svg new file mode 100644 index 0000000000..eafe1211f2 --- /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 a75871188b6a03a1f8a85683a9475bbf734a25c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP)6Q_WY|3=9l(W?m|o zB6HTzlJ}Yq4>NCDxA?j9JU{*W(hh$y?OD9h;1w$y5HReUB_fc+-R}=Hfx*+&&t;uc GLK6U;%Pyq= diff --git a/editor/icons/icon_groove_joint_2d.png b/editor/icons/icon_groove_joint_2d.png deleted file mode 100644 index f65dc2b6b8fe8573ca80808868b398e97968863b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`Mo-U3d z7QM*{3j_>|3=9l(?*4nrug7|EUX0F;D=yVV8w~ + + + + diff --git a/editor/icons/icon_group.png b/editor/icons/icon_group.png deleted file mode 100644 index 5ffc90455e88012bb43bb3ce124b295c69efb75c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^>o-U3d z7QII&JMtY+;9xnvjQ{5Gui?Ke>MqU8(O4O0Q0T|SHQQCulhI(av_sHGPvhNe-?QxN zQ$**~&sClj74U7{Wv*}HFM=g@+PVfs8?(k=e7}2>#P>Jmg)`Yj_vz=f{kP6!&6JZl WB@=qyH18GAMg~t;KbLh*2~7Z989t@} diff --git a/editor/icons/icon_group.svg b/editor/icons/icon_group.svg new file mode 100644 index 0000000000..5e700de162 --- /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 84a05560a9d35bf6ef084c75ac1156b149fc788e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`To-U3d z7QI&|9^`ch5OBHQp=Xh!Xm#QE`c5wq2gTU|$Dbd0=*{x~&>XYLdv2cP`x966T`(i= z)8sp~XLl~R!)|<8xF9}8Esguj0WKC}>2);?N}TT+xK^lsHUATQAbBYxV}#0C!(#=9 ppJzOLE4(>dr$Mv%eB%B^yz8GDUA`NY>kM=PgQu&X%Q~loCIFqBOaA}> diff --git a/editor/icons/icon_groups.svg b/editor/icons/icon_groups.svg new file mode 100644 index 0000000000..37e40749b8 --- /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 0000000000..ac023b7030 --- /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 8f1d7d8b2c1d8ae8c6af3058fd10f795dc39ab80..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@$o-U3d z7QM*{5;+IvH#R!5^zY#a;q^P~FCiiE?U8{Ci`I9R>57K}Sp6j>B>0RB3_1ig-7g3% zGF@!_Rdb44+GB3{IeG`PjfFR=O=8mc#N^uOQD_o0XF@{Tgt=4LfmXB4)wVgt5V{*^ O7lWs(pUXO@geCw5g)`{@ diff --git a/editor/icons/icon_gui_close_dark.svg b/editor/icons/icon_gui_close_dark.svg new file mode 100644 index 0000000000..e511a5d74a --- /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 b8e3a80e3b72695cbf7f43668a5559c1058a36f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_=o-U3d z7QJUDZR9;tF8`ntwT^Q^S;EuWyC zy{j*2ZDl$lylzjj{{cpe>H93i_hxpu7I$xBsoCzqeIkAJpUqWFX;sYf(%WAj0y>Pr M)78&qol`;+0Av7FZ~y=R diff --git a/editor/icons/icon_gui_close_light.svg b/editor/icons/icon_gui_close_light.svg new file mode 100644 index 0000000000..ac023b7030 --- /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 36cef0a03c56735baf4b7661bbf31f3f1b3da911..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_2o-U3d z7QJsLZ{$7XAi$EozgeC2j=)P{+mF{%#2e-~_&ApF$X0mfbTV+t1^JgPpS|}9-#-_I zzkjPX+>zWCU$yvc(Jh&L#)L_?xg- + + + + + + diff --git a/editor/icons/icon_h_button_array.png b/editor/icons/icon_h_button_array.png deleted file mode 100644 index 81b2bf79e3a2d42c38de0e0e71b19321ff5a175c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 298 zcmV+_0oDGAP)uRUQC$NLNajz~I z5*-_NeHjR0X`Aq07i<7&A!!rOcVgk zU|9@JA=i_^&AhY0OA?J#cn1o=E^7r~i*gkV{EveXHd($xW$~xE@|>@|&nns6kpmE3 zhHGH{nnkfOJe3iq<1_#Jko{eRKG=7e(_R75JHRcet%yDb=ePH5P9_(=)E(5t0IsUc wx*RxFK}+3h62Fsc5xTx^Q&h##OZV-zqW}N^ diff --git a/editor/icons/icon_h_button_array.svg b/editor/icons/icon_h_button_array.svg new file mode 100644 index 0000000000..3f95dbbde1 --- /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 c6c6daf7a42438571660a83103ddadaf195addb2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 381 zcmV-@0fPRCP)9KPpL4&AhCs4WYiez2C`t&N8#5Pc&4{M*2Yh=r z27Wfvp=k3R&*ePtb1sa04B-6ra!sa4ko@D`3!;!u zWUm~6Hz1-pZgw8Dyjre@yA1;+MV|RW_~AUx%OOhz6hiT1dOHkW^fQ%=)vy| z0REdkfIE#8#h&92rGCY3Bx>XF_EANZ0D@?k!NO!Su^(FKP3#V7+Rj<7{n4}{Xt8%1 zz**y>4x|t*$uby$nQp%UywXCFxoeCGpq`(~&W?TgQNV~WQf9gvcB^+*?eqcEB^7@8 bo>9psclmO5&+&ZE00000NkvXXu0mjfM#ZIQ diff --git a/editor/icons/icon_h_scroll_bar.svg b/editor/icons/icon_h_scroll_bar.svg new file mode 100644 index 0000000000..e0118b1186 --- /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 8ab1348c3bafa0a022e2a90f06a5bb470c39ddc8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@@o-U3d z7QM*{5*Y_Nd<$OwHvPY`)1A95VMY3)E36{Y1|J$GHZqnk5M;X8q}X# + + + + + + diff --git a/editor/icons/icon_h_slider.png b/editor/icons/icon_h_slider.png deleted file mode 100644 index 156364e920f3cb9f1e97cbfb9992368cf0fd6878..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^rJzX3_ zEPC%wROCD4AmDmGM{7dB$;byR9!*-4zW7}+U%@+xdCKPvQjYeEOqOgAWfkJ^Key+J z|FgsO0c`P84~DP*;c0wnjX%o?wbPa5#ozB<$d=z3n{fQbC(E6x@9Np5mEQZ+DP9g! z@cd~ND=U<-Up9YHr{(gS7TjB}vfdCmFz0RK#q_8b|I5TXdnH*FcJKIe_k;XHE@wl- VcekG@6apQ{;OXk;vd$@?2>=TZS + + + + diff --git a/editor/icons/icon_h_split_container.png b/editor/icons/icon_h_split_container.png deleted file mode 100644 index 65ef8655dd4020a6ce28343e57d916c885f19563..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^TJY5_^ zEPA(2GURJ=5OBROz^}0FQK!ySuIzOQnk7}tmJAyMviVs|r#jh(>Cd14 z-=-KF1Tht4t@9Su6?xXTH!AeA`65lD9!6=5+e19Q|L1;~7}w z)=Pc0cepukb7J1QYW)M7b#@;VxO+?C8E?z($?420mwzzK+An){a>3Nuo37b=9I`Mz zdyXNzm+i~+2 + + + + + + + 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 60c6845b33c7aadc9a7974a12f944e19448974e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 301 zcmV+|0n+}7P)S2?~90>fdUi}IeYI5z@aArz%)&d5W@SS@X`D3?;-FtJXIaqbBWoGZ-4>va)`?o zY~9AzZ){r$*?!TVl&`9`8GB)>I;iUF7XB5Vp(u23Q?J3g00000NkvXXu0mjf%e;Zt 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 0000000000..27812cdd68 --- /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 83309d91d57419ef263f83607e9eacce36745b70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 350 zcmV-k0iphhP)+zc~^JB(Y4J1rx|)XsxBbfW>uMi@m}%T3Gu4 zip`xs=BMH4?w7@cV$@~ z{FtB{JMZArIF2W)+80G}2Al(*bzLWEntqG`x}8H2nfAc|#+VD>5!iBF_t;)xAE0g9 zt3KGurOhk^+W@}rzpSIHs(S8@i7f~KqA2=WC&;pF-W@|*@aH)8r6>voFvk4)VD`J6 wjVJgw!P`(!L}s>NJVYWQv$k!=Lz}M5H#ja?DHet*(*OVf07*qoM6N<$f@zbMA^-pY diff --git a/editor/icons/icon_headphones.svg b/editor/icons/icon_headphones.svg new file mode 100644 index 0000000000..e23a6c54f0 --- /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 d70807000eea92cf39a86e3ae07f7aa6d33cdc47..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 353 zcmV-n0iOPeP)-U0UY8f zrJ-}KZbwKd4JFN-a~VzZqdLa-JTS&Q#u)F7G1t3-NP3W@LwqzEeL!amlG=aKWykmr z4?0R-LkN;I`;G5;kWFlw=4F>8%Ra + + + + diff --git a/editor/icons/icon_help_search.png b/editor/icons/icon_help_search.png deleted file mode 100644 index 7a1506853edb533352a3ebb745f74527fb11c480..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 431 zcmV;g0Z{&lP)2_b~OF=i$rrwzov zthHy=Svv~m^ZAJ}=2JQRO;tYtIgqRB`|V)>TTi;(?sMP~@Fm9hG)>c=Eho0eVzGD` zLg@c*zhqffxw=x->1MOJ1aQv17LgZ#w%`xF_fkJ$AR=Su++SvqSO2!O;862GM9x+9 zbID%C6A|e&;okc@sC_|1c3vtXoi@D5gR1zZC<+mg@gaQMgO#dI*X#8afOC#Yb_+fL Z_yY# + + + + + + diff --git a/editor/icons/icon_hidden.png b/editor/icons/icon_hidden.png deleted file mode 100644 index ef3039f580cc444d257ffffc19bfe2877e86d2ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 345 zcmV-f0jBmT?@fvMihI zhqEl3#Bsa=mcX{I>w5qL5Cp*taGrb-MbUw^_O|c)Hvp~mF>oa!hX6{c#%C%65QgEW zbFTD_G;jnwYOVJNEVb6Hh + + + + diff --git a/editor/icons/icon_hinge_joint.png b/editor/icons/icon_hinge_joint.png deleted file mode 100644 index 246ca1ba42f33553baadbd670bb725054d3828cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 353 zcmV-n0iOPeP)HGLtzMlCqQk@1PByEjfEgU zfG=q_hv;+6k}SNyG?FGmtbhNDVu8?(HaqI(+@vj>NfBljlPj3_i>5 z8bzi~r#s@@3viJcv$v^1A;4OD1MC7bzt@}B0%#QNi^w_Poa&{BXe~f)%oE_F`W%Ge z>!$D@fQ{o5;21~^jQ + + + + diff --git a/editor/icons/icon_history.png b/editor/icons/icon_history.png deleted file mode 100644 index 478291823351b9d7fb6f9ed13b20b4b612d7ed7c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 437 zcmV;m0ZRUfP)-e>1b-6c-h27IfK7kwyiz5xGxbVt!!qQF zu?_qMR=xK(#+a#h0#OtlR%E5rT9##3TI;UXx?8K&u7wc4OW{?e)WJIeA;f+;o+L@~ zGM+t6)7KEfDS(u6A0QgLSp;y--3{vkSZf17zu%vgQUWXu5?E_5%7b43TI;U0_Tr-k zrIaJZM-EkD1$~98z!H-m=@a||?n4O2 fd7f`n + + + + + + + diff --git a/editor/icons/icon_hsize.png b/editor/icons/icon_hsize.png deleted file mode 100644 index 7be48946b4c2cfddc0e9829129a3b1f45854474b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`9o-U3d z7QM*{60BEP`Q`1_s5|*u`<>;Nv-#nEqJf=X?vJxsi{P@K|NsAI$#rMz>FJsK>C>mF zK0HA1|KH!=j$LUQKl%>suK! + + + + diff --git a/editor/icons/icon_hslider_bg.png b/editor/icons/icon_hslider_bg.png deleted file mode 100644 index e3c61f25e0d7ea5dd60a9a97a64f06b15c71a24e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UjJY5_^ zEPCHwSk2cQAkgxV-_OJMs-f?Lzwx|0M+4d!ig$2GaYWQ@KB;27d$Y|QwcBTe1dleR zJG4tBdnC2;AF{vR)?i-rrBdke&&A@4rWAEsF4+Cx@20YUOE*k^Y|oQ%F(%^IhT|;9 XrgDqOP0h&%+Q{JP>gTe~DWM4f6Sz=b diff --git a/editor/icons/icon_hsplit_bg.png b/editor/icons/icon_hsplit_bg.png deleted file mode 100644 index cfb76f7dc72fd1c2d67bc2e4f645ba508bf68507..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt_lo-U3d p5>t~?5)urO4lvL7;K?V?%3veF;Iwr!k3CQUgQu&X%Q~loCII+b7vKN@ diff --git a/editor/icons/icon_hsplitter.png b/editor/icons/icon_hsplitter.png deleted file mode 100644 index 3ac1dddf904862c1d06f2e24a2363c28fafd0ba7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^96;>A!3HGNSjA5L~c#`DCDorKgKy zh(~8~f&%NG|Nrkl|NsBL-H9Zfj4YK4riOw>r6C7bGzGFQ=5iD5(UJ&t@MnEd`kmWJ a%7B64gE@y_xswpcSO!m5KbLh*2~7Z0kSG8E diff --git a/editor/icons/icon_iapi.png b/editor/icons/icon_iapi.png deleted file mode 100644 index dc2639da833a24f07a5849b57d00e401d4f14e86..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*x37`TN&n2}-D90{Nxdx@v7EBh@bK~`oi1@%5xpwLuL7sn8b)5(9% zf0)lG9Z;TfT<_q40|mwZ{oN#Hvrd2ZHO5flQRDq-2_1$L7e$)>wrR8AHcL<5%sD%4 zOu068`je z_j>bXOBfg#{QD2IPcTx^YJP&kBJE?#B-bLGNvC$Lo1DOSa!$&%ZMl33uaDb$I2cX-GU1EK=9(3=BmIn`MLo0_RT%vK+Ds^k z4L|eyapghF^5|W!)YY0k{%-s9zg|GaU~^XXg)?#0{Ok;S7;}7`Pi70QZ2 + + + + diff --git a/editor/icons/icon_image_sky_box.png b/editor/icons/icon_image_sky_box.png deleted file mode 100644 index cf80258577f1734435cff0a0bebef3c366c2a976..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 434 zcmV;j0ZsmiP)K~y-6rIN8q13?gmznR+<+8G-mY9sar3p-IPQuqpXLSp431dD)n z5v!#36$HUb5J4rcpiP3<`2xCYv9sB`#6}!g?rv}9o0)$G{%Hcxx(m20%juR6q@o7{LG@@Bu<#70(b@cjmLI0)-mDf-3+E_5r>cu8dWTgv@EzE4`c-lgMwge_=eUoE(JIm{>Fczi# c%YgoFKP$&%kYAFnB>(^b07*qoM6N<$g0jZ7oB#j- diff --git a/editor/icons/icon_image_texture.png b/editor/icons/icon_image_texture.png deleted file mode 100644 index 7c4493395ef189a22396208d4cc4162cf859bb95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_&o-U3d z7QK5Xo#s8PAmDO8;$8Dv<*qw>G*h%Wce0$EcCbb#)z9G3SskVd4aObSEOE{YM4UNp zf4a?okU?{)`GG2vvpJgb_NVXKSKej4vvRwkFMG-ku}#y?gk={uNyU89XWV->a=P}6 vnah~_-rrvR|4(yT!x9TFuUqq{F@IncRMoC2DOflU=nw`^S3j3^P6 + + + + diff --git a/editor/icons/icon_immediate_geometry.png b/editor/icons/icon_immediate_geometry.png deleted file mode 100644 index 1ff997692183cf1710f415688f3da5d6b9cdf851..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 411 zcmV;M0c8G(P)UqK~y-6rIS5N13?gm-?_Ookz7Rogq;XMOTB=N3U(0`47psuPFsI~ zKfuDkkpoFcqgV(kD1v=jTfe_slQhxXW^7dUBq1l6^4WRbomp65z@q;&OSwF%f?yva zDFQaxb&E!1+4n~}?e;lD(f}+0wg4bffb8xLE8t9k2@PLH3Xp2mQc9fyNNM<*W3lDF z0aB?9saER + + + + diff --git a/editor/icons/icon_import_check.png b/editor/icons/icon_import_check.png deleted file mode 100644 index e72a30603d355b79bb1807d9682e3fc1b4988cfb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`pJzX3_ zEPC%wFyuPqAmDnxW$Fax7n)nVau=3yam_oP#Qo8t$yaOpCoVC|rV7S`I+C*`I%Y4J zX7%>n@Be2HobRvUj=0NTHN)rPZMU$;FQRVLu;<0K~g?VI-P%bI>i_JqKfH=5~TVPEI3xYQx)%R6!NF8Mw0 z?zGHiy|hf@$I1ym^xi5gSi83BT@D}9A%O~ZcE + + + + diff --git a/editor/icons/icon_import_fail.png b/editor/icons/icon_import_fail.png deleted file mode 100644 index f7dd6fd79ab2d779e3c5685369f4bdcd5a79f359..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 346 zcmV-g0j2(lP)eAK zg7&FQkvCA{Biy)S;d$onHdtn0VVFPPd^6v|u1$U&n@(SG?trqqmJrsdVhbU|`#a1^ znM}?BT%C1p53^IeFD!&?OLGDA5!tWX{i}2?88JRr z)0fpd#_TbrP6Hru?JJxcutgo%{77vDHg-;_BjfRVlR=CRHEq?ihE$``C#skAI&hy_ sK@nM`qymr-)~F5Px#07*qoM6N<$g088PumAu6 diff --git a/editor/icons/icon_import_fail.svg b/editor/icons/icon_import_fail.svg new file mode 100644 index 0000000000..e088126043 --- /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 6d687735e9f2b41a7fbedfa85fb56852eb1e4042..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 303 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*x37`TN&n2}-D90{Nxdx@v7EBh@bK~`pl1E12PfkNv&T^vI!P9L3Y z$aly<#Cg7;@`W!6cN$xn4<0&o^8wpahO`CqSyY3%yN<*Qx%Ta!`~JiX)vZa1f7={R zIBniLZKlSEkD{O$rWcT$!<3B%B%(NyOxXJsBD|H@IjGX q?Nk>@;e`fgWlSeaRQ&yGZpSFF!zRR7OIQc!bOujXKbLh*2~7aq>Sw+H diff --git a/editor/icons/icon_instance.png b/editor/icons/icon_instance.png deleted file mode 100644 index 51859a04252b2b52c34a2c43bcf06fd28bda02aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 442 zcmV;r0Y(0aP)4LcF53KDQ0bGhgSLv92_!L znxQ|S#6^mGCfg3F;t-;%n?s>Punh!>;FQ5dB!0pA%rg?vI=xV z2vrez8{3^b0yAkhr{Fc9tE!t>mK_6I+=loXK&RkKpe!OS;4qiVbtbU8KXvyyunl}v z)!igXZXkYRzu!Ltc7PV}(%swBaH&-KHE+#Hh!p@cd*$vI5xxSRiAa4>P7?tK$mjDe zB7cEzz;mDh?B7S=b9C@7gs^93Rp12JC8j;E1fbXJJyzAPz{*U2sHz*2z~(wg)AYNl kuDkmw@H?LKW$=U4KdG#db0rc7f&c&j07*qoM6N<$f(M_z0ssI2 diff --git a/editor/icons/icon_instance.svg b/editor/icons/icon_instance.svg new file mode 100644 index 0000000000..8fecb9696a --- /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 ce6810ad271a60ed468374d0074e2706213567e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 365 zcmV-z0h0cSP)+|?C>h226TA!D4+dtKZ_W$@|1J5*(Cv2Tq9{s6qtSh> zR_lZi_J9N6!h63P0jTPH2w|bf*Fy-Ws=5y#BAdXubM6ShId=&x0d;^#RaZsi0XQxO zZh>tPIaJjOa3UgSW_G8ll{k*C%xu{?w+0|tmdy@_!wzucoZE`y_(@eaMC38g^Xnu@ zo`3ae;}U=nf_-P$doR&XFPI20vxfIx-iDbqJ`E6&R+^?sS*K~5h)8RacV^0ERWob% zdc75Ze!t%as$T&B)CYq>xwSscR01+!alC0}JMSz2UVqRmAb+nH-85{DNsTO`00000 LNkvXXu0mjfkkFP_ diff --git a/editor/icons/icon_instance_options.svg b/editor/icons/icon_instance_options.svg new file mode 100644 index 0000000000..b15276c997 --- /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 583b9bda0bd97d1137ca58c69e2f424ed5650d60..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v_cfPZ!4! zjfu$#3c?19xaXX&_$oi!>9AyyM%K&|TLslE=6`%;uXkH>Q(=g*t_k0wDb5@W436*k VLSxOZMgz4oc)I$ztaD0e0s!tjB?kZi diff --git a/editor/icons/icon_integer.svg b/editor/icons/icon_integer.svg new file mode 100644 index 0000000000..bcd952f635 --- /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 c723f7b648128fbad7df81a6e75f0fe7c81cc49d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmV+!0p|XRP)?sUT02x;Movq}ene;JUdpb8;{IQLwguuBxiHUjc2~ zo~!B;ke{sHV~khc`@`H!=0gZ!rK&q17m>y}w|360MWg|8Ro#UUR*MOSVJKpZ57RW= z0Q)pe>nzJYzQE%+z5*8_(x~cfQ53^Bpzr% + + + + diff --git a/editor/icons/icon_interp_linear.png b/editor/icons/icon_interp_linear.png deleted file mode 100644 index 9d130b4507bf3e69e50cb365bed5a36d02e83e6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 271 zcmV+q0r38bP)VKM;9f_GbHZ*hV9%>y*-2(=rDcX z^epMB+uCS%Vkw_iuZBQTS+{fYNyd;ynv VR3wmVn$7?K002ovPDHLkV1iclc2)oY diff --git a/editor/icons/icon_interp_linear.svg b/editor/icons/icon_interp_linear.svg new file mode 100644 index 0000000000..00b5e326a0 --- /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 93ade1d674a5d7dfc72b29ca5e1fd0fc62d4058a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~c!3HEhl+{lMQfx`y?k)`fL2$v|<&%LTfu1go zAsQ2x_8;UupuofIdsIPgiO+qWN4^gZGY14U?pXfVMf|~}Eo_tQ81gTePfF#HTP~uz zd$WwGr(fBmRo6fB^qu(o>;8S==FW*a6B~2WzMHi23a@VqWm5tg&fw|l=d#Wzp$Pz@ C%QnaW diff --git a/editor/icons/icon_interp_raw.svg b/editor/icons/icon_interp_raw.svg new file mode 100644 index 0000000000..140ff2b0ff --- /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 1024bd7d29ec5cbc683b486f8ece6933c636c6c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~c!3HEhl+{lMQfx`y?k)`fL2$v|<&%LT^E_P~ zLo_BX?K9*$6d>So{}lU2rfbn}c&}VKa`?@g z4-fn~9j=!$E?70G_};Q9c?W_+`=8dao4ucV%9fGNw&|9z7O&WJy*Hg zLqKqAhs?eJ`-Z>nP4Onu5^WE;wkY?m>RRRHa%JhIUB6Qc51gqgw`c6_*mG>pk7IZJ f)2{vZw!JLv&*;& + + + + + + + + diff --git a/editor/icons/icon_interp_wrap_loop.png b/editor/icons/icon_interp_wrap_loop.png deleted file mode 100644 index 3a7ddacdb2ce73abeb11b0930992825d2fe7ce63..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~c!3HEhl+{lMQfx`y?k)`fL2$v|<&%LTuRL8G zLo_DV1{(SuF%X!uQBUM{{A9Iv!5h$EvQcu6m(p?k7R!>ZS6RBUoc5dg=?{(FF&I}p1zd5;OXk;vd$@? F2>|pJdoln3 diff --git a/editor/icons/icon_interp_wrap_loop.svg b/editor/icons/icon_interp_wrap_loop.svg new file mode 100644 index 0000000000..85d17cb50d --- /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 c66724f513efe2408bb88a2f2b39ca619e5a423b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^cBr%R22rl|Ih z{L5~R^E{_5%bKfQx4iB3+S0r!Ys0KV*je>WrmC`SR%BS!EH0NU5R{`O-{}#MAf5cf aG*42*KEUGeZdahc7(8A5T-G@yGywou-*0#T diff --git a/editor/icons/icon_interpolated_camera.svg b/editor/icons/icon_interpolated_camera.svg new file mode 100644 index 0000000000..7a33c64ca2 --- /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 8ebc6d6addb7ecbaa4bb0f79c5aab26217de8123..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt^lo-U3d z5>spYck?nC3b@P<-zT)=jI7K=ZHK&^tp`h=>T#Ty8_=>x6~Ud2ld$(#)A1;_WYHWbbizoT6c+s3~4e$%Vq zAFa9E#m%qwElPir?)qL;X;Q-%wS8`WZ~vbapE<>%EK9LyEzmU#p00i_>zopr0G4e| AqyPW_ diff --git a/editor/icons/icon_invalid_key.svg b/editor/icons/icon_invalid_key.svg new file mode 100644 index 0000000000..f1df51f7c3 --- /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 dd404765d39bc9bb895065b35cc139d8dbe57d8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_;JzX3_ zEPA&F9ppV^z+h>NcISyMT$kB$ip8~$7@NthU_;giWy_uf%AM4w@S!(M@% zN1gY*f8CMqK6TI5S8K0oF4x>=amdHq<3aV?fXy6dH#r79xLJDpLz*DhI>YHA3X5v{ zPPIY%u6{1- HoD!M + + + + + + + + + + + diff --git a/editor/icons/icon_item_list.png b/editor/icons/icon_item_list.png deleted file mode 100644 index 3f5245d520ff2ffd51d0c203767dc0378d39b80f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_=o-U3d z7QJu#4f&cJ1YGau>}c3>s54{hp{nyL>;`60#R@CGvenF1RXj22?uB2gPM-NQ|9_%7 zTS2|O^h~RRhJofDpQeAhW8HAE*8a9(xx$e5Rzhyk=Q;At zFh2?{N*|457r08`sp;0v*QS M>FVdQ&MBb@0N4~(YybcN diff --git a/editor/icons/icon_item_list.svg b/editor/icons/icon_item_list.svg new file mode 100644 index 0000000000..e01c4cd098 --- /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 8b1affd0522ca455957e4b59eea6dfbb1ec672ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^TJzX3_ zEPA(2y35<-AkdP|zw1J~>J~<`1jT7fzW%t*nj)9Md`i84jHJW}H8D6CU#?x3%wlr=^BZdi+Uc z&XWl$Kis+*_xbg_oyy$MQSveWOX(z*v@)TIdc1$w_cDB#>S*3w<@5;X2?kGBKbLh* G2~7YKacb58 diff --git a/editor/icons/icon_joy_axis.svg b/editor/icons/icon_joy_axis.svg new file mode 100644 index 0000000000..8d9e3e01d8 --- /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 150102b20965f1de04494e733753cf2cf5dadf97..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^fJzX3_ zEPB@ldGj?H2-Gf}8y#`U_q~$3W4;Qzq70i@M+N&N#Xf1%-i4w~`PcXOKl5e3!O6-{ zd*9w{<`gN{B_-!fBb~yt*XkNSXP7lXU?Ot^H-iiFjGsAc_g23@UOCU7TWB^<1h=qq z$BL}m+d{lFlYK-lw+h#k>vd!p9E)L;5wBo4sBcjGZm&G!g4b5Rjp{ZWv3|bk|Jw)Q z&n4vbHYzMqthgTa`m%{{SH~(=xdZ#GJ=oVAooBs6m095BAG2 + + + + + diff --git a/editor/icons/icon_joypad.png b/editor/icons/icon_joypad.png deleted file mode 100644 index 5df471109a8ceffc6139f8eb1dc8ce89c267e207..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^jJY5_^ zEPAg_wB=(`6llF4;Mv^8n=1QD{_1=SWp6eW(PKugrS}4T*xGljXCG$(^ + + + + diff --git a/editor/icons/icon_key.png b/editor/icons/icon_key.png deleted file mode 100644 index 564b474331badc44556578b8359b3c43ef9905d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_aJY5_^ zEPCHgF!Vd@AmDm`ovp2B@5K|Fe&11u75MHs+1llcC95bC*Et8-N^a*2L7}JXwt8=N zVdVVH^z-R|13ao2jPf%03o!q?d{bPGMHiedet+~JJF1-@{5p=ctBAc)WgP22Tz2wSO zXYa^Pa7npddN + + + + + + diff --git a/editor/icons/icon_key_call.png b/editor/icons/icon_key_call.png deleted file mode 100644 index 044662eb924ac0213c5249ed89f7b490a6fa09ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP)r;Lb{l=5kHkdf0oT^vIsE+?lXBqRt-NlLy^U9|Je z^!e)#OG-#cRNQb4XRADFTUqc^n|bj95$VIr4hMhA+ke+^A|vMtuIeYtU8nmb*?g~9 zd#3fdx4dxzBip2ln|utCH#X|q$G00B3NZNCyji4O==o_w_qvo%<-N6wwBAhY*INlB z<;7s2xTXQie@VFdI(7yLyZ{vnfG3V9(DQsX~S*F+-$slzhdDh+rE}nIjUY + + + + diff --git a/editor/icons/icon_key_invalid.png b/editor/icons/icon_key_invalid.png deleted file mode 100644 index 8ebc6d6addb7ecbaa4bb0f79c5aab26217de8123..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt^lo-U3d z5>spYck?nC3b@P<-zT)=jI7K=ZHK&^tp`h=>T#Ty8_=>x6~Ud2ld$(#)A1;_WYHWbbizoT6c+s3~4e$%Vq zAFa9E#m%qwElPir?)qL;X;Q-%wS8`WZ~vbapE<>%EK9LyEzmU#p00i_>zopr0G4e| AqyPW_ diff --git a/editor/icons/icon_key_invalid.svg b/editor/icons/icon_key_invalid.svg new file mode 100644 index 0000000000..f1df51f7c3 --- /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 6f0396d96a01b0a5aabfca256dff369b6f08dde2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~4=b;}l$D9ME>Nh()5S4F;&N->Lf#_=BF^{uUohE9 z36)M@eyBLr=(z7CSEob&wRAOe#VjsOlGj`_&F7EK%}vk$um%PEHGI)g$h?YKXoH;L zJZ76lQIDeY#r$dyHl1Vt!5;dap=p)*jv4x=3--Jyb^12P-1^FL2|jW5kOeHE`fC-} deobP0#cU{K*l^C&+7jpv22WQ%mvv4FO#mZ`O#}b{ diff --git a/editor/icons/icon_key_next.png b/editor/icons/icon_key_next.png deleted file mode 100644 index 288161d245bff1f34be408269e4877d8106c2ce7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmV-H0lxl;P)+zsb#FtA(9+3?b=#2Cb}o9uEt_D}8}`1L3MG z#6m262uT82wN|j*BWn}o6iFh%ubkQW|9^*pkx1Wzs;Y8Ty^Jv)0Xx8b(==yknm+al zlx3Nz>I1Obh>aghB|jJkMX+ zR8v*;z`L34b|&Z{0we%t_D#sl5;IFgWCh@yTNXue(7G=HMC1-YyDUUx9%DQPPMmX3 zTdmg+!hBFp?|tgMzaIFlZWeJJ7jYf8Yh#uO47kKk=iln*aw?+}{E2_r!Dv1JBo$I? T?#(&m00000NkvXXu0mjfLJEem diff --git a/editor/icons/icon_key_next.svg b/editor/icons/icon_key_next.svg new file mode 100644 index 0000000000..7fb221f96d --- /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 e5f802db1cb3849add2d390a8bf59e07f8ef250c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt^xo-U3d z5>s3IH*z@yNVuK{3|lUXUCW` zHw3Oyn=I?Vup
  • + + + + diff --git a/editor/icons/icon_key_value.png b/editor/icons/icon_key_value.png deleted file mode 100644 index 1fa007f9e2ea3343d14b0718f3771691ddb03ee5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt`Ho-U3d z5>s3I6@{7&L|DHsp7gSyzn+K3c&qMrm(Z=tx{Qw;J(e67V!+{&7O`9Vp0Qt$S29N; z>x3_5-(?Rlcxm!`$|qR;_PuoZZux7EbrYY?*`H>1dEwS?(p8U62_)Ar{_ne;wf6Mi c6T4@#Uvsoq&$hi-1GJXG)78&qol`;+0Py)l@Bjb+ diff --git a/editor/icons/icon_key_value.svg b/editor/icons/icon_key_value.svg new file mode 100644 index 0000000000..61032a1e16 --- /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 bd87611d7a819d5a36d886993b988d0cf6e92bf8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt_oo-U3d z5>t~?8k(+qrtaa%xqr>j00{m(;u4yB{p-v|Aeacm4_$LO&4s`B>+H6EQq!&L84uktyfcmI=M10&7(8A5T-G@yGywp&-b;M| diff --git a/editor/icons/icon_key_xform.svg b/editor/icons/icon_key_xform.svg new file mode 100644 index 0000000000..7b73715771 --- /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 a275345577087c7f91c76c111178ebcfb55752d3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 299 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@+JY5_^ zEP9VlJj;2=L7?@%j^z@DuPP}_E1g1u+GHyPbPhJFa%_8WP%Gq;3!kUhmnCHaH$Dof zt|=7W`y(&EZeOLrf&H$fi?{kQ^vvOQ@f2XWygWSY{!ShSC8KrKp|NIPm5jC1!mb{* zHP%i(bH*!sme7q|(^Gf)T;8&L$}JOK3&vwJTt!^N?|C%6b%WM&$ z4PX5k7zzVL3MJau8QS9+)@trqw&?4%8+Dtt53bY|YIR?pjhIf{Qb1H&BGlzWBO*0OI1_g4rBIdT%{R|Zd4KbLh*2~7a(nsTZD diff --git a/editor/icons/icon_keyboard.svg b/editor/icons/icon_keyboard.svg new file mode 100644 index 0000000000..ce98e47ab4 --- /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 de790a4f09c09326676ca221e75b742cd7db3515..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1603 zcmV-J2E6%+P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipS( z6CnxR8l)Wn00qNIL_t(o!_Ajph#prN#(!td%=gWHyK6RSqfIMmOl(S}CDNpJ>)MvB z|E^Se<4r)JUJ31m;#G;1Rfre%PEhJaBoR^C%P3wb35lSxBxxj)U`>K;lBU`0pYPwy zH*@Bk^Lnvow!^xuk_6&`1M__|bKd8D&OFci9>oSjL=>Plx}}s7?%+@#5I736{w-np zFz*-;wJvxBXdnUNa9sm%fCZ{>?e7E#wJvx9w1G6tR`}lo1}MTT1CZMW5jTRzA@~F^ zd3bK-0))_!fQN6+{rM4KP?H8&5xFf8N@GCRtpPYRhFA;(R6k5m3A3w!6 zUis6ffG#i$Y&fNqza0QNP~8DGADNr^=kyn6X;0n{qVV1lMKR79s^Qz5I&qr)2TnW$ ztN?k~npq2Q;5Ka3Ei=##3vNC# zH*@icXZK+89>uUv-pg>MBWg#CO-|66+)O&TnNugvvj4z|PX-n;pt{v_cY){m+#&BgwcPVFaX+%+4 z(zeEVXe9|r+QB=aA=NVY0wVI?0LXerT{E6v9GE`+`1CIFVMc#B9#`>A2yQ)W08nNBBE*rV&^O-&nbsFd1lBn$F;=* z5m2gPX<)c_ONUKmfh`Nf3PH9mFlieZZj||YH?@GTRiI7js7519VX3_5z2$<}j=nP+ z9!$RX^_|B+u*P6bj&lxRQ%Il_7MDgqwJx|1fr}vD0;uA;;JC_Bl?D|F|GJv->Km75 zfqsx$>($pU&mR2NBggN%Zvt0V?EUOR9G;u`qt-g)5UP}y_X|u^-w~Yi;61Lgyl`;- z{s7p;^|Ph5_{x&BB06b8$lQbpVAFO?q&3c!l-Ynidv`Ft^--dvL!?tgA_R*PAX;5o zDYY8QS9Gubh4~W~2;YPT)EWTi93Drzm6E2qR!A${ZUJ$ttDK?D$23BL5Gv54uXcXR0F>EkaP{Oj5` zaOmYHk3IGDF7m;EGAo!ry}%$V*!A%QSAj?2yu82pQG|{nT8Sb~G#G=kIo5oHx{?AC zhYM$&P&tn{hr;uj=N{$o+{|%>LcH+AGY>6dn5RW5=#t zU*!9*U;lhas{MogJAXeh(PlL2@sGdXD+Vh3IeC*-{faO3!`rPyTxc9+*nBFqG&;Eg6 z+j)4$0uluP)enDpY44loyA1mU`EY=(GITu7*wiN&yJrWZ;k#TqbB5)9!MV#le*DJe z>7bH6&^`Iv(_DNj1L%eS27c5>dyCQzZ%P{SGqr4M1`JS|%G2u^gaz`Ilf2Y3aDvR)*YuIf)d?R4flKuK;H|z<&{gv(K zKRT7HxrIllEG+g7KmXm;|EVYZfWysy^bBfUS6qXbeDSN>FZi{^RzbXW^h(_o4;u{J zURQj#&jlZLGD;dB5Dm55`IFKA#o6#~osRGN_&0RfP@-alxt;(3002ovPDHLkV1n}Y B1PlNG diff --git a/editor/icons/icon_kinematic_body.png b/editor/icons/icon_kinematic_body.png deleted file mode 100644 index 19a401dbf83da6d1360b23310681967601c45a21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^`o-U3d z7QM*{608yr&d;&@?;)suN}y(zr02#?Rn=C`SRPk~WsRb^rhX diff --git a/editor/icons/icon_kinematic_body.svg b/editor/icons/icon_kinematic_body.svg new file mode 100644 index 0000000000..393e21a529 --- /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 2f9d8348055c9f4c4e94b5a0b6302d6ff907d8e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^0o-U3d z7QM*{608ylFTds2dkCtZ5~!Ia>A6w!*5q#1*dET=X(g=&c4mhk>M0!UKOtuDaFW6j qLADK92bN8E648+9kk-%ihJiu2SO30Sx1 + + + + diff --git a/editor/icons/icon_label.png b/editor/icons/icon_label.png deleted file mode 100644 index 16919a5fef75e19b19242807eb7f150377cab11a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^jJzX3_ zEPAg_P~|(4f4)|-V`?nZjyp_qj4x_xED(-8cIxbG501B-^WCcKFLdgy leZ<;uNL^?`yUwq~b?Yij**q#Ot^ys*;OXk;vd$@?2>=CiU8Mj3 diff --git a/editor/icons/icon_label.svg b/editor/icons/icon_label.svg new file mode 100644 index 0000000000..2ca7febb54 --- /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 1727e2409fc28ec19cbb5379a173e7fc229a26d0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_Eo-U3d z7QM*{3j_>|3=9lxDn2}r_i=D^Y~-BJwkB&LYbUFLZAGrM8$-N=;iN^9(L5U`Bx^g0 zKe*iUj*CZq;$$@qcIH_^4>vLxPn>ebMU;VouiB7lqvVu!py3Rju6{1-oD!M + + + + diff --git a/editor/icons/icon_light_2d.png b/editor/icons/icon_light_2d.png deleted file mode 100644 index ebab16c1b12e489d69433f70b4cbe4ffc428bacb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 362 zcmV-w0hRuVP)_-#4~URIRXn(O}qg04!AMFguudJqA}b- zie5llS$G4Zm!S{~ykS9O+EQ?#3upD-|K|VxnFqftDHBIgd}fd~NPVN|yBZz(&Fb@y zfXB&vpjIz;jS9jM^4Y#)wvh34H451!YR%|f^VRh-loYJW<6V@j>EW%NUx};5&f1|z1|A|2%>pI z&`HjUG<~n~R_rYW0F0yAGJ9`%hi+M)DHH!sjicGJxXPc`8XlEuN%sX1r2qf`07*qo IM6N<$f{_KAtpET3 diff --git a/editor/icons/icon_light_2d.svg b/editor/icons/icon_light_2d.svg new file mode 100644 index 0000000000..6e680ddef2 --- /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 e0333f06ea41ef80295ae05be7627fec4c9a657c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 406 zcmV;H0crk;P)p9>AxXYzp0Jj$RB7&;=UOEsU5|OnP{|Wdn;6_9M zqEOJtfU5c({&kpN+38jtXkcP(<1-Kkd<48^Sr+EBH?Ylwh%8k#2F{K0_Br5eu~@_+ zvJ5q&CJUFDu+vWb&E2khHCu1acUU|Vr}jKZ}~ZT^^xwKLFS*C8H&W1G*b zl6rZHyXae=feL)@sEa!r7>~!7&biNBwBGyV7kb%hcdN8*Z~y=R07*qoM6N<$f_T=g A1ONa4 diff --git a/editor/icons/icon_light_occluder_2d.png b/editor/icons/icon_light_occluder_2d.png deleted file mode 100644 index ceefbcbe2acc83e28bc592b6961ba6813ed11b9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`co-U3d z7QM*{3j_>|3=9l(?*9AB&& + + + + + + + + + + diff --git a/editor/icons/icon_lightr.png b/editor/icons/icon_lightr.png deleted file mode 100644 index 6de8c8de3f5979d24a8e9aad9730a8c3c671d2b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5ZU!9LB;&w)Y{JY5_^EKVN{ zKFHgkz+>}Aa@j@R65+pA{qgQVhSbx_eF`gd4Hb`>iF4&vEfsMVunbZN-sgY8y!2O} z$d+uaUtbj@-oM}2dc@+~?dC}9aBYhY_PFo|Z-uHGZcP?3-pQUZb;fUn%C^FLdT02= zoTC{TmZh4$GCtwf)X&K1XguUT(%(F5o<22WQ% Jmvv4FO#ow=UrGLSDUJfrk@3HK0f zTnmy^A=W%$|EPSme_X!VIeoKyUyVuscB2@izZzsQ7T8|%I_zPJ9_i5RL%iA6DLTD)S1qh&h)X@4Ww!!QOeTS3K_y=mZXcX;mI(({?I4S^+%(nv#{d8T M07*qoM6N<$f + + + + diff --git a/editor/icons/icon_line_edit.png b/editor/icons/icon_line_edit.png deleted file mode 100644 index 813642f25eb9c8832a8053d607bc5a3e1487f015..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_>o-U3d z7QJuJE);BV;BmQF|B~T+fGA)6+@niZA70KZ)_z_gL1Nzj-5+*WwAnacJ@-zoKH)(n x?*U^r1M%A%eP1UrOtRV#{-`WMUvA%3&cgpf(sx`$rU4CR@O1TaS?83{1OQk7HoO1; diff --git a/editor/icons/icon_line_edit.svg b/editor/icons/icon_line_edit.svg new file mode 100644 index 0000000000..209f0e1940 --- /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 e31722d69c9830f49c64a9b45ab3c3fe5a8fd85f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 379 zcmV->0fhdEP)QSUKOZXaCT+p@0sxA2#Zn3K1~UdPp#dM6nIh+i ZpI^UfgiOu$fj0mE002ovPDHLkV1h3-pzi + + + + + + diff --git a/editor/icons/icon_link_button.png b/editor/icons/icon_link_button.png deleted file mode 100644 index 7febe3c19a643d5d627f8e974154e71e53a87dae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 409 zcmV;K0cQS*P)#3rrFd3kE~mL2mmUh=IkQcEZs3 z3TV@zHAsYkk*&UlMdI2dw{joD?QLA`7vML&Z%&?b&hzBJpT~ZF+V9sJiD?IH9^^w` zGJsap6<7p%k<_S6m+v!;%O0)hx}KPBffbM+oh1*fn%P}5>eg}%n(v)8&;bz3Y|niK zbJ=u&(3i}81#_78f!N?6)j$Ej%yv^lI;>2U&c=D&n%R5>PFo)xkewK|4cr$7^#y>W z?=AtFQTN$k=~rA&p)W26u`c?7onS2HGDz1cSemRQzc(->fKSInUX#)TR+AvE0;i!b zE|0ST5I9#AfanbyNNSkb3bK0Zql4>DUJX1CX}{gfCP7@4r~wi>Pd6LTjJh?0!=Ix3 z9Sjku9{TceE`y3M9Z6aT9@C>4Ng)C~SmM?*@ju}kj{JNJDMav700000NkvXXu0mjf D2xP8` diff --git a/editor/icons/icon_link_button.svg b/editor/icons/icon_link_button.svg new file mode 100644 index 0000000000..f2fad1f259 --- /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 9596d51e726ac29353be639b3507ea21df4b367f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 349 zcmV-j0iyniP)K~y-6t&+V;#8420zndS@SxAsHhMQ-wvGx_zN~|mt5p>CWxS&le zEEHvZ2p=I@Sq5?gcImW| + + + + + diff --git a/editor/icons/icon_listener.png b/editor/icons/icon_listener.png deleted file mode 100644 index 3ce479e2fa570fec4991522fbbda8d54310c9fb4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 448 zcmV;x0YCnUP)IvLh=XfEQCO63j?#U3~LiH zU@3`UtWsq6rN~wi2n4jYmsApBA%f^nSO}Qsytyed2}^vNEpn>4ckVss+ygg+MvK(% zF92Pn`O-QBHbab`CKCLss&&C?+mM;Pz18Wg0a(93(@2{>=M^n4|8N(|Ww{otdTH8A z(}Gt(E$MaY^_~JWQWtoVoa+FDBGN5(-uM{bjfihFRfWMi&b;+oLS26cFt~T=AjCK|E+le3xrn0e+l^f;NI5?OklAm56v9k7_t!)M z8w~D9+5pJT9RSF==K$I4%jF4eIPLXjQ(f;19sqwrO78)(wB^k1hn%;IlXf&!_08a+ z%#NJ2s2G2?&9xHP&dyY0HUv(*_jk3l^mm-le;L@`-tBDmqLjziEyI-zQdL + + + + + + + diff --git a/editor/icons/icon_live_debug.png b/editor/icons/icon_live_debug.png deleted file mode 100644 index ad55646b9abc48e4424c70c7f3ccc6353cd3c1f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 583 zcmV-N0=WH&P)WFU8GbZ8()Nlj2>E@cM*00FB>L_t(I%dL~aiW5N) zhQI2WWZ4(+EWSVj8weubH1>Ifs|Mgcl4gUknvZO3avop6`{&iNCrEJ!+SS&Ec1VI=YfdS9~ zP}L{RX7hO^@>E2gRh+cZXgtjGg?N9XlIJVHkc0z4sot=e_?4RpD=#DsIE5 zYOCFD7ol@50KROs4}$`q0A%)d7J%GU{6|45mx>CAR+<8;iXdyQ2;Or?gs z=hzXS<2XLfMk9_4;bBz%QPi VzgKegDPjNs002ovPDHLkV1i6B^05E_ diff --git a/editor/icons/icon_load.png b/editor/icons/icon_load.png deleted file mode 100644 index 81835efa25f46928f62c25d8edaf35bc2df5d421..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^fJY5_^ zEP9VlH0)w>6mX62UOCfED#Yky6|jqQ|6p``mZ zG3NSf^Z)g;v%dFZ3b-ozfwO0QE$157C)zH7S0}GJmzQsR`s|w@^338BuQa`D-1GIn zyUVj!Ho2g;9{X2^T+L7Tc)Uzq>2%!gwX3ouB$#~| z(1E-2rD|Lld@qX>*e7SE?cB}Z5SS335?S_-H)8j1u^BAKW(D1H(Q)3%kS*)NCn9#D Q1Lz+HPgg&ebxsLQ092S~dH?_b diff --git a/editor/icons/icon_load.svg b/editor/icons/icon_load.svg new file mode 100644 index 0000000000..b564c1f656 --- /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 a7059f5e7c863e9dd4f1a4f22ef9a1dba5b8e87b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^fJY5_^ zEPB^YG~{b?5OGO2n^widWtTo7c}9hpcF(tCr>tLyzUkfDe&fHkEi-F&bDM%fNATY> zY4^|EXLalHUG}}svxrqecdhhEXPM*A*E78TJ1^y$&<^2=xmOE#Pf9k-NqIJ>drq<7 zNz(?I1INyYt^K{?RcL7Q%vuwJ%|4;ctKy=h8D=m$a6AlQ7jZ4rIlkr9b;e)@fr-_! z6I4zvmPwCoI9T<+X;qt|xNA#&<^@gx!F`kJn0oRqxKCbp*pA1Msr!~kKzk@ R76Sdl;OXk;vd$@?2>_$YYAFB! diff --git a/editor/icons/icon_lock.svg b/editor/icons/icon_lock.svg new file mode 100644 index 0000000000..b0b0125648 --- /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 aed94cb87a397c6317d64caf432f6165de0d36a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11594 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 diff --git a/editor/icons/icon_logo_small.png b/editor/icons/icon_logo_small.png deleted file mode 100644 index 809cf1854182ef9af15f8b56fbf71b40d20d9ef0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1465 zcmV;q1xEUbP)PVf4)evHvk#^*L5=}k5ediX+EUnZqpEzAx{DoY`9g-|B0tgZ`F9P^L$&ny@3FeIw%cyiVUuW>1`r5J| z{w=m9odgK98Q?{aJ^X&v?k2~GRk_bK58(F{>x;nHluqolZU8`Ek}a^HX{vO(WB`Cn z8h}-?h{*TM5@6zf;xXRoir?ezNhh|d2&?zFa%F**pQ$N14k9kCb7kl)^ck4H0H9AN zpaO9a?Tm+bS94vN2xh8uy4HzW`CQ{C6+L4TSY3B2Ghw#40A2#Zd4Rqe7A~Kla55S} zv=iX3!B`H^C96hPdaR~63Mign&}`Wc@DczRB68DH3Xh;1%!)(sl8~JE7QlzV@C{Ub z(^Sq(4VYkGcnUBPuRODDMWY4)BvHHp!2dsq13*xQ-~opFK*Oi2?h{j5-|e#i6F#cn zR?-C|U3sO`)dHYM>6>de!)`U;rgs4Sj}mDKWSev-oMuH&Foru1!^z7R&(@X|j~L0# zBgFjpo35!W#EQZkbaZqgrz{@_U7fhtp4^kvD4v&tt)+SJ_4c5kpb(8W9%6sJTcx4o zr))&871&Vbuwm<#kKyrnV6)kuigUyXo&FcE0eK#<3{-X zemDvpIC$^?&U+r>kIwN+Eafc7&oRO6cEjWG004YGAFf|%h0UxR<-EN#5AQ6^8?|j_ z9ojCp!tWmvbKi8s?RF!7iYb*$>I81}gfMH?ESO9~n~4b1^5&o~93SNn)J4=6j$?ZM z91sn8&1N%Z&z_C;o-uVWij+^#cDEl*?KT|x?hslo{EoSf7x42PhN46u$?6%v44mvB z?Aq(ZZTAhlzI+*eyA?#+-PB{@iNokfb33L@GQw_|kK-3ZcoY{^>xUa}jTu8%I{k2a zGceaaAN6PN!yAk~NkW}~K`R)e3AKnf5QR4|evpV&N5$m5-ThIqZtcR!%nXY`3yUEGSw^j`=Eq*ui5X~9+Nv5@?R4cN zfOY_*rxu7}I<4lBQ7gnV^%)6^Aw%*8VunB@F+;gG+oZdfn`MZFVxkaQTC003uql>b>2ZZ2X_HGpFPLgVqC3>pCFD1)kt!sm*A-BxmSTvj@v z)*U@640PIFVu4;JndUH%M}QGDTq}$q15pqYAkZ&L|yrdE#jS=iEw%t#lEcSw(R=XAp zf=vp0QLMC=g>AN7R@QR6R3RLwhUgB^#{G_Uds{V*A^Z*)- z#$}zrTDu$P&1UoOWHJF*pIQJO0gN$E^E?+tu~>#nF~J?ccs%Y^57RVlsp?ssAkXui zGQ5o~oQTNpPN(w|z6r=tj5jHoUaNcgKJ1u87@FIkFxA0000 + + + + diff --git a/editor/icons/icon_loop_interpolation.png b/editor/icons/icon_loop_interpolation.png deleted file mode 100644 index 488b33316e04d1a63335cd4454efa39125a60cb1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 374 zcmV-+0g3*JP)| zI!*vbKv2@q#2Igz+<-J@C^kXaXnz6{U*|WT=Xth)|H3(UUsYASYhSRbpsJ^JUBBgd zK5jJ;nTSZ~oLh*<2>?)AwALO6K`;f7^t?V*^~xACcg`(Tb-&R|W*&t0iY;~1MmHds$Og|2myeIrmEU%GXNuN?HLhW1BjbL zzB+w&#h^hk4C}qWTrp79jEHV@Nd^E(k~|be@k&IG0LGoa@jI%jibdr1Pt8O42IZ}Q Uxx#76Jpcdz07*qoM6N<$f< + + + + + + + + + diff --git a/editor/icons/icon_main_play.png b/editor/icons/icon_main_play.png deleted file mode 100644 index a72672f9638703e06325952c3c193ce92ab9a286..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`hJzX3_ zEPC%wGUPjCz~h=5)2VsxK;?}I5*A$2+&M8#t&0r~vqo4IvWi$23mYp=ZF0J@F@Mw3 z_xjOh2et%UUEQ%|)vlFq57sFuUGvs=*;0INt7>!P!fk$- + + + + diff --git a/editor/icons/icon_main_stop.png b/editor/icons/icon_main_stop.png deleted file mode 100644 index 58387519dc1576ad29d77fb62f42dfb735db7394..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_xo-U3d z7QM*{5}z6bXMXnYeq-0MxH^| nfd$456M+g8d5^4+Ok!X#uHs$TXQBHWXdr{9tDnm{r-UW|5wbIm diff --git a/editor/icons/icon_main_stop.svg b/editor/icons/icon_main_stop.svg new file mode 100644 index 0000000000..640b2998f6 --- /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 57f0cec42e7ea29713c54ebf905d72b620d1f73c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`hJY5_^ zEPB^YG8Aeu5OBS36sNH5QK!ySt!ps{!>sxh*b{P=d~*m&&OE-IQG14G&;B!Ss(%}A zo*==zYB*TZ+rU_4yqYoWGIK*YJNLrb*JBTeDRkekn*E=9 z*1o+`LYTekoJ diff --git a/editor/icons/icon_margin_container.svg b/editor/icons/icon_margin_container.svg new file mode 100644 index 0000000000..8f33a1fe1b --- /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 f97c23b950b315f904a03836ca99aaf9fee4a1e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 374 zcmV-+0g3*JP)szzp<| z+K`DO+ff`Dj}l8-sxZ#aB%z?;E8p&Wvp>LJAf=3oqPRE4l*X7ZrPQNR>inoNP19ak zmQPL7SlXg#8n;+1o+p#Z#f~x0^DC|On{#g4w}bbds;c^!&1Qpk04b%&dw(>*IY()l z(r7dy01yBmga81{=W`Gdq9{VA)7hBP7=!6_in^{rL_fM{H*wAZ0CinMYmIKV3u`U1 zEW>KG+Iu&#Ph^Zi2mxy?#^dq9!}EjH6ZkIyTI*|L%)9sgBoh&R0=NYL)-EJT(hGuM z7>3~`=ll#n`wN~i_Oe_q@B01z>ss6hSR + + + + + + + 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 ad63218658bb4384b9f3f307b98c7bfbf3359e7a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 401 zcmV;C0dD?@P)F3(5>L!Kj7r1ZWY`db#>_A zB=`&b0saJ+E}>f%$I?P+G8i6tP2PJBVlg3vqMP4%F86Q`_W*x{wTVfR_)^M;vMkSy zF`S5AiRdbdqO{W>j^m**X0DVv)ml40XO80-B3fE&XXEkst!5C%@kLctw?$E$9CJ1i zZCuxV8jVKx0svO4)idWDgTVldwWc~?jKO-n4)Z*}1Mp=aga82Kc@AqWdc7W8*R3t? z_j{yi3Z)dRwFg}^asmL9Qjk)Dh@iDbmSw1_s`Vn#CNjn#gn-r>+wHb9lG8aog8yO= z1i@v$-+w=5fiVW(_cvh}-T;j%FBXeoS(bAt<)O;oU*MdZAPAO>vDtJwtyj58k|chX vWsgNsob7fyc%Jv-dEWJ8GWqyb&MrOy?w^LK+ka6200000NkvXXu0mjfKoGG& 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 0000000000..3c61794a56 --- /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 2a49a7530b0d34d73bbf42e0275eb209dcd22412..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 359 zcmV-t0hs=YP)o3(0^st1!1I{@tpYR4opUz;)`{eg7~{2><-@~Xpf$ 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 0000000000..ff70b1e5d4 --- /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 738dd75594e4f8015e2bcbd9bf131787e3f0af3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 305 zcmV-10nYx3P)CIFqP~`!Skt_)TyI>=oj3yx|7hk!F`T#64C}XM}Z# zpQF<$=2`A3a&6pq9HcG{uA=xd;tO=R#wK@H&R`pz>r9wXNAAn3RT(jn=cbWz1HW|e z6F$m7vbxM-YaC4!NW&ZWrGrX8?QTTe;jz^0XU`2T@Qw!@#5ut$Zo}CbUc@l-J(%g2 zq}6}#yAgM7aAsnWN|dWy{tG*+oI5a8HN)l?oWJ1{O7SWPw6Z}i00000NkvXXu0mjf Dax8`X 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 0000000000..63a2094e67 --- /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 7e43b4425e661ea89c4c0d8908467bdc5909ca89..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 354 zcmV-o0iFJdP)?|uBqPaqj#H%SOU6OnzxgTQXy}uHXC4k+)1pr7k<-$4F z8e=v9Y|}I{Y60LggfO$#zKO`8sDX$aj4}5BY*IL4YK*x{ivgfciNnO3I~<%OdkNIvBJ6A``l*L~l=0+?ppj}XG#TKirUaWKg`#<&O}%m6$A*bng- zLYUWeeXFYLqS=0Hq?0CT_xvxMwQ>nR`AmPt7a6?Z>US=JHvj+t07*qoM6N<$f+)9_ A2LJ#7 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 0000000000..7fdb9cccc6 --- /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 e2f0e345a9ed2a5d962e5af1c1ac70d53a53ad13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 443 zcmV;s0Yv_ZP)e2q8`I8Lo?w<6@;y`fc~_d-uKj-g^N5i7*UR7>4Q;$I=f` z6b+@6&7a6p%4QTrLp{dy0Rvw2rawQ9B6L$B8x0{~!2 zux)!vL~9|$B#z^=*=#l`QdAEITKnHvnh^LBL8c z03Z=Uv>nI!=yto=Q4jVPBLHYpn@6l|F0-5Ar + + + + + diff --git a/editor/icons/icon_material_preview_sphere.png b/editor/icons/icon_material_preview_sphere.png deleted file mode 100644 index 80b06b39b783570bcd49be40911a6146d4f7b74c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 359 zcmV-t0hs=YP)X2s-#_~q{y3@$lx2AqLbwLTz + + + + 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 a5acfcb8c9f13b4ae860b7f49d0db853c5489822..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@^JY5_^ zEP9t-KI?bLL8R>=`vs17Ub~Wfh4T;m-p>)va`zD1#ny%Y78G6#wo=@Zd1|_kk!|rg z>-#0=3YNNwCvA^N=*v9fwI{K8zMexL)8uKq^&5|^<6F{cDfgjo`Hi=7n^n?fD%&NF zb-q=4rvKxZ_`K*jB7wzBI#xOHmsGO+8Y(yKI1<~F%C6Ep`^SuVx;Ebm483J}!gznk z1Vk@u_{(s>jx{I5_foifPUgCI{-r&8)Dv3!MI0{2&ippNy64e#s|#Oe82L(1UuB#> e*LK + + + + diff --git a/editor/icons/icon_material_shader.png b/editor/icons/icon_material_shader.png deleted file mode 100644 index 568a45d938495b3e2cbe760aabcdfe50a1fe4cad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_eJzX3_ zEPB^Y+AG>*AmaA^vq96Yw!O?2jlvd=L5|DIq9#6O@Oi*=<&?}ft0S8a$aAb<`Lj#q zzVACvCT3-ZtlY*|f85Kp&*lC(Dd@m1k+AmKyIZ_@Zj339mh{%Fo6damw2AL4HbueS zufNPX88&?^U$%2y;j(E{mw1LZFWSf|wV%zc*mTzF_+L}9?EmoXabbuNOAJ~1U%vUK zBG0OC?9x;0FUnZ&ci=7au9P^jlfC{`afWia$$BecyGch>fX-*|boFyt=akR{04jZB At^fc4 diff --git a/editor/icons/icon_material_shader_graph.png b/editor/icons/icon_material_shader_graph.png deleted file mode 100644 index f40e3755af86eee2b0fa4fd5f485595982805bd1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 440 zcmV;p0Z0CcP)N&E7qS7H><$W!PC=Xl$Q%#x|p}C=-0y+fFP7EN> zoJw}spCNMwOdDJY%Lkf&=!pPeOAAjCQ31FVOd2|OcHEUDA-J)aU|gMA>Du};84?nY zd@!aINmqgn$%LMwh=ioYxx2L#i2!!jZAL~7z{KooRjEzf+pvMw8)p{(PE+tG@RtG| zc>prPPU5HYhl&+7yetKv3FHh$TJa{vi?qx^-zR@=rAs@-iW=tjAAymN+DbA5^MQNd i4tf6fQ|Z + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_menu_button.png b/editor/icons/icon_menu_button.png deleted file mode 100644 index 1fd2e41c238860174a9ff8488946a63388efc00e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^#o-U3d z7QJ^TZR9;%NaC*_uSZBsb&c-lLS0!EFn9S%od>-?Vk@2=!N z7lvB7+}=4(A;Ei1=LU6nDRRAusJ?b>^UZzd53iNs`^Uun=)AxI%l`0#$5#4jzS*@b zr0^8Ow$|;EHfsCMe7^NM`_F{wEZKHfb^enDPOXN%I!dr&@7;<7(8A5 KT-G@yGywo*Sys;g diff --git a/editor/icons/icon_menu_button.svg b/editor/icons/icon_menu_button.svg new file mode 100644 index 0000000000..28fafcc465 --- /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 03e15014037035db7f9d2a81a1d923ce567eacce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 343 zcmV-d0jU0oP)t)rUc46aKWin z#V|Mwad`?;0eCfIJ?|Qr0|R{j! + + + + diff --git a/editor/icons/icon_mesh_instance.png b/editor/icons/icon_mesh_instance.png deleted file mode 100644 index c513feb1cd22b1ed29baa95aa658fd62dfc2e964..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 314 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`dJzX3_ zEP9ttGW26M6mY%oGi{n2r=~9N@&>h2x{G{kRLhZ1S|6hmk#h!R3{szIO)n>Do%glK^>4EGHGXcwuVG=vo_553ELtcN4x!gN* z>9hNLcDZXaI2A1VH6w;8zsllHXYuWWT)Ddyiqszc$a}Si|Ko$J54LG^#)MwyTJT3B zbZ`Hp*#@)sMqG}Wdplia!qqHuS0f>xsVS_%Dz1*6lSE7I=?nf8x>26H+d`d@DQ$kI zw2I-^0KcSPWzwpJPP|WQg#vR8jD-uuOaIP!-Q)RYr#+ASb-_>d9j + + + + + + + + + + + + diff --git a/editor/icons/icon_mesh_library.png b/editor/icons/icon_mesh_library.png deleted file mode 100644 index 0bb37b1da341832bbcaf3d3e774b021a01d8f022..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 349 zcmV-j0iyniP)K~y-6rISHUgFqC9zt@aCg>lstYI*^8;L3ZHLkN+Cvhx7ei@2z+ zdIA&6&V}i&HxOu^ivbEEq^*BK!pr~o=6}o#{8Iv;X>td;K>0@07bkrEt69_J7S$(^ zF))+M`xgsXCmTf1k6e5sPH-_Q+1Ux{GXP@;Q6FU4Fh9r(SEkXnJwoi&eJVbb|G=7a ztv`mVeu(W8ClG*9Cs(ln4$6vnhjm1wsdvsqAmRZ2uf_$8fK+*00000NkvXXu0mjfTlAI3 diff --git a/editor/icons/icon_mesh_library.svg b/editor/icons/icon_mesh_library.svg new file mode 100644 index 0000000000..3bef2df33c --- /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 18531ff8448b413c23db7da7a1a5125a9ea56648..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 615 zcmV-t0+{`YP)Px#24YJ`L;wH)0002_L%V+f000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igJ= z1pzI$8(FLX00HMoL_t(I%YBp2Y7{{b#(y=_v$M0wMq~bNB)EYD4;n!th=Phl4*`P* zFCIit@Ro!42tJA@58ebpUqC$h3IWB4h@we0?(TGd9yU9>lMSi9^w;%Ob@kU(Cd5&@ zlg=qt1VE0bgXjd$r~H?VkTtY6(s|ua7u3fO(zEKH3vn%((j|9V!!gC?UUk0Yc#<_s zcr$Gj_@bLoDM9~+{@SW7mvC`OWx!jB>k=XYNX_vmJ6DJ?LCkTMngif^GNZ(L8reoV zuXpVo19(2Rth!YgCnmOtuI2m-VlU+U4PE}2=fHP)+v)L}ab0W-y-kRh;}?!Cf1uTX z-*lOxSmI&2Sd=e`lgtkNm))eI5aYbT>-HCWnk}hrjymqd1UbgdWJ;gAzpWY9Wp|S~ zedvBK8stT`qRe8VC?ZGXA+SeIE9C6Uv#Sp8J3kCy(T#~4$+U*Q@maQXq6W8;Y4yLc zVO5zBw<|NsETKlkoAy_GoHh08V0)x(*DJHymuKI5cCF2}KQI&Gsym~8pKn$dN6P>J002ovPDHLkV1h~S B4B-F( diff --git a/editor/icons/icon_meshr.png b/editor/icons/icon_meshr.png deleted file mode 100644 index 1ed2a123e6f87f8d5a5496838df826bd5e1aee57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 744 zcmVP)Px#24YJ`L;wH)0002_L%V+f000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igJ= z1p+wn>+XaA00L-9L_t(I%WacOPg6k@fWI^M_CcXQA*gZVZ*b!eFfnd0keH}INr1>> zp@Jkl1jHazdmBv(g0HY}VR0!WY;@t;jX%Pbkpy`b`rzK<;L&b z*&$+`In>hhHETX{xWIu{MezR9A&r zcP1+#V2sA+=4q&nviPtML_h=)KVRy3pz7}^s(Q)`8z5lY1Z*28^O>>En|%5HgA1`b zBB3DrxjY-&yZqYR;`g5&M(*4o7zkk7cBKj*9^E5g+lUcRuq{I*6y(ymMry(#Y|CI< zmVXae#;`g!S~1Y|d=aNV&S+aJpd7g#2l)a&H#XVN3+(J?+1ksJ>}{h^EV7=QsDLD56cGer?0p8OKThh?8kS{nU9ZAHZ+i)A zEdj2APoikcq@x{)1;rRGBQ3^KjPaKkE$dw!n$}WqCs4*{^LT=AI7BEAATu>YPwF*V z%28%&kmj)j2e};I(oc_3Mo)sCC6w&C8w!!#v4F)Fh--|~ym@zKZtmQHe}-g<4hCNEQ5gX(paxJKx5aMWbSHX_ zyIB(K%0r;@R|O{mR9XOPXh_OS-q5BySt06Iys+n<7iEvZeE;L=LIH{oclJ7UR33v} z*=iN_0WduOsyn5bsdjZf_qL%kQqlX&)6dtpiXq zKa*|BMF5h``|^m*j4B87G;QRm)>N7Ra&rx^M)aw274)quI0n(58B8Kz5Z75($L-q_ zEP@XpMsv**%<}Nc%*Ne9Dd}w^hvO>s9FDaJexbDQ+u#=wa$o!iH(d+>0000 + + + + + + + + + diff --git a/editor/icons/icon_mini_array.png b/editor/icons/icon_mini_array.png deleted file mode 100644 index ade885e4d4ba2cb801efe5a6a45898adfa13ee8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvc25__ z5RHj%Cv4dP0q_*c>lT7n7Y(d$p%jon+% zIID3c`?0EXZ+q*RlpaOB-tuLIzZ8R)=JAdl4Bzt^_g`n8$*DZoS|IZr&`AuQu6{1- HoD!M<0Zdce diff --git a/editor/icons/icon_mini_array.svg b/editor/icons/icon_mini_array.svg new file mode 100644 index 0000000000..a1ec948063 --- /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 7a4ac9b137653a79d6a5256a5ccbeb56d8546bae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDv!=5gV zAsQ2pPPFDaDMKh%O@HYhKw64y(BA@+*?;xYZ zt>~%ZG4DTjt}N|IV@|la`}Tqv&)U?AB4Z*IuVzhIx_J`6|6!J>ya}1E%wH!k8LP%F z_#hzDxYsk_dY9;wXOmLhb$`v-&uycveZ}OnI8%af^!8HT;)`Y7+i&?lW}PDGx$*Dx RSdecSJYD@<);T3K0RU)WYlHv* diff --git a/editor/icons/icon_mini_basis.svg b/editor/icons/icon_mini_basis.svg new file mode 100644 index 0000000000..e0dc132d12 --- /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 9cb64fc98343170e0cc9f15ef6cf5fe82a9a9d25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvt)4E9 zAsQ2pPBi2?6d>Sozb038?{@(fQEh$23hsla&bf6g7bp_bPx9)#^-8{bL7k75?w!1{ zwDy~^KdRq$o!Y(V({|&B*BS0^fBmy#&;GJazVFN8n#BcVo;tZ5D&}yz_gIX%Kz{S9 zqo+kAniz!7Y%%W@W*?o;=BT0iCfcJ~Q*0OWlcSkyj* + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_color.png b/editor/icons/icon_mini_color.png deleted file mode 100644 index bebf64e2620cb3e40f8c3b3b31c8e3911004b5c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvO`a}} zAsQ3UPPFA~au9I4FX809v@?cP`jMqYbBNfC3A`~0k44|?Ve53?m=?`_EJ;kB-FfT@xwZrojJ0Hi^)K{EtTdX9-?bd|@UC-d@>gTe~DWM4f_PSrq diff --git a/editor/icons/icon_mini_color.svg b/editor/icons/icon_mini_color.svg new file mode 100644 index 0000000000..b70015a05d --- /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 434b2f96f502a0930ee7df84f1ee603dde76f33f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 337 zcmV-X0j~auP)%Upqc9XYrKTW*$5sTv?(gf#@uUlUHWJA?VigVrVH2|q`~I74QKtv)Q3@)WCE7#zi+kdfiM1 z_ZCGd=mp@2!GpvZaC#f+y&K?MjI>4ykuryiL2E-H9clnnmMc7OgxM4+&s45H@kWMC jft&4Wmj2hD_!oTxh9F-uCQ20a00000NkvXXu0mjfaORE8 diff --git a/editor/icons/icon_mini_color_array.svg b/editor/icons/icon_mini_color_array.svg new file mode 100644 index 0000000000..2a5588a698 --- /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 11fd536a8320b92e39844c03a0b67094c26aa65a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDv*`6+r zAsQ2t6C^?w{CRuq|I>W)f9~mzgO9tcT&lzSKYU|t{povW4xA9^*14$p=KP5R2M#o- z>2nIV?`(N`J9?X%n_HVvjG4fs^u&~umRo=B&uVP^sIlo~z%%0+HOmVQ7?y-99cq{; zSzoc>lznnSLV`y9_M2@l|NsBrttj@#y2n?3lg*jX6G=WXhxWhv_y7O>&H^p118V*r c{I!e>$r>?#?`a>|0dyvVr>mdKI;Vst0Iw%wivR!s diff --git a/editor/icons/icon_mini_dictionary.svg b/editor/icons/icon_mini_dictionary.svg new file mode 100644 index 0000000000..eb68709c4f --- /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 f8c8d9a17478874a2be78f2d7769ba2f88575ca1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvd7dtg zAsQ2p_HX1p!*-~$3vL;?(tiuN=eVG}W6U=|2cOw>}gm?*Gn z&$;;f_wQdYog}~Y`Q@y|0USL}&sY=c_Gvbpbz7s}yd_FoN3}1{b5Q`p1G&ovl5)57 zqJ-Id82?57%MegMW`8}=?)rnB3_5<-BPajk;+Q%8`)ej^2GQ-?%kF=<#rAaXexVz; ej>cD&+b~}3urgX}_~|Inr3{{~elF{r5}E*puvWSN diff --git a/editor/icons/icon_mini_float.svg b/editor/icons/icon_mini_float.svg new file mode 100644 index 0000000000..2eb71fd85e --- /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 8b8177e1518b2cba901057a1fd30e4a3590228b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 275 zcmV+u0qp*XP)O-x9D9IDi#}@es;2EGh61mKJuNLKBZ-LcD;5 zR8$@SrNS^4NLW9lMKT6wh;(+6MGb; zxd2REONH@GN}a9rNle|%v9h(mvU7(Q8Y>6{uXhB3Yd%~#R#sp16ZQ9> Z_yA$VM)aDpv2*|c002ovPDHLkV1gzQa$W!c diff --git a/editor/icons/icon_mini_float_array.svg b/editor/icons/icon_mini_float_array.svg new file mode 100644 index 0000000000..284b5911b7 --- /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 2ad359bdbe04ad6f473a84ff6574c12ff1c79a81..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvZJsWU zAsQ2xPBP?c3J`F)|L1~NPgs$t^GidE#=T_`5jRiqJ`uXKDt)2JBHL_50cQolnOT$W z&YgQkug5hgWtzy$zt-=MNd?^YbuCs{vD5Qq?WYdLXRZ6)yBb&ur$K#>$61q$5euCDO7Au|f9&A;#Q)+epbr>4UHx3vIVCg! E00+8ioB#j- diff --git a/editor/icons/icon_mini_image.svg b/editor/icons/icon_mini_image.svg new file mode 100644 index 0000000000..a3f273078c --- /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 fec26dd68eca153a7b2219b18744761e572237a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvg`O^s zAsQ2pPTI(O$U%VR`Mo92inAKk6qd2MxUi{4Y-vaiW(hcbe2=VRVjlxHThIcwJFy>fy)2Hx-{StlFNe(<~t4ROfqMx?#zt j{IW$aUU|NkyTkZU+>L4PgO!~?$1-@j`njxgN@xNAg#BQ1 diff --git a/editor/icons/icon_mini_input.svg b/editor/icons/icon_mini_input.svg new file mode 100644 index 0000000000..c64db97127 --- /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 d1bd2e82a71282b72f9e923c3c42c247f3e7366b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDv-JULv zAsQ2p1{v}-1@P3WzDhB%F#0NS>_wnOdvoK_VvCIx{5%gOd^UVMy5oVvT)Qw;her>j zZ(si&H#=xrDidp(+Ls5D-+!5Se1T{}n$=Tpmd=TKNfRVEg_O_uSUo+@dE(uY(94Uq zX%;aps;E3T**GhLA%1tZ*L&V;_r4@e zW;nt4V8XQ97n!77gcutx2dsJRY+hlhduPK=$&Lx@Uw`@TU&AD}*5gHrqL4Ar8w{SV KelF{r5}E+per + + + + + + + diff --git a/editor/icons/icon_mini_integer.png b/editor/icons/icon_mini_integer.png deleted file mode 100644 index dad1bb160b60492a9622c717cac6128ffeebdd49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvnVv3= zAsQ3U1~_sZG7y*(X(RqIoE?K&9vm$HqUrTP)mG}m3&q>POQtLc;kVj; zcjjD4u^-$!1g^HOn4j_VcEL0uwq*A#?Wvi3+;&_xY57c9p?Q~WnGUQ|nefJ{?AtYi z&UK6qQ)ho%xV`P3)V@Cl3oZ9QQEM(`XZZa(_iK&;>ym8@3Z3cVi~P(coHAK5uW0i9 a#q4^MEq{wF`LPP + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_matrix3.png b/editor/icons/icon_mini_matrix3.png deleted file mode 100644 index 7a4ac9b137653a79d6a5256a5ccbeb56d8546bae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDv!=5gV zAsQ2pPPFDaDMKh%O@HYhKw64y(BA@+*?;xYZ zt>~%ZG4DTjt}N|IV@|la`}Tqv&)U?AB4Z*IuVzhIx_J`6|6!J>ya}1E%wH!k8LP%F z_#hzDxYsk_dY9;wXOmLhb$`v-&uycveZ}OnI8%af^!8HT;)`Y7+i&?lW}PDGx$*Dx RSdecSJYD@<);T3K0RU)WYlHv* diff --git a/editor/icons/icon_mini_matrix3.svg b/editor/icons/icon_mini_matrix3.svg new file mode 100644 index 0000000000..e0dc132d12 --- /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 6018a00747da3ca951eeb935a53c123461104b29..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmV-G0l)rv1s_!pWT`HPuhk5mR2^+ydQ&7mV5+f7(;3tEY>^oJ{}^fKx(cmlFGRf^OX#96g2@;CMa^ zXavB_gaZt7%MqvKt2fxIb3e~+HuI1bI3@scI$ti>i3a&M{)4I_0Vu2MU5qUtNIGjr zcl}R-UnC@ex9VkWe$+9u!-o)0SH40~j?J(i?;HICL8!3dbY1;zrLRq>8|xkOIar+y SaAR5k0000 diff --git a/editor/icons/icon_mini_object.png b/editor/icons/icon_mini_object.png deleted file mode 100644 index 4afe7cfca14e87a02015a052db5d74d12f5ecd0c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmV++0p9+JP)O|KAWS&`Jv86+D9BC|pCOQKN-=4Y`S)!7C67 zY(xqOaV(Zq2qwnZIMw9s&!0b&1^%|eERirvXnkYQNEF#lx&(j+t+`ruat8hC00000NkvXXu0mjfQsj0y diff --git a/editor/icons/icon_mini_object.svg b/editor/icons/icon_mini_object.svg new file mode 100644 index 0000000000..8cbbfa2808 --- /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 9eb063257185b93ec2372099cd8f6e93300e0ace..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDv&7Llf zAsQ3U_8amwIS9Dk7w~5YsS>sAVs~)v6}=TCymb1d=oR4;kF_#Oq~_i!HJxzbWytQy z^S|Feu-<)9%**S$oq|`XdGJf`oLMW_o^&X7_e5rCWtD~T%xl`DA{r|0`D}m7nfQ*W z%17_mHKs3*^*YSA+_<&RU*J85!iMt6dBxM$Mn^6@xvq4>w)%vPxy$Z1+`VKkEu0;2 z + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_plane.png b/editor/icons/icon_mini_plane.png deleted file mode 100644 index 45676236bd79c561cb74327f8da99208129473db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvb)GJc zAsQ3UPBi3eau9JzH&gT2y721i6M+`YB@v2iWn&!kl;*Y0>q;;d(_=Hsc=N^7{&V^N zlrsAd*&Gbc(@wtZOA(HU-k|e7*nW-HKI0n|RqC4ZzvUSE?yE#dc^IAu3)+;nVOmLM z0*~U);_N+>r1TG7y?Xk1p=OM`qA9`m*bmdr9?;K{6-5zqDdmzip$jpCYBe`6-+ us617O-qHK>M|6ZhM08Ir|M!*kr + + + + + + + + + + + diff --git a/editor/icons/icon_mini_quat.png b/editor/icons/icon_mini_quat.png deleted file mode 100644 index 4ed2f5695c1071f46c0e6b18c1c793ec6c059b29..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmV-50m}Y~P)AjO1h{*ap9s~pa-anf@kQ$MfTbQ^Z>ew z7f`om=OtS72EBs?C0Yp7(v)PnFlsCf6teK!J-+wPF!LUq1HbF3-}My0PALQl-_f=7>v+5~l00000NkvXX Hu0mjf8>ERB diff --git a/editor/icons/icon_mini_quat.svg b/editor/icons/icon_mini_quat.svg new file mode 100644 index 0000000000..7baaf44089 --- /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 66bcf7c740b541c698cae44a7ab6e782881b7c21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvwVp1H zAsQ2tYd$=D+-}sPo3vMH(pmfvfXx&&0-! nlN)Dmms4{nG%@0<@M2+5HE>y(a8UR<(BTZ8u6{1-oD!M + + + + + + + + diff --git a/editor/icons/icon_mini_rect2.png b/editor/icons/icon_mini_rect2.png deleted file mode 100644 index db13e1a48e7d7224cca933aa4b86b3e8ae2c176f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDv1D-C9 zAsQ2}PT0tIFhQhs|7{K7tAY2Ol@2z0JeIVY)zQ-EJKr(ugOt!m6(Ql&D^H}p^v9PP zcWji&si!F+*ds)ABb=?yV0mKPlO(A#ylZV@q!TMIeivgF)(I!vB4tzv4u^> + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_rid.png b/editor/icons/icon_mini_rid.png deleted file mode 100644 index 278a9d1ee6622da005317231b65e8e82d5e75704..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDv$(}Bb zAsQ2pPO#-V;Tk7C zg+qBS;@H+-Gd*V5sO#{!D|(Yb!;8~-#cnx_Ulgx9u6oIIaBcqq&K>6s{xZ(1{i|zq T%~N49(0L4=u6{1-oD!M<*d18C diff --git a/editor/icons/icon_mini_rid.svg b/editor/icons/icon_mini_rid.svg new file mode 100644 index 0000000000..3fe12d0819 --- /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 504556dd744f56d8d159009a2c4474a5968087f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDv?Vc`< zAsQ2pPB_bX$U&fWf26pyhs}(zD^5io%xvrBLbtR{c7^*uzURbJVXyHTM;%t@#WoV46k2jTe_^ew8+r*6`w*| zxA+9+jxYSb+2gl4aXwkd_w8MQ8E0AP^{6))dtU7S!WKB&E%lJE3 diff --git a/editor/icons/icon_mini_string.svg b/editor/icons/icon_mini_string.svg new file mode 100644 index 0000000000..7212058fe6 --- /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 51770141858237cae0605e19872a707b8baa06d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmV+@0oVSCP)ZQyZnb}K(9gp{OUqM^K4`1|Q0Js2xDi0g>s{T4P*dh8EyyzkgT9ZT7FZZUWJMWs7gZlG}uK~U=NKk)%)%2{wL30{8y0000 + + + + + + + + + diff --git a/editor/icons/icon_mini_transform.png b/editor/icons/icon_mini_transform.png deleted file mode 100644 index 068ea0506c645e6420824e4a46e5e02a63d12fb0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmV-H0lxl;P)i0$~_L-z-}w+G--D*Dxl#q3{Y?cmg7!vc*+TpuyIX zy~R=(67OJZqx}L2`;P^nNJ!AaIOP=cUcL|hJ1X;w0+h&6>RMG2^b8(sN5?0V{r4Np zIdHI*wzO^_mTQ?663e%)^df;=%O-no*I1Vu4FDDvz!dycKfO=KgWfBq5duf`W@}jH zZ3D_0dVQM=K%xr}&xitt2NCa@P*_!W?azRnv%4#RGH?IN^zZTk7&BzR T?<~MT00000NkvXXu0mjfrrd@y diff --git a/editor/icons/icon_mini_transform.svg b/editor/icons/icon_mini_transform.svg new file mode 100644 index 0000000000..43c4bb4a8f --- /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 f4e1211bd7b8b72ddd75690ba71eba6f6c383a8b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmV-Q0k!^#P)e17Q$_zxjWQK&qG!`}Gbf!ipg42|R;EEVWARVC$Mr z+tn**z=)U7-BM881T=v}+#L(|4+?7p5q#x)%$xUS;J+c)PaQ22{6;A8BuaskS(WZM z9n1@93|wY;-ra2WZ&!X;unO!~reC-kuw#wcx_R7diDO+7zY#9D_&M@13Oao0Sb0jIPrO%JOBUy07*qoM6N<$f@si-pa1{> diff --git a/editor/icons/icon_mini_transform2D.svg b/editor/icons/icon_mini_transform2D.svg new file mode 100644 index 0000000000..38921ea85a --- /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 285f0bcd1697f7d0e5bf1e57555688594041600b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvrJgR1 zAsQ3kPTa`LWXR(>U-<}w3hx@GkPbnOdvy&S;@oU z%brt{=I?vU^6!MwoL{$Q&V8UgLGi%FGbx$+idMQ8BHm^_{_=S1ePh3T#Wjvz&Ta>e zSc-mX n|2pSH*X+zM**{_LZ}EBBTMVb2N;6^wI+(%J)z4*}Q$iB}o;O|# diff --git a/editor/icons/icon_mini_variant.svg b/editor/icons/icon_mini_variant.svg new file mode 100644 index 0000000000..aeb23ed2bc --- /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 a7caa1797f98857e6ad34842a667edcc378d29c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 301 zcmV+|0n+}7P);T}x9?+UlSey`32y{l+Me0kGQ< + + + + + + + + + + + + + + diff --git a/editor/icons/icon_mini_vector2_array.png b/editor/icons/icon_mini_vector2_array.png deleted file mode 100644 index de546de16ceac2767e36656c411e12ab20be7b27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvi=Hly zAsQ2pPTI}Km?+S?f1+=ga*Ozlj&sT#Uf(Qjnp*r8hXrYVlrcFJ-I23(Zno0R&^H-% zpM0)M{L;be+fRUwW9^{PYR` zmO!S|>w(6;^Q@`wAzrOmW<{;PH+JWtUwz0$=8T-zis~s>>+*UEp}W>>a7?8^0|! gmpb + + + + + + + + + + + diff --git a/editor/icons/icon_mini_vector3.png b/editor/icons/icon_mini_vector3.png deleted file mode 100644 index 69baeb229b98219c6048b9bd78d3607f41374f24..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvOP(%{ zAsQ2pPO|J`3KVGD|Nmi=!mX8TaW22qs(73I*xWwIT&G z-6qy!%L@8;hV|I-R+$H%5@Qg$yj#%c71NQ8+4EP;H(zMnbXDO?aA&Dr*p2vZi=Ukw zbGsLLuSrav>B}IpJ9XQ1nRb)uiQ?85qS7X>|No2KVXef{z%?^VRnE`&aMG~qn|zLH h+r4!{Hdghm%BK6g>U;mFsRMn-;OXk;vd$@?2>?UWboT%N diff --git a/editor/icons/icon_mini_vector3.svg b/editor/icons/icon_mini_vector3.svg new file mode 100644 index 0000000000..88b6f1f53c --- /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 6bddbaf627b5257571845cc366af1f6ee8d5b040..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvy`C

    Gaup z^4vL}e>EpJ`BXN)|9yxd=U+|-Pk@^5^99eY+}zJnXL);%nWws=TqxIr)^%GxXYHNv zse)I)H}KrH1;)ojFN!#{{IG9itPwe}*r*~(yiJv{;ZRx%({UF!eug`S{A*U6{S&lU zWRcYM?N6^=$#{1p(O%<0Yu@@(MwtwHN^kCD$$eY1?B9`-x;6|?_+7sq?0aMk^az8e LtDnm{r-UW|*~Dww diff --git a/editor/icons/icon_mini_vector3_array.svg b/editor/icons/icon_mini_vector3_array.svg new file mode 100644 index 0000000000..a1b880bdf0 --- /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 f2c9074b893213d191558774b96256efa31cd8f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^@JY5_^ zEPCHgSjczCLBJ(__HC0t4sT~o-qH3bp!C4=N2>~0UQI|p_lW@zl*=1<+;w_%glm%L%%XD;ob9n s?y74HQ4EKj9xyBjy;>zz_?W+jA&=8B*qzopr0OZzTj{pDw diff --git a/editor/icons/icon_mirror_x.svg b/editor/icons/icon_mirror_x.svg new file mode 100644 index 0000000000..2729ca5837 --- /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 655f52d4812695dbec9bdee176e8d21e918ba1a8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_qJY5_^ zEPCHg+_>tHgMjP#j7jH$ZtEzv_Vzwv?^yb4`LtV+``tEf6f`?pwn$!KM#3>S#}sDm zZSSX*>!m+4`mlIOX2ROHYMz^zmaJM;Iq&)Ogodr#q>q1OldxHpn~>e#hrAYgw+~#RuH`F4`}6$bD|7y#iZXL&u4* z(Dlb=cwS&t5@K9@ohek7SvLL}x5nurHko^Cls9m!V+as&)$dwl>JWSVv(D*rzBlK8 ZVfYwsCbcV2 + + + + diff --git a/editor/icons/icon_mouse.png b/editor/icons/icon_mouse.png deleted file mode 100644 index ad07a403a6e6d0012d8f6e1d804b08e0a0de5a5c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^zJzX3_ zEPD4&vgTtlv9>~0@JG)MrwI)&bI#gC zcQ(d*gi23pkM=F{FPih|+atD>9f)-dWYdL+&0@OZsf{+U_C zl50I0pJf*O=VM3+c<^&^({ZItRmJCbY`=f%ov+0f!)5eb=0OMphYh2H%PuB|2b>I{ zp}7oOW_~zjxt+UhS + + + + diff --git a/editor/icons/icon_move_down.png b/editor/icons/icon_move_down.png deleted file mode 100644 index 7bb964675d0fbebedaef781d06dc51239e6d6c05..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmV-50m}Y~P)-o+dk|3J2oEp#o}O6ZvHh(9J<$q!@+ z+42>}Aa3$dD0DLiR+c+R%q5}FZV`wB>FMb`!~y>qB61Xw<1Nh79ggX}CFWO>9t6p_ zxI#Et?!BK^RrPb;YntYnnGXPZYwawlfQT5tgqb(0O0ll0#LOE2lYmKE7>3~;z!!jp zh}5y}oT~vW0DODzKQ5MzJ+*E7nq}E8kjMTI-ZyLQ?y3R+D9duMs&yESX;gJR9!@HV zo}F`_!4ixy+oC9zM5JSE@-GmPc3rpX`~C$0@;qOqhW{i^Y41-HxryUk00000NkvXX Hu0mjfflh@d diff --git a/editor/icons/icon_move_down.svg b/editor/icons/icon_move_down.svg new file mode 100644 index 0000000000..28d0d161d8 --- /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 f9de58a940d3655fa6a787cb090ae871eac05c6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmPqrzkIj>4g~AV4zUBr;B5V#MIKhjl72pL|ET@oAfj{ z$7~Sfd0^kX*}-hlh7C4+bLCs7dI+A}`o5$}jpe}Ge@}i@Fh2SnmocA}!CRB}aSOLY z&&L9tr92D2+ZCmG{9eHM@T95l<-8SJCq2*EHt)+5E=7gTYf_cxwuy$>>}<&WBi#3c Z@vEv~!jruCI-nC6JYD@<);T3K0RU%uQj!1w diff --git a/editor/icons/icon_move_point.png b/editor/icons/icon_move_point.png deleted file mode 100644 index 00e4ea32bda030ddd981870438dd08eed1bd0b9a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 542 zcmV+(0^$9MP)y2iz&U3Cz}(XF9Kp@hmK4h}-1yl)~+3WC(wVmkPaLz3pvT6FNhcldtq_Z-f> z_rU*#q$x>{CB2t)Fg$fhtCFVvM!q4br?b(MRE%>hP6l2AMxy~cJJ9V8iZe4XKM#ch zfPfV2Sb)VvfF6)Hv#;K;^bnY&(Kwq7u)PhQ>n3UD>v!e;=cr^f=jyE$!bO-p(wX}#a?cfv4S|1vvU zGqYPG*CT;9z+hD)932_^`;|l@@dEe;q|EG26h$ALb3wb^UJim_VkGbs_(7pCSk>6Y zayFa&X=cw(G + + + + + + diff --git a/editor/icons/icon_move_up.png b/editor/icons/icon_move_up.png deleted file mode 100644 index 92614b8799ccc6f33197b03313ba55bf24a4b63d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_4JzX3_ zEPCHgH1uM26lvRUp8Zj(*?dNB%U3STh9$y9%~MXUTWx*z2z!vBh4$YxUf&kt?ES&GRX> z=9_mXIfjPHAK=~a>E3?1o!|elMlcFLSR0|BWG#5JO+e07rLV##M_Xz4{dDovv})tq r^G~JJKh*!F->^D(Sw~H*)q^#BMnbl^w+@zqJj&qd>gTe~DWM4fWz~Fg diff --git a/editor/icons/icon_move_up.svg b/editor/icons/icon_move_up.svg new file mode 100644 index 0000000000..cd61e66ee7 --- /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 e076c9a26554b2e63c0a5de6272260dde98ce679..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmPqrzkIj;dR4CFQ8Dar;B5V#MIjUjl72q1epEXr2B_}KkJ;DjfmVXmP5`MdeTD=>Lw+KEsgQb9>qN+eTg!SFro-R-eyM!}xQb&g^~8JRLxb O89ZJ6T-G@yGywp{s!M7B diff --git a/editor/icons/icon_multi_edit.png b/editor/icons/icon_multi_edit.png deleted file mode 100644 index 0256ae094adc6d2fdd377504979a4cc7dbd8501c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP)?Ch8g-!4W;_S1@hTX)NUGa8rc<0{B8)&G}Xw)jt7C=N)M6`HZo(p;J zd+m1nHH5HNF{mR|wRxUj0{bz>hsk8J3t;NNBGPfreS{FUV~j)K5O|wTrw1Dwc<+0_ zyNH}7N%ECgqegFUf diff --git a/editor/icons/icon_multi_edit.svg b/editor/icons/icon_multi_edit.svg new file mode 100644 index 0000000000..b0de08316a --- /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 95a029cc6e52396d5f7f22d5a069bf94a78b1d2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_Ro-U3d z7QM*{3j_>|3=9lxDn2~0*JI`4; + + + + + + + + + diff --git a/editor/icons/icon_multi_mesh.png b/editor/icons/icon_multi_mesh.png deleted file mode 100644 index 6ff9d2226624dada92afedade43fa570030b9624..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 347 zcmV-h0i^zkP)T~CMIwK8DhJb8TcXpD34zDqq?fP;lL1pjpG}zKE^k)w!*t-U$c$lCT5SIGSE^r z8l(Vk@dVk)j>{(syJta$J>P@<9N;JwVr|gSDUL`M*Q)iV>k{r8t3JDh%!9P}V9Q~+ zC`_ytB}X{RrLr@H_E002ovPDHLkV1gR+lPmxL diff --git a/editor/icons/icon_multi_mesh.svg b/editor/icons/icon_multi_mesh.svg new file mode 100644 index 0000000000..09fcd9a1a8 --- /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 124bf81b5ac0122e95f9e166ee12e0f4f7047ab3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 376 zcmV-;0f+vHP)HK~y-6rIJrh!e9`^e=~e?1vf^wE-)T~KO1k+ltND=!QO*NxP>fS zxlj`mIDt@RTu4cUwh3{T@0<7L&6^MYSptw}*#j^U_iu9_UnI$*s(JhL)K_?Pkv3+d zkR-E0;2pR+Yqa}E7!Gd~K-@QHTNl{?1ORg%i^%-&=)TlE?@5}j{;V*a_C$3KU}h=o zGuW?T1=&S9bs|Myh-0l3XsKSB*}~yY;8l0Ku8c-sb*t#fZc((>?Y1xOONU!ieQwI) zL;yh2bfv9USK!4(I%Su6mU+21)G138t%3Wd>9r0TN-BZ!dE9JJ{)t7n6=Xj+P?5<& zQFUG-6~vRt1r`8Yq+RDZ#Bur5evJKQU^W6i#r@6A2E`|-C_e@QKuD4qa9!u3N#qA$ W9fC2 diff --git a/editor/icons/icon_multi_mesh_instance.svg b/editor/icons/icon_multi_mesh_instance.svg new file mode 100644 index 0000000000..edade9469d --- /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 0256ae094adc6d2fdd377504979a4cc7dbd8501c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP)?Ch8g-!4W;_S1@hTX)NUGa8rc<0{B8)&G}Xw)jt7C=N)M6`HZo(p;J zd+m1nHH5HNF{mR|wRxUj0{bz>hsk8J3t;NNBGPfreS{FUV~j)K5O|wTrw1Dwc<+0_ zyNH}7N%ECgqegFUf diff --git a/editor/icons/icon_multi_script.png b/editor/icons/icon_multi_script.png deleted file mode 100644 index 76269372965affe0a951c24399cd83d3146e5dee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 318 zcmV-E0m1%>P)Lr)cmv*o`#@rf zsdx^XOB#i)n>N5w4v}N$ixv1|gk6akql6G5fSF0xb)Qq`s&b>M%NXN4ZLjhzAuLkU zxvDNF1u5|eIPeV2fQyuV173lfRC6aHD}W|bs_Na$JgII+((|+c%-uIzf~0r?eh@`u z=bW-2#wh8{vm*CW*Y(4`;w(^A-|E~nCvDq)6*`|1HRHlV*kx1z?tbd-_rUtl!XYMy zI0&YmHkRg()c5@*aDA*G&%n&ilE}&%3f=x8ipWY;arcj335F)e6#q+n1Ibie;4K9A QwEzGB07*qoM6N<$f|Uu4%>V!Z diff --git a/editor/icons/icon_multi_script.svg b/editor/icons/icon_multi_script.svg new file mode 100644 index 0000000000..b377f04da2 --- /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 ea4fe06704495dea1058863b034d45dd8aa535de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 392 zcmV;30eAk1P)K-tc;#RBpgFmauA^WS z5Rra7o~^qmbsk0g&bdL+K}<}50Nev7z)?)U15@B4)(ow+cK~{ArB?g!-iPSwGIM$u z7l02Td~S`+hUvtyMZLvevEzjWP2y?wl*mqw_#2vQJ#44uC}nVX|7SZhF1m zPieHAlRG$2N?kP?4S?&S=Zv%Q5|vV?aUWJ)lg>p>F0k`&RA{%`ua%Q60q^}w6uSLO ms6u`Rix9$Oxm=F-75D{mxPZe*hlQ2^0000 + + + + diff --git a/editor/icons/icon_navigation.png b/editor/icons/icon_navigation.png deleted file mode 100644 index 3c5a3bdc4a68437a8277ccab04ea4b5a74e39796..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmV-e0jK_nP)$TmwKn8;| z1&(Ugp=>s%TNePBG#s+&!Sjfp%jI$4+*6}mRV$H`UYb645`-eDmyBc>1lOGeI-BiE z6up4#`)~ogTakT^#~)sTGKwy~mvaJ{Q;nT!Odtc01K2Cc^ZL%OpJ>TgRMXIydnQR< qiyn2cxGkN#w8jhp+_ez?fxZCshE%a7Lsy9a0000 + + + + diff --git a/editor/icons/icon_navigation_2d.png b/editor/icons/icon_navigation_2d.png deleted file mode 100644 index a6ea55ef13e811e2f32340cee7ce569145237d67..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmV-x0hIoUP)a_c}#c8GP2B6 z1fOP#0d!3nG8x0$4_7+!6#yly);kBau`VY}1;P;>080RD8+2yO>BN4Yg&^zvhg0}L zz}CVATf6Z-m^X4#Gp#3k3l}hO@mnLM3L2of#OwR_O~~pKxKPfRX4|Lj`g17($!brt z{C!x(EgO_ImtVGIBO002ov JPDHLkV1jHln+yN| diff --git a/editor/icons/icon_navigation_2d.svg b/editor/icons/icon_navigation_2d.svg new file mode 100644 index 0000000000..e08aebe1bc --- /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 e3bb7f775f0ffb4cdc2819090f9e89107e81b529..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 450 zcmV;z0X_bSP)tbQ3n8GZ5J8{7L>sY9lR^+Q?+_Ih zbn^_x&ZiL3fc9F5Nf5+Jv`88o3$tOzVo%~~Rv|jooHPIV&Ohe@{|o`pmcI^KLwQHE zEbjhAl2}{*Dyl~yDPTwDcTXcg(|XW_gw%xYDCK*=doggpqH1N z*Z$hVL1Ca%DT6tKsCcM@#jx-rq9j|5IzHa>j926DcMTLv>>U(9yC0O-&$9RL6T diff --git a/editor/icons/icon_navigation_mesh.svg b/editor/icons/icon_navigation_mesh.svg new file mode 100644 index 0000000000..cc04e06b51 --- /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 f5f25ef421e030aeaa03775966d807ab1c5dc1fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 480 zcmV<60U!Q}P)MF|`{}iZ5{MFS{8;y$KeFw89X3gMz zXG5UK^LDkco&(s)Nd!RpjlPx}K$y)w%j`i7#K)xHf2{eu8DjhfROp3w?!eM?;Q(Z| zS7#x{_!6K9p^NkrcmX^IeiR{eVf7M;afEZ3Nz1y=WU%kOZ&lZ)`TT=I7;G8cZt)8n Wn!oFJ#uTgo0000 + + + + + + + diff --git a/editor/icons/icon_navigation_polygon.png b/editor/icons/icon_navigation_polygon.png deleted file mode 100644 index bfc4bfb54225276ba856642d303bb646df563914..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 384 zcmV-`0e}99P)#Nkjn_Jcgavdn89EWIA#d8Vt)XRzXXdz z%^)Bl;5Gxe5|AWa(n^BDEGcP|hbc)nHrj=!-u>>rci)45mH?z_`ULE+$d0YGhhBMD z6$V%XFxA9bE6ZNTaojP+j6`GycvID50B;#kt;uAv?)&~&L^grvq9_iWbMLR8Avw667fHCGC*jCk{b1qAgq?aT~Z{|(i3IHN<3E+9&pp0G{ z85Biv1PraUFHscvsv4?l7)6oa$e`QpegGjryWQ>sol1XGYcRLQU{T*_Kpe*%pkIml zWj4D)nx;C(o>*(IjWHqcDI%vprm7cZcK&1VxZvZj>2!KmD!1}H-wJ}@DhPtxJkNJU eq}9Z}w!Q(u)@ib(bQhrj0000 + + + + + + + diff --git a/editor/icons/icon_navigation_polygon_instance.png b/editor/icons/icon_navigation_polygon_instance.png deleted file mode 100644 index 89d420ca14536990f90b224315a516af8e21c12d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 409 zcmV;K0cQS*P)Ly43(&6*ChJ@IxnIU zjf6y2p&;2TLZT3zh|(j7D8wknWM{5oEgROFja%LS+rwz*RipPE}?kYM*x%_#_J>vF&VpC;u72q*?>U1ge!8i4IQV;=yTL%q-9< zHL?qkkOm29kXax#vaD#eH1FJP-)Ntx`l9M@-)LWJr|TaC3+^MZ2H-r!o + + + + + diff --git a/editor/icons/icon_new.png b/editor/icons/icon_new.png deleted file mode 100644 index b012e1f2145493a18d6223f37c333a3217cfe763..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@)o-U3d z7QIV@cJekD@H`P{j!{dJ(a_M0XzzUE>yxUYXz$eCiKZiM|Pot({IB%v=7p%x+Pb?35|8SA{&4 y!b@{zT#QYc%sl_@$+n;OLS + + + + + + + diff --git a/editor/icons/icon_nine_patch_rect.png b/editor/icons/icon_nine_patch_rect.png deleted file mode 100644 index 721bd36d08d0241b5b8fadb7abdd8bcfaf0f2413..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`6o-U3d z7QM*{3j_>|3=9l(YWF|0x16<@)mdVuMkyon8P*f)4m?vTsg#(XBpx8cCgFD|RpIO& lgAZ&x%?>gum5o9S44ZSj8spd)3V_Bjc)I$ztaD0e0sw&@DM0`L diff --git a/editor/icons/icon_nine_patch_rect.svg b/editor/icons/icon_nine_patch_rect.svg new file mode 100644 index 0000000000..4a8caa4816 --- /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 628b632332b3d30357e163c5cf631df430b53d02..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 403 zcmV;E0c`$>P)%lQLdm(>3u+xEsH^aX7W|)D$4z*k`#>7z+or=g2 zu#I^A%d(B4C~kpHh2gkXtLza2B1ssAC&1-G2f#6ah@35v0cbXx zA3%Tp?}C7cYymju?knae&+|JE+baUUi6978wl)(`O1%QaalBI{P_Nf_J$(78gKIBz zo~G&AGI=tYtc%EnPX{yO5*TCRFbqdP;@8+OXO5z1&yzQSv9-3_ZnyIV0hk@q5J)Pf xs6HeBt@YGe+XZ^S2>A5x5$IWKyYuA#5#MCrgi}WmY&QS^002ovPDHLkV1kTgu5JJT diff --git a/editor/icons/icon_node.svg b/editor/icons/icon_node.svg new file mode 100644 index 0000000000..d7f1d5b9c3 --- /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 d6c8f1f98859c7ad3a40a9fe6e31e5dc2c16ed71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 427 zcmV;c0aX5pP)^4acah zi?9STYPx!klDi?2-k6ow9|4)-^Ppw9MPRJcG=<80Be1YC-+k@%0?m`Z%~AzT)SZ`T z-Fb;3vItxW#DkVwNR>70`7E!9QCkNY1F43jF`k&|yKNeNkS*OG6AYaS8jl5PtH5r{ z4G@y1a5vk`04&e-->JG=pIMT=2!ad))SdcKr~F3FA%KXC_yE6=9TMNKeE}4`1n3HP zPyPgWYlNl%RQ19K5G89!x}7cEN88Pr{f7Yv?3lykzIaoX(FdH^ Ve$fWaK>+{&002ovPDHLkV1h^YymJ5m diff --git a/editor/icons/icon_node_2d.svg b/editor/icons/icon_node_2d.svg new file mode 100644 index 0000000000..b9a73ab1dc --- /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 6373bc0fa5523bf0d428dab1228cb54a2fe1043d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5ZUj#p06>Oi4+=3UCkzI=;44#=GJI5C^S XQ_1+WOWMv@pw$eXu6{1-oD!M<9^_0z diff --git a/editor/icons/icon_node_vec_slot.png b/editor/icons/icon_node_vec_slot.png deleted file mode 100644 index aedd983fb43bae3f2a30fb1f32b0802bd5ebb701..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5Z!_2Q*0e}F;-o-U3d5|@+z zoc}Pt5eO8^PepMsbE!RNF*Y&)f`92h&QGvTefxix`1^;GzT59ljaaklkb$N8jERQn zr=)f)(J+^fxwumNyQJ9aRR#tJSth8)*Z*ZnH#QVt@G-DXw3=AD*uv=BH(3$R9m<@Q a!VGQ^rb1skm#_fsX7F_Nb6Mw<&;$TE9!)0z diff --git a/editor/icons/icon_node_warning.png b/editor/icons/icon_node_warning.png deleted file mode 100644 index 8b1e9212a872e85f372cdd48eca35cba8bcabc50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmV-G0l)r`-4+1m*gDqIU+MA!Fr*G8wCnLCGj--G`yi!Ibv8Rl+3nzvmWRxcr45=AF& z0*rtWmY)2|f#%hK)ZGEOA3Xzw73ITv4zjcXaw|%+qBLL=<8rMC>gqAl!B1Nps;&2y z0@PL+va6sg0JE9yXB%+`iJM^TL;(g-%pm{YwoGv-;mFMcFTYcv~=ULhy<=>>; zQ~^T&phw`pQC&R-yIEBF9|(h_eH)%#`v}&ow!TQWi?0zLLz+kgzYO2}eZ2!UibW8= SmT9*D0000 + + + + + + diff --git a/editor/icons/icon_non_favorite.png b/editor/icons/icon_non_favorite.png deleted file mode 100644 index 92351bde04498f13e729f666ab46e2ce5d31af76..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 475 zcmV<10VMv3P)VK~y-6wUe=HQ(+XvfA`Bvz@|eK6r6A`M7T=LI{YaxU|V}X(VZqf`WIv=iGD8y_XCBGx9ud + + + + diff --git a/editor/icons/icon_object.png b/editor/icons/icon_object.png deleted file mode 100644 index f4f018c86359ee7ebb31cae2b0504f5e4ffaa6e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 354 zcmV-o0iFJdP)2qDY>6j?ym@>l@?bMO6$ zNr$3qiQECOmyIU?HObwcR&*nT5Y$#58$r??fP>_N{APRaX?jF>?~h2H0eB}ll~hV9 z+vL>Y;ARH^l8tlj)j4-e@)B#9852n^opVnc1FEXJkTh8*F$c^6KvEe(cv}IgTSw9i z_+ycJZ(ak~Z}lIG)T91ym2=BJ6G-0w_L;V}FLgDsUSc#(!vFvP07*qoM6N<$g13c` An*aa+ diff --git a/editor/icons/icon_object.svg b/editor/icons/icon_object.svg new file mode 100644 index 0000000000..223761d0d8 --- /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 bbfc9ac0a5496af64715c98fa92a3d6b9a7a6ee0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_~JzX3_ zEP9g@76=#^85kJo-2C>_UXS&9o_+d_+80sJUv6a-z42t`hnfGr{S9wpcF#95_>-<< z&U^2I<0QuY|NkW4*!EuQ@O%6J3QQI}2Qv@+TWl_QZ}0ymt&XDtd*TjoT>uI;EZ%C> zJVAlq(YZkCz^Ow=9z0!g_Q0to=acoviuSMpEj8faE;6==Sp7Ko(1Ak-4jeGZ{PwTw zf6xDoZo-NOjsOJ;vi8QSKdyIM!`Z6AtYOHa%5%byMOnbplqFjyKuAr6nc=>)XG6|K Sp?N?rF?hQAxvX + + + + + diff --git a/editor/icons/icon_omni_light.png b/editor/icons/icon_omni_light.png deleted file mode 100644 index 286ce723a47637838c70be33e7944c05aaec6ae9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 347 zcmV-h0i^zkP)s#(%R@w_s1Bf002ovPDHLkV1iVymC^tJ diff --git a/editor/icons/icon_omni_light.svg b/editor/icons/icon_omni_light.svg new file mode 100644 index 0000000000..d6c658b9e2 --- /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 81835efa25f46928f62c25d8edaf35bc2df5d421..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^fJY5_^ zEP9VlH0)w>6mX62UOCfED#Yky6|jqQ|6p``mZ zG3NSf^Z)g;v%dFZ3b-ozfwO0QE$157C)zH7S0}GJmzQsR`s|w@^338BuQa`D-1GIn zyUVj!Ho2g;9{X2^T+L7Tc)Uzq>2%!gwX3ouB$#~| z(1E-2rD|Lld@qX>*e7SE?cB}Z5SS335?S_-H)8j1u^BAKW(D1H(Q)3%kS*)NCn9#D Q1Lz+HPgg&ebxsLQ092S~dH?_b diff --git a/editor/icons/icon_option_arrow.png b/editor/icons/icon_option_arrow.png deleted file mode 100644 index b7bc38e03f32ded10e918e44e0a69f6cde531403..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}}NPZ!4! zjfrO`7;+s75OBHgKh^ET@jDLEduJW*+_=HRWy1%xIHwD7=Rf3Z`@wk8Eco2M$hO8x zFWVK1Z`JHHeYHT2an*t7CuFXc4O~6g3ryTA*F!LV#dko+#z1WedEm$ns>q}}iqrIB| z;HIM~$^c7d)&>Zp!4%~Y%Xz^Mj + + + + + diff --git a/editor/icons/icon_override.png b/editor/icons/icon_override.png deleted file mode 100644 index 9d917ede75c1fef6f032bc64ab994a31617d604c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`VJY5_^ zEP9VlG!$xb;Boz5{>GxoVzN|~{zKI*kDNp*Sot1Qma%j7F@)yuJUXZMDB{QNl=?cO z{6_hssSoE^Gw)!uQ2Arq;N|k}+6~sWv{VU(qDf~r39>yo?c}1Nlpnt8RblEuc^3uV z^XJOXWg3_tHes9ppmkPal*7KHzEcTp`xE-FtJVrGTospmFN5Lat?Kxww|n(HuNl6# zD@a78fI)lXVjjR)Dg&7!*n)q(p>M>Jifji5RRdGShD%KBbP0l+XkK>a}hN diff --git a/editor/icons/icon_override.svg b/editor/icons/icon_override.svg new file mode 100644 index 0000000000..9c6fd9e177 --- /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 abca359eeab6c7d5d91936adec468ce9e27e4275..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`To-U3d z7QI&|UgT^r;Bk3>#8AX2_WA|?@B*RZo(sHxT>X{2(8G15LRGxwq&>|n6&lM9ok_}c zaG6nU{Fz}+hYrJqkd`u)=P6kX9fsff8Ft=dT=8nfs^FE^??tLvzWG}9CVt;XpO<^> pEgyYnP^mR-Si-NkW7dO3W*V22C+1g&?FBl4!PC{xWt~$(69A2hOm+YO diff --git a/editor/icons/icon_packed_data_container.png b/editor/icons/icon_packed_data_container.png deleted file mode 100644 index af89da48a9d76834089c044a59a0feff5883d30d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_so-U3d z7QJ`-9r+pzI9Rs(${%w6^7WhIZ{fWiirX?S9%(LKbU{()!z3046>)~(3u~2(p8pk` z%D?*vPg(8z9(;^#S;$)c{M!W%Q!TraD6>#z W@4YsH4k|zk89ZJ6T-G@yGywo4#6cYZ diff --git a/editor/icons/icon_packed_data_container.svg b/editor/icons/icon_packed_data_container.svg new file mode 100644 index 0000000000..ea347ffe38 --- /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 9079762932097c37d6eabeee5d969531cd5dca4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`FJY5_^ zEPCHgSm?zXDB^m3-|{_q0f!HycD?x1aC1?{Cuxz*2cN|M;BPv~Zy>>&rpupr&e5Hv zIk$_aSeKur`vHeo_^pR;jy^jOzxX}ht!=S>nx>B}?5>yE_IEfxVA*lfQeK6jJifEz zs_VVJ4)1b%wh3FfV`kr!Y?yhMDf + + + + + + + diff --git a/editor/icons/icon_pane_drag.png b/editor/icons/icon_pane_drag.png deleted file mode 100644 index 57f8e49ba370deabd47df6fb72545b781b537ef4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 620 zcmV-y0+aoTP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipq- z6D$O5qf(Rr00HbtL_t(I%bnBTP7^^C$MNrCA!xy*rBa{~MIz zSm5Q(3+_%%0uh7&(O;zjh$0~H>*9j9hwnJ*_o)DEceVgHKRdsy9J=`@8yz2GyR*en zzt0Fjy;dVtWp!f>6+zXqy1s@Ji<8`{78PN2V~tdmdaVYKH}F0q^BKL~E3y#CvOw>3 z4<7TaJ*J1Y->Ib1kg31jua+ z6gI{ZUDQ5nIC`j;R3qgE)ROh~t}l=l$Pbom5$RfQCB&0000Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipq- z6D$=56LMw%00I3;L_t(I%bn9rOH@%D$MNqq$0(+0aN|_-ASz+%D6`POl{kb)KA6e;E ziEg*c(Q%&uTvTu + + + + diff --git a/editor/icons/icon_panel_container.png b/editor/icons/icon_panel_container.png deleted file mode 100644 index 05bd1e082faff73c95af40f04e5186d913e9015d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`Do-U3d z7QJsLZ4^9YAi(n7)P!N>(=HFiP03eNL=RXr&S(ngvHmde#Dp1=nRBWR&%ghhpU*6b z;qmXnX_{QKob)}p{=WQG!mv4W#RSGZGhG`F8!^1-6W89De>v8H`+?TFb(`4VFn-8R tVyelD&|LqXeUcNO=Cs_hg-QSI<@M|pO3ID5+yOd+!PC{xWt~$(6977aN=^U( diff --git a/editor/icons/icon_panel_container.svg b/editor/icons/icon_panel_container.svg new file mode 100644 index 0000000000..a52493b665 --- /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 20e67fad1af3070d9c0524bd79ee5a6a7229098d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)1eTD1M^W{UT6=v%n*= zn1O*?7=#%aX3dcR3bL1Y`ns~;XX6uMv)*xGe<@H%HZvrm#5q4VH#M&W$Yo$~E=o-- zNlj5G&n(GMaQE~LNYP7W2a2nEx;TbNTuy%S`0?-a4eSPn0t_Vq2R?m&Z~uqu-=Ck& g@r|oDOUJP?=sjfr`E>t*lOVG^UHx3vIVCg!0OYVZ#{d8T diff --git a/editor/icons/icon_panels_1.png b/editor/icons/icon_panels_1.png deleted file mode 100644 index a909e6aee8609536a427b072cbfc302d9eb1106f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 100 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt_Vo-U3d t8WWRiK0IJ#)@*f diff --git a/editor/icons/icon_panels_1.svg b/editor/icons/icon_panels_1.svg new file mode 100644 index 0000000000..9edf59b527 --- /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 28a1ca2a596f8ce12550c256d2da347c02bda365..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_No-U3d z7QM+eA08a6XX9cJR-NU}yI>L{Grxqp@TCF+1_r;+?2&$6VDlI}UHx3vIVCg!0CWc& AX8-^I diff --git a/editor/icons/icon_panels_2.svg b/editor/icons/icon_panels_2.svg new file mode 100644 index 0000000000..7a2c18ecc9 --- /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 14f21304c53a5e72a1f9ee921d3a3e134276559d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_do-U3d z7QM+eA08a6XOnSobZng1*x1N8UrH@T=txr_vm393X~G5x28KC(?E7bny(s`{V(@hJ Kb6Mw<&;$Uybs=W} diff --git a/editor/icons/icon_panels_2_alt.svg b/editor/icons/icon_panels_2_alt.svg new file mode 100644 index 0000000000..c411650136 --- /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 76f1f53636e820015f54d5311ea760c034006e7c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@zo-U3d z7QM+eA08a6XX9cJR-NU}yI>L{Grz<~RTWlNRyQ^vsL5ip6L9BENMK;N63QL9@KVlw Ppk4+~S3j3^P6 + + + + + + diff --git a/editor/icons/icon_panels_3_alt.png b/editor/icons/icon_panels_3_alt.png deleted file mode 100644 index b121bc62c3cd931fd68682d107e91220ca431957..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`Uo-U3d z7QM+eA08a6XOnSobZng1*x1N8UrH@T=txr_^NIupWy7uvsa~BUDk?Pz510$DFtD*P YBwXi@|CVh$8)yWBr>mdKI;Vst0NH&e!2kdN diff --git a/editor/icons/icon_panels_3_alt.svg b/editor/icons/icon_panels_3_alt.svg new file mode 100644 index 0000000000..5f8c78d471 --- /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 19a3bc0bf2161564e9fc6968e30f667da9f23eee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_-o-U3d z7QM+eA08a6XOnSobZng1*x1N8UrH@T=txr_^NNH62bhmtY%!7HVPL59<&O-Qv)2x& Ok-^i|&t;ucLK6UWPb0zr diff --git a/editor/icons/icon_panels_4.svg b/editor/icons/icon_panels_4.svg new file mode 100644 index 0000000000..093b40b603 --- /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 38a53afe52f36e7a2e3c1c204e44ae674c4977bc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 354 zcmV-o0iFJdP)jY&=DF+Y=jFLd?`sD| zBTT8Xgs=dloV#^B+)i}Hw>7%fp`Anz{5k(pZyYy9R(2uv^8f$<07*qoM6N<$f^LVQ A3IG5A diff --git a/editor/icons/icon_panorama_sky.svg b/editor/icons/icon_panorama_sky.svg new file mode 100644 index 0000000000..f3da955dbd --- /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 78d7484e8b101f838ffffb4100fe9b65ffdb9fb7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`ro-U3d z7QII&S#uqB;Bj$R`yNrkE50+#BQ=I~{%N}tuf$fC1*sUGt1~#n=&vg9+2odJ!8R6# zq#o{ud#NIkP8{Ji3@5FBzJ9sqSd4GOOy1eQ9x~0i=}^QvVb4|tRt59-j$962FK>25 zzZPW(o$GN=o6{{+cJ-56=4t&AYrZ_T{K}_y;J40RO_vlqt3UQtj123;7r&pDRt + + + + + + + + + + + + + + diff --git a/editor/icons/icon_parallax_layer.png b/editor/icons/icon_parallax_layer.png deleted file mode 100644 index 748c9164bbae9097620797d5164e846891f333e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`VJzX3_ zEPBsQ+Q{4FAmMgD-(**_*||n$4PlAL3_b~oj){p68Fn#jU^>CXx5&A|@!j?SO`A>u z>HV)J?f(9$t65&1p|I+!pydJ{=^}AKUa`xL*J`W2Et>l?>6*3a!o_<&Xymf=REo@q zzWqh~awhk_^ + + + + + + + diff --git a/editor/icons/icon_particle_attractor_2d.png b/editor/icons/icon_particle_attractor_2d.png deleted file mode 100644 index 84be7dff3b34e1754f830b27d51d400bf6159b48..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 629 zcmV-*0*d{KP)}msqnTB$;nBV$qfw`5=bz`^^V*Dsh<_LG+1i}~}TSqIBc2{Zs>vS>M?0Mw0 zSs9iL7;)m330yMIT~Y2BFvzr9GGIg*mg=uN*UlACh9MFQm5JO8L>dGZ8RCXnc;g%v z2{tMdxfuY97Q#@^=X-&*<7XuDsJ?pK25`@e9<($_sG z%!0^6<3*@?3f~_3T>qiZ_5=0~Fy|~@04?uCW@{@4g_920)dt{Z%yX9^Yyg%%aM@dZ zp|uQy9;R|reWA4=43s#B53Tgs0CfOW$g9ny3$*)-=%s(9at zVG@QNi8jCxE|b`f8cSyQAoP>B$CFRL{e{!2tsE3Y{5$}J5X!xo|GRzyh3*T0Hb`Ka P00000NkvXXu0mjfe)SIA diff --git a/editor/icons/icon_particle_attractor_2d.svg b/editor/icons/icon_particle_attractor_2d.svg new file mode 100644 index 0000000000..c89742be04 --- /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 8d146b2946d3a3f2772e6209693ae042b483343e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 370 zcmV-&0ge8NP)I(OZ!AOO3|UIO)b8isPb_Zgb24<$~Fb;dw914((JxiA}y0?fJ2Tx~wr0Vo2vC~AcyK_MJqw$68< z;oi!Q%8-9C=Q=Km;+0!3MC$!x>V0pOx%;IFfaVw`=F2qdrQSa*ZTJhm0C`V&IhD?K Q6951J07*qoM6N<$f}_Zxi~s-t diff --git a/editor/icons/icon_particles.svg b/editor/icons/icon_particles.svg new file mode 100644 index 0000000000..f8a0ec46ec --- /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 e03ff1e1897dd0d90c7de9c0a212c44a4b2608d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmV;20eJq2P)t60RhR>pc9ykcV~9vb@SD7+4>$pT#TwpbS^nF8xy-R ziQ%N-G83DUF5+SYaOnV)=mfwfEj1tq<9$#3wScgLauMEZhJ9002ovPDHLkV1l}Tq#ghO diff --git a/editor/icons/icon_particles_2d.svg b/editor/icons/icon_particles_2d.svg new file mode 100644 index 0000000000..397922f31f --- /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 968bbccf8ae37ec4722a1947560fb20657e115fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4ZYDlM5)CF+z**Xe|$+iG%&DG3Py#{)WCCtHbazFJttcr=A$N9WN8 zvrklQsC=ll%X@=F&vk|!Y&B-WJT7c(ZL@#m9Lr|Vo4s+FWDF;#KU1)}mZGBd{3{U- sWe0sXB{44RycCh3pe81vdG;Jb@d}sg3r_?+0=k63)78&qol`;+07b!9A^-pY diff --git a/editor/icons/icon_particles_material.png b/editor/icons/icon_particles_material.png deleted file mode 100644 index 3b5c5644b2bd3b3ea0cba96f58facdd9046de26e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 367 zcmV-#0g(QQP)D>qpAm>$16}`<^5GMW0#PUwVbfZ)*Sm N002ovPDHLkV1o5tn(qJr diff --git a/editor/icons/icon_particles_material.svg b/editor/icons/icon_particles_material.svg new file mode 100644 index 0000000000..95121d8321 --- /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 3b5c5644b2bd3b3ea0cba96f58facdd9046de26e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 367 zcmV-#0g(QQP)D>qpAm>$16}`<^5GMW0#PUwVbfZ)*Sm N002ovPDHLkV1o5tn(qJr diff --git a/editor/icons/icon_patch_9_rect.png b/editor/icons/icon_patch_9_rect.png deleted file mode 100644 index bdd14671448462f6cabf02240a3c4c5c25fcdfc6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_po-U3d z7QM*{3j_>|3=9l(YWF|0x16<@)mcLF0`Gxz3A0k4CpUU{+8V{(cqPOxddTVrFfsUq WnX`YWUUdX$0E4HipUXO@geCwro+PyZ diff --git a/editor/icons/icon_path.png b/editor/icons/icon_path.png deleted file mode 100644 index 4ebdcbdc44d57d3ea242740a5337231429f57e1a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 353 zcmV-n0iOPeP)+lTE==WdGsamI0;AILsKs`uZ4C&7Ig(r>$P^c=l$#E5KL6>|H>m{W|Y(MF8}X z5`YlGQ4@mt6(;d=EoO5oh%p0Ru%D+1`?vZ8SMp;}+AfRU00000NkvXXu0mjf>Q|Ik diff --git a/editor/icons/icon_path.svg b/editor/icons/icon_path.svg new file mode 100644 index 0000000000..998fabb888 --- /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 c5b0d5d7c6b456e366ba945095bc4779d4805ad3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 359 zcmV-t0hs=YP)?>LlHF<1l2c#p + + + + + + diff --git a/editor/icons/icon_path_follow.png b/editor/icons/icon_path_follow.png deleted file mode 100644 index f71651d24175b15cd7ce00d61320e49ff03de031..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 387 zcmV-}0et?6P)p15pr#zq$9O6(l%bfTX541mzug078PO*zV%{0+67v z742?GMGfzPAV3fp2#6{O3WKBja|hFI8UnN%#>|~b&X+moLd8mxq@5;7dp=7Q@ia-c ztjIM$p}JcS!-tgtIv%h2>GVcLngF8uXzKNrTNU85tTz)2fQmGImh~!G_#6xx&beoS zi4B4VfT;qo&K=C2m-F3H3pyHY + + + + + + diff --git a/editor/icons/icon_path_follow_2d.png b/editor/icons/icon_path_follow_2d.png deleted file mode 100644 index d82e682dba6ae48bf131a3f066981a9b59cb3b20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 392 zcmV;30eAk1P)Iq_K?cv;uu7Kp#vcF m3y+aNM9aV{@Y3tz|L_CNbZ1FLyj9r%0000 + + + + + + diff --git a/editor/icons/icon_pause.png b/editor/icons/icon_pause.png deleted file mode 100644 index aec11d5c35782396527db070d27864242c69c975..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^0o-U3d z7QJu#Hu4@Y;5qyv?!o{2p4I(Nx#wIBHZIX@$`G>TXxb|z*uP{_$V|&HxdT=ntIoa4 s%a?ob>(?)yKY0hvyt{V%RQ@DRvlkjWPI_!{0h-C+>FVdQ&MBb@0HU@y8vp + + + + diff --git a/editor/icons/icon_pe_edit.png b/editor/icons/icon_pe_edit.png deleted file mode 100644 index 7082303a4e17d5ac8dd135e270bb9649724ec54b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 403 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg49zG#n_0WjTkAbELd%8G=Se)K^ z+1iiUP^9%?ep^F@i;B|$t7S7>F9bRqXLGZ;&fv|^C1|_bbD~hEXhVgj0EbdSmxa&* z9}mW9F*kO7w?A%Y_TOfb#c{Eax65aAz2@Je{71(}n;~7GAv4`_?^z}9xaZT#mJzGV9>1<-O)AQrykus6#JCYA~t>#KQFvn!67=3Q{D=kU;KNx#ss@$3Ult@4j% sIqQl97CD)VE&F(8@A^~q-)7n|@)!gs*cTV(14E3#)78&qol`;+0Qs+*=Kufz diff --git a/editor/icons/icon_physics_joint_pin.png b/editor/icons/icon_physics_joint_pin.png deleted file mode 100644 index 27ac67ed0a56c37c2144051c2f20a6830b288f78..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 454 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*x382Ao@Fyrz36)8YL_7YEDSN2=X@(f&>9p7$<0fi(>Tq8=H^K)}k z^GX<;i&7IyQd1PlGfOfQ+&z5*!W;R-fmSJcx;TbdoW470qu1d8iPrrc0Zc*Jxf?}T zyd6Zmjy}3@_2NqY2UpY!icMpW9zDAC{DqV30_u*OB20}A3k8@umrXmQdbxB$OI+2} zS1%;%&;5M&uz=U3XwMP0bz**h7ys3ber{TFP(i5YPi9?yl`-|=udQ1 zVUYM4tTmf8OLVe<*pA1N%hjzJS~f1YzV*|cUF*UwYXz>K#c*YH8Xr@^apR+_8E&zs z9tuCW`S-FJo5ZZ1HYf;P+2*UdrE7}ddwFKbV@*G7V~yNSK7ae`(TyKM3mdKI;Vst08jO`D*ylh diff --git a/editor/icons/icon_pin.png b/editor/icons/icon_pin.png deleted file mode 100644 index cf89679f88e7f318c04fc0f56d78aada3734a6cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^LJY5_^ zEP9g@76=$D;mb)Kl|8x3Sr}yv-#n#ks2h^tHbhyKOp4*&_rp^Lf%LQ2GJy) Vho)D8Rsh||;OXk;vd$@?2>?t{RD=Kk diff --git a/editor/icons/icon_pin.svg b/editor/icons/icon_pin.svg new file mode 100644 index 0000000000..b0f4ae4e99 --- /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 78e8a83724401eaec83678d33241ec956ebf9264..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 418 zcmV;T0bTxyP)7E zG^($@0}$AvNZa?k#a{!YR?7)F2{KD#TEk360;Jg-Gnq`ABGZuyv%^eA0*voh0W1vW zNtzG)wY6m3kgF4D_8bP-+{%6GiS} z%!9V=DuLZdKyJPSh~p@VOc6L$`Fx3$$_oH!+pdbpfhKQ90sg<<0Dwr5oEc>R4*&oF M07*qoM6N<$f($mWX#fBK diff --git a/editor/icons/icon_pin_joint.svg b/editor/icons/icon_pin_joint.svg new file mode 100644 index 0000000000..028981a95a --- /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 355d5a2022f666d080b562ad6db34d7185bd0451..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 428 zcmV;d0aN~oP)gGFutX3rCv*+IQuK|bGPchI8LWq#awK8c7*ej~bFL&o54cAl%0fP<4Iyr#jO?1KoFrQ3Bu3Z2iscfN?AeaFJ0dU~@)C(YA`!F#fW(i+K3-KI;r)g|kj6M_>Uj`~93)YKG%h7*1QLEtR+hQgWp z;U>V|nKxh}CT0S=C}H!ni@V80c%|tr0JtBUk4ydRz!iKOL*U2dxaD^fSv|KJ2I{_% zQL`$mXF(65eN4?pcO + + + + diff --git a/editor/icons/icon_pin_pressed.png b/editor/icons/icon_pin_pressed.png deleted file mode 100644 index cf89679f88e7f318c04fc0f56d78aada3734a6cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^LJY5_^ zEP9g@76=$D;mb)Kl|8x3Sr}yv-#n#ks2h^tHbhyKOp4*&_rp^Lf%LQ2GJy) Vho)D8Rsh||;OXk;vd$@?2>?t{RD=Kk diff --git a/editor/icons/icon_pin_pressed.svg b/editor/icons/icon_pin_pressed.svg new file mode 100644 index 0000000000..b0f4ae4e99 --- /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 25d869f31ee9090de5a961841bee3bdff222d36a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@&JY5_^ zEPCIbH{?3xAi{D%@^G8Ow(XG-LHREogKl-Fvnz{9Dz(e5dK(?aqF#@hoCzP%6rp_3Y7{ fY + + + + diff --git a/editor/icons/icon_plane_mesh.png b/editor/icons/icon_plane_mesh.png deleted file mode 100644 index 8b86099d67684eab1a3f9073d19ba653dbe9b3a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmV-O0k{5%P)fFFa?KNNg2vQw0`_i83Cog4kMQ#Fi4TyjPG7*+^#)$Ru + + + + diff --git a/editor/icons/icon_plane_shape.png b/editor/icons/icon_plane_shape.png deleted file mode 100644 index e7ebe1fbcdb8168bf071d4d73937495b0e67a4db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_$JY5_^ zEPCIb-^+K9LFDMi|GAT2C2fm1BgDp^lq4kI?O7piSenJtHtWs2rZ2oY^BhcPC11Os zCh=Q3KhN)6{(vRy+Uz diff --git a/editor/icons/icon_plane_shape.svg b/editor/icons/icon_plane_shape.svg new file mode 100644 index 0000000000..27395b6a42 --- /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 864e4e4fb99d04eb2f2b400e10128c50c76431e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_OJY5_^ zEP9g@BtA6=&iwq~VDn)f9-c!$yp)TJEBd721N)e!iG}LS%+3?{?D=C_!)EYs(vScD z_y7L?|G&On#fOAblhyrOJj)oRejGS);>O3<*Vl8dTD8i)vxrej0I0B@U0eILTnT3q z?*YyZ(+9T7%E?FH-`^j5K{bLS + + + + diff --git a/editor/icons/icon_play_backwards.png b/editor/icons/icon_play_backwards.png deleted file mode 100644 index bab285837309ce95c77a679afa405fb47bc582e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_uJY5_^ zEPC%w+Q@szfyZ_JMMK7&zt*+#YAjfqz_sd3ql>Gf`(d*$l1dXVDH=Aa2Dd(&&`1aSI%?;af#aC6CY&J5VE)g1f zcJFugP+P`(X9OhgnJ|jD7MgD^4S#-!Ve=YmM^1&74Wbi;Di~(mOlJ_hC~)Yk<#v{J rN{cKHypaDg*YMbnbG3gx>KBM#?lnK_ + + + + diff --git a/editor/icons/icon_play_button_group.png b/editor/icons/icon_play_button_group.png deleted file mode 100644 index 83820c8e0c2ae67179b90d615c71c14903731b8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 427 zcmV;c0aX5pP)YS)vuPB&tM{z*8CS67=Pvl*ly+Egnro8ymVkqGS1+Bq<@V9?$gS{=p*1Ykv)3Lq-_Spm!}8~9ru$nx z6*X9x5BZr-w_ZM@u{ZpBY4xkh%O=_kU!!V+dHHhzVFXy{!gp2G#K zYl6MX88nxMC$P>jU^{mu;5tL@ZMoH+e>*yCl#0Ga)^>ErEXbU-c$3a{$+PQzt=xB| zbg!|K{?*GJH-3HZ+q7}U3}L-4rRaZUf8H&BV9!v`s<(_G_?FCp-!TV-6i#oN-LZq6 e@425 + + + + + diff --git a/editor/icons/icon_play_scene.png b/editor/icons/icon_play_scene.png deleted file mode 100644 index ebba3187998f9e3d2cdc2a2818266a1ad59912e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 350 zcmV-k0iphhP)n%bw@mabMB~;d;;&UCzXFCAJ6`f$SX+|(EtDd07*qoM6N<$f@z?WfB*mh diff --git a/editor/icons/icon_play_scene.svg b/editor/icons/icon_play_scene.svg new file mode 100644 index 0000000000..aef7b9e803 --- /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 dacc156614b04eafba053adf640288d803d11d20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 269 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_KJY5_^ zEPC(u8*&{A5O8_!-L!Us*@tY~rX?aeHeGWSZr!Y6kbb{#LBjM3hS???XS8m4#3&TO zE!-id=(&8o62=C_hUShrE-4}ED_ldD zuc}hs>3#W1wys72!3Cc?%eqt% P=o + + + + + + + diff --git a/editor/icons/icon_play_start_backwards.png b/editor/icons/icon_play_start_backwards.png deleted file mode 100644 index 7608e18cbab6521d6e121a4e531d401685a9c27a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 279 zcmV+y0qFjTP)w)_6 z>&^}YUDuuDoEMVjKgqw70Gg&bF3a*h=llqik}$I|`<Xua5Vb!H-Wof znb{op0FX3IU}o9fUs6h^z_Xd + + + + + + + diff --git a/editor/icons/icon_polygon_2_d.svg b/editor/icons/icon_polygon_2_d.svg new file mode 100644 index 0000000000..fe3846adcb --- /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 b372749cb0e59a9c58f3e0724481b370a837b110..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`VJY5_^ zEP9t-I>^Q7C~@H9fAcMtHx@UW2i%dBnPQ<(*MFTIJsfMD6rCdrx{t?o@-HNemZN8y@|hb-lcMfBE4v{Mvm2 z93}#OfoqO2oO-t5eZ;QGi9d5#Q;xbF5RqnN-z${Ca6ID0lH}FeGt`7TCQNK&4$#lo z_WA7AS==-D?szYGnQ5_LrKX&tlwsV#mWaKMVxK;K7JL06k9psO3Qm*IO&hjz*$eD^ dnpbyL*u*Pt(aFBO)j*#yc)I$ztaD0e0sy{QbD01D diff --git a/editor/icons/icon_polygon_path_finder.png b/editor/icons/icon_polygon_path_finder.png deleted file mode 100644 index 9d76d872dbd270e576422a50e59df6e37622d6fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 307 zcmV-30nGl1P)!ZGJQs>pJWKldvPp=p}jTDt*klvGuxWm$e2IQ;iR2n&EDNuGc&5qT7m zInYL}@8Inp + + + + diff --git a/editor/icons/icon_popup.png b/editor/icons/icon_popup.png deleted file mode 100644 index 4dda9e50f9d6fc027d3281a5c91f4a8bc6031b61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`bo-U3d z7QJsL?dClcAmZFVKSE(kOJ|0&=qqz!Nrgp?vl=H!nRR4(xJ=Za&o}*haY|$xziPwf zx0^P{NSGP_&$|6_!@YQB2W5G28|EdGxEe0-{aW`)C3s$nR6|ZYWBzOYhO0L=?V10# zn0;|Wr(Df($Jvg){?h73E3DYJJr*_!pE^rG{0{$X#*{Fn?Ya@J?La3nc)I$ztaD0e F0s!yoOpgEn diff --git a/editor/icons/icon_popup.svg b/editor/icons/icon_popup.svg new file mode 100644 index 0000000000..bcd77b21a1 --- /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 82b011e06c04c059723935c1c8f468db42254ca7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_WJY5_^ zEPC%wvKBgIz~geiYKKDxr}`q^&=s|6ljbdKoW-nadPiYV;ZyRQc>&d2U(#zMGZ?1@VpU;>uL3Zz>T`O3oOp + + + + diff --git a/editor/icons/icon_popup_menu.png b/editor/icons/icon_popup_menu.png deleted file mode 100644 index 28d928a98e794c1c285901151570b101f237c812..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_=o-U3d z7QM*{3j_>|3=9l(YWF|0H#?beP{7TJ&ER0_2ML%9F| diff --git a/editor/icons/icon_popup_menu.svg b/editor/icons/icon_popup_menu.svg new file mode 100644 index 0000000000..05e60d7d41 --- /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 90c86c2c051f81bcea87a57ddd994049db751aac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`Do-U3d z7QJsL8uGaY2)Lf_;NA1~#P+WB)!czypWZij#U|LUzuMchV1j|h|FvmGmg#De6%vdq zoL9R$zc;cJcFA7)>9gKs$xEMJv3@M;epZ@sY^mlOCgmSdEDN~aDol{LcyD*Ul&+XE t&jR@y^$*kjHGOBf6z$mf?qv~!nwP6s=)OD)YoIe2JYD@<);T3K0RWl0OTGXA diff --git a/editor/icons/icon_popup_panel.svg b/editor/icons/icon_popup_panel.svg new file mode 100644 index 0000000000..ce4e7c283c --- /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 b10aee650d8f94f49d2db5a32f7a9727bcb49549..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 452 zcmV;#0XzPQP)FKFW;&UFx{LclGM5JUP0 zx@GHMNNCy)O0k@D9I(C4tn4Y_dVx*F7M&OKb9;L z_2{VNz28UVRVsb8s(aFC4F3w4bh{hQ+8>DIqt^Az`xm)p^Y^@H7GCajjC1Y;kvyuO zY?730l9W(A16G~2C)(+lOn@&I-vFDUIC9CoKt;||aXSWx>NbF?o@W9G;S|7#ywl_3+ynUVaK%9Lo+PL9 z7B_#fqtR!-w)Rs+w!HTr_26I^YsH7q2c7{Jb~yYJ#a^sQzrXI_JMd(op*o(0@bZse u86a1$|FWtT-~*~R>3MHwvr26KFLeiF8I5y3qkCll0000 + + + + diff --git a/editor/icons/icon_position_2d.png b/editor/icons/icon_position_2d.png deleted file mode 100644 index da7446e3e2400cad36dfa26e1ae01909433fad2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_Zo-U3d z7QM*{3sfU^{e3-u>Fxdh4lZx&4Dx2X*U-q`!^1P-f}2>+w + + + + diff --git a/editor/icons/icon_position_3d.png b/editor/icons/icon_position_3d.png deleted file mode 100644 index a36bca3260d113618c36cd02694ca22dd3bd556b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@@o-U3d z7QM*{3sip?r=QzzU;OOP;pJ_eLEdcl8XDPqcz7mUa1%@M^gQ^=H0M>Dqr?N&#hMc> a7#Kn + + + + diff --git a/editor/icons/icon_prev_scene.png b/editor/icons/icon_prev_scene.png deleted file mode 100644 index 9d8dda51802963f2aab19a57d7eb31b731852cca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqoCO|{#S9GGLLkg|>2BR0px|^* z7sn8ZskwcITug={F7^99?G{n&J#tE$BQ9}oOSPiEVqD5c7VdcpQw8c21U%CJm~o!i zb@}X`L8_aQP!uK_x1^=;Pd@UB_6A`6ukY% YU6tXldeg=|8R$d?Pgg&ebxsLQ0D1LN_y7O^ diff --git a/editor/icons/icon_prism_mesh.png b/editor/icons/icon_prism_mesh.png deleted file mode 100644 index 49f773765f48ac90f9c22b4def9dece8751363ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 448 zcmV;x0YCnUP);G)O;yx2TB02as4K?KiN9fq`4% zB_alk!AoMW^fQP_2a7@CUeUo|QJc4v+}nE$x7v%A;EezCf6nv&odf?YY1YtdyN$AS z45GySQR%c_8u?7q(dAeUq#qcdY}vm`pcjk1h$#S8RSGaBE!}g49}{SCs}(VOk;kF0 z671^DX8dOa?>+~l05_t#2;DqBFMNv-i7ptECJ0W#M$i}4qbRimAEGPkQIn+RPeC^t zq0|w)heaTTa!I?N`-0Zeu>f3rMlrSMFb!0IY@?e?a_SW%19%`adbu)KPatNe8vTen z|Ln`}?^W{7QH}va5Nt;f^eG&~7>Ssp&T>XIUpu2}-cn~dLn7uNj8)~w`hcFUA&@Lk z1d^Z!xL5Tvx>qjfLD-`RlBMJihkr&&)iyY>afBtH>l45=B5T}w`!ZttwcRvARn1$t q#Yt3WLzk@5lROles5ITrU+WDII*n=BBH6 + + + + diff --git a/editor/icons/icon_procedural_sky.png b/editor/icons/icon_procedural_sky.png deleted file mode 100644 index 484bcde038b31ec117bb8a99d483b542a7cb1848..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 339 zcmV-Z0j&OsP)qR^QZPzYHIO@K0-~G;ke=o@z)f+8)F-?SRVEN0w zN4SjPINFq9Azmr;0a|MAf2z%WP=}Z8&x>^^do!2TO1sYfD4k7?McUqPYdQ+0K zgpn1(vsHPv0Q1nq6dxai5SHBh@Crvge1(1B&;kS=HO)C}RbXj0?HRx~fKvMg_=aj; zvPsPSH#qIPIdF>*z%{VMyNj?e1A}*HKe~^dK^hp?)N}j;@Q4ho02qP5%j+|tCf lesX|B#pzNmeiifg^$E3II({e1)}H_X002ovPDHLkV1j@TiDm!* diff --git a/editor/icons/icon_procedural_sky.svg b/editor/icons/icon_procedural_sky.svg new file mode 100644 index 0000000000..b3bc927409 --- /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 34196ec2ddbdce1068776b68b7e5c0ee7fe0c285..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 468 zcmV;_0W1EAP)PMLy&zA+K6y=gr4^1NR#jE)0ibQ$ zPpbNXncwGm{(YX$XJm5D-2hlK^X2U86%oBt)sIcnyjU!tszgL8BHyAY@(a^Ggb?1; zb^TLS=}7@qjhu70UDsWdW!VqI&=8TC6@N=aueaOn7h_E7oV(racJWDrwr$q{)*><_ zNz!Cl_P8Wi*L4@(`MKBC>ie@Be}T;BYwH zc<(O(fQZbw*AuL@SE^b9fQbC4s%p;w;JrVN!GW3k=ejX-FCxSEJ_4hSd7j@BQ9n6g zj7hDvSM$!sm^90>MPQS^6_y|wmwx{XONW + + + + + + + + + + + diff --git a/editor/icons/icon_progress_2.png b/editor/icons/icon_progress_2.png deleted file mode 100644 index 6f683f2473fc25e2c53b1e02b6519661e4a1d0de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 455 zcmV;&0XY7NP)t&2u3Xq=6(eE=+1H?e5{MhPmg=*O?1Ex0zWILRf6K+w~Yb91iOc!otjwOMH4k zrn;`z05WDi$J@5O18`T@^~}t^6OoN?JS7v6sp>XKlJ>Has&>pQL}XP}z4#}AnI&~y zzuWD0FN>mRx~{8;NJbD52@ySd?@uD~);afezu&(G00Mvz!UDiTRXgWg<-I>$+s|gR z`H-gRJ%G8YelE-M3j=_2?iBzqbE>M@js1d|-vgKr{-;~G|7!&N(Rq*xL?n5h|GWl{ zG0x1a0033}RhH!g13=rh$067;b91X2GdHT*4gL`rWX$vYiHMp}0TIb!jI(KF5y`yw zCn9 + + + + + + + + + + + diff --git a/editor/icons/icon_progress_3.png b/editor/icons/icon_progress_3.png deleted file mode 100644 index 82202d28a699d773743895a4ec311cf57950ef6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 462 zcmV;<0WtoGP)vrbN3_I@)@YYb(!a29tZnx_xw%hI2&bfuE7N`93 zq?keoYXCJf@8c<@3jh}(gt@BzA|jn~d{|6GDk9sWDAMU95gC}-5|OGZ9W_wZB7|@i zW1O{Z`#cOoPegVi5s@XL-%ZmzS!?SM!qsN8DFJ{0z&W=7un>`Y58BC@O1>ftrAwe~9! zeap{lW6T!@fRxfBu$Suj+_Z5Ve*(DA-0%B@sute+Pcg<>o>Y79=TqK$KeyJ_Irq^y z_anym4#-XasU4xBhSjF~^=;v-~< zTUDj5>t3e#(JkaAx8D2rlQ;5z|1k68a=E-eyn{EvUmXD3JdE;;Gynhq07*qoM6N<$ Eg4&(ZR{#J2 diff --git a/editor/icons/icon_progress_3.svg b/editor/icons/icon_progress_3.svg new file mode 100644 index 0000000000..92489f013c --- /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 70198ab26af5e666c57a80fe2050133dc944ed2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 475 zcmV<10VMv3P)VK~y-6y;8A?+dvR~Gtv?r2L~=vxR52=2y^5YQsy7>Ir*LZh1*nV zQXF>z&uWD+pQL}X@0e-$vZ zB!qC=w(Zq?K0kC_R}+zpBq9(3;;34ryL((4Uscu5OFQ}}`~p><%waBh R-c0}i002ovPDHLkV1i}$&y4^8 diff --git a/editor/icons/icon_progress_4.svg b/editor/icons/icon_progress_4.svg new file mode 100644 index 0000000000..5acd6c3936 --- /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 b5f4bdcdec4d0ec7dc3fb596028117d71e3997da..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 454 zcmV;%0XhDOP)Ly8&c-l!-dl7LY&CK|!fSDyBg!``R zuIjoz^nKrubR&tRBl%Pm#ojrWhY;@9>vakM1OV^-48TlP`z*_vqA2#~?$dSMRg7^d zA}N4fRaH9yfGo>y06;`iRn0Hl7pj^MVyNoPCEouH0)KrTtO7|_mgTQ=_y~oshfx#RJ9-8&%j_~S(ZOY9!3Y+w*BCo`#kOJoXd-%*pqxB zd2r7CJgxxz`$*2Y_awgoxT~s40Kj|yacc3%Jx(y}ZcWp?Bl#7;-I?)IRjsGuR|NoI wxm^Ax`AJp30C*U2Reb@lo6qNuQ}LU`AD42>P_vg)wEzGB07*qoM6N<$g0l0~kpKVy diff --git a/editor/icons/icon_progress_5.svg b/editor/icons/icon_progress_5.svg new file mode 100644 index 0000000000..8c4d1abcc3 --- /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 df8f27c60db7e91c4f43ecfd375f0acb93790b48..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmV;?0WSWDP)A`B1fJa$CXn6&#SYTW^dcpyv2P)BT4vwdnR)XTc`iaA_@R#o-= z6xe$|GqVZ+RQ2z2xx5><@MFL{#u#tTRb%FZs`kVA33&CvHvqRW#xJYY>bHpG-uv0K zvWVnGQS6E6o`?=2^5Y-YsF z%NS#JqWx4=t0@^c`U`_i@4WXPM{kURG4s=6v3Q)4-z5G4(bClRO)3zj00000NkvXX Hu0mjfqe0pY diff --git a/editor/icons/icon_progress_6.svg b/editor/icons/icon_progress_6.svg new file mode 100644 index 0000000000..c91a5d7e9e --- /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 892d5b53ba6733ac4b98aa70b57afbc4cf369b55..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 461 zcmV;;0W$uHP)1* z?q|2#eQewIRzzX|PkEj{$)NCKz+8*SmrLYfjbtE0RX@Fj`@ccp)#t$~kn~xW{ka4V zA9*1NnBF$TBBGRa8H=K{aU}KhL2a=6*t{kljAnkK_-uonu + + + + + + + + + + + diff --git a/editor/icons/icon_progress_8.png b/editor/icons/icon_progress_8.png deleted file mode 100644 index c593afb7dddf11aa8e381441059e04ab67f21a1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 463 zcmV;=0WkiFP)T0)}88Yt5uMNhrowC1k4I*?BYb=FI|sX*_p?5az1-ndH55?gId9x7&9y z#(hx~Pb9l(d@{XkHk-F*_J!nX>W?wb0L+@EnVZ=+k~X}_a4<7gRrPFU9|7#nJ5$w@ zh+r;#V=Nj~Oze(>IBP1CH_>vb~Dpswp%0Jo}o zO4D?c=lS8%z}mLGiZNCqk^tB_=XL@BX_{UGfQTfjnq30-G_oEHRlR;K?*AHrQRf-( zGO(g3eqIU=AhLCMC7Qdr~bSLdKvo-I}QqX@3RoX zd|KIipXGUeAo)o0=)M0jQUG2SiKKb&vm{BXuIp0g+*bgo>-zmv;vshIpyzI8MiE(d zU6)>HKT*|k3I@*pLZ9Rzgm5$L#xO7u*)JB0rz!ZK*l(mC(Zz3CMF;=@002ovPDHLk FV1nyr(hvXu diff --git a/editor/icons/icon_progress_8.svg b/editor/icons/icon_progress_8.svg new file mode 100644 index 0000000000..f88fbe308d --- /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 30822dd7a829be084458a4fb1ca9d6c8cc30b7ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_wo-U3d z7QI&|8uB$c2)N$Q*}<^wKxfX8Z{w(>s`WbukeVv@Yxm6&yGkCiCxvX + + + + + + + diff --git a/editor/icons/icon_property_editor.png b/editor/icons/icon_property_editor.png deleted file mode 100644 index 5ee0ab80681ba0e43f8ef8f8ee94b14b8dd142ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg)78W)gor9}+RDePio-U3d7N?V+ z6omgd@4%Rln2?aLW9tJ0KUU-AKItCkPae@)J}u$&fg=uz4bl&Co^u>Gu(LX#cAP2s zjqMhBS3@iLNS?^PU2zAViI(Uu=-&LGSWZtrp_K7x+<~VqF@}u~S)I-uU)shw`>hD8 llHK$Rb^<3Ed#0qNGc2q#zWMKl3m?!844$rjF6*2Ung9(}Q>6d^ diff --git a/editor/icons/icon_proximity_group.png b/editor/icons/icon_proximity_group.png deleted file mode 100644 index 230ca752ec4a00d033554b297daf23c1d7a97c8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^rJY5_^ zEP9ttHWXq~UFn>a;u}=Amw1Qi#H0lnX>0FS^r@?xF`uDXpdn@2_Ud~N z%}O0Z{TAzUls;c@OLfMXd8+TUB9iwkm5^V3^Q-lB)d{X@E_#y7_Or0OJFsc4JO|(Y zgOR0dY5L|it!@X5-%RM7m)P#}h3B@hV1>ThUYY#?pHGXNn*Ty{q7aXNqJ;jINSDQt T1uZQ=_c3_7`njxgN@xNAWRg+2 diff --git a/editor/icons/icon_proximity_group.svg b/editor/icons/icon_proximity_group.svg new file mode 100644 index 0000000000..536060dc7e --- /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 a1b31b026ba311137e473ffc77d4cff46033dac6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@|JY5_^ zEP9ttKFE34fX8+Jlay8`^AiiBm&6`naZ=-I)Vbum(0WOGUOMjdmRn)$-7 + + + + diff --git a/editor/icons/icon_quad_mesh.png b/editor/icons/icon_quad_mesh.png deleted file mode 100644 index 52f19899a308d09854069b2ce841e50d9f3d94c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^DJzX3_ zEP9ttKFfK?L7;U%=WH<+ZjKg(8_ru+y-;M&J=L7RDa2W(FhfX4W_{%6?XUMeK2T%x zY;U6jXTvr1zuA`7ULvm!@Ti>tx-Go&*itIEc<__4g0cZd*`pX@k + + + + diff --git a/editor/icons/icon_quat.png b/editor/icons/icon_quat.png deleted file mode 100644 index 0fcaa35b56d867e5b1ba16f0882f90991e92d04d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 341 zcmV-b0jmCqP)Aq?*K(n z^d#*_+5--1&^f>&A%t)u=?vIxTcOs6q|+oxE*k)V>2%tQqG(^z0N4h$>e3u|bNA;? nr}NnF_vb%^{1^SnEv&6iF@9tEun32W00000NkvXXu0mjfPBfBo diff --git a/editor/icons/icon_quat.svg b/editor/icons/icon_quat.svg new file mode 100644 index 0000000000..076770360c --- /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 6e46df9690d0667e7e74df61b52f8b7e4b26c110..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Wo-U3d z7QM*{5^@PIf1CcFzAygse3`F4Q=D7K>@c{ZH`+KIFf-_ sd1DO^^9e?s8!Q)d9iInZWjzcuOq5wgWc??e7$B3u)78&qol`;+0LR5L=l}o! diff --git a/editor/icons/icon_range.svg b/editor/icons/icon_range.svg new file mode 100644 index 0000000000..e8b62cd723 --- /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 e7421bdb13cc26ce0bf943021d5b88c50e4719ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 515 zcmV+e0{s1nP)Q?)kp+-S3>s zh5w1I=6rUmIiEdDlR1ps$>i>si2-ZFG%}3X3~!z=`r8I-CTD|k{acz&hZ#8QuNXu? zN5w7wRf4!xoiVXDDsuj}nSB(KVxe4bry6u#E?iJg19A8!6fnk2WjQF-R{=I&Rqu(j z2MD`j#HK{9?>45dJpP~nD&8!{x(QuzTI}T~a{J8yL8-pl%TMIQY0-o(#=43(n;0Q# zRhJOEWvVm5T1H415=9d}|59}ZcD{H`2tnd5fCtn7+&g<)w+LIWuXMU-% zxL;4aLZS3%5!eB5>d)J?C+C2lg}KJvL_M)l!GNrI)&bNxbMK|o+jO3 z563VWkHhLyC;A!jwxh7pRP+>Z{6Mn7L%Y3{0di)%Fl-WaWkD_hBW64YM%&HXV}m`3 zzu^7&dX!A&t)eRzFW24=P;nIAm;!hI2)#V8o09zB@C*4NoC)(4s?7iZ002ovPDHLk FV1jYj@iG7a diff --git a/editor/icons/icon_rating_no_star.svg b/editor/icons/icon_rating_no_star.svg new file mode 100644 index 0000000000..f46f90eae9 --- /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 b2a7e01322802172f9246260e03547834ba71352..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 383 zcmV-_0f7FAP)O{^G}Ix=(;Z)7EU&YmDl10^L8{BVYlTXHtc+5~x<(1lD`VLP`$W8 ztDV6t1Ehg?fZ;1pMk+Dklx*3nbPlnlG-l_4<9s0wWHHMk<$#IQbaR_; ziTr7QgdX&Kc!II_3;V*7-fn+2Bp?~};sYWTz + + + + diff --git a/editor/icons/icon_ray_cast.png b/editor/icons/icon_ray_cast.png deleted file mode 100644 index 19cba12d1d661d60ab953e5b0496fba4073eb9ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_=o-U3d z7QJsL*m50m5O9k(n=W9}?k@ORgfmC6V$KP^CkA3-^PErcHWj8HKXyvTbD`NI?e_Qm zjrl^ZK_Z^TQs47V+CNZd>blH8^{w-I1*@tbm=w;Qd)GilOq?O&`r44M zOl#&p+t*VVTv0z)ByD+E==?L=4)E@fepB?!^_ajc! + + + + + diff --git a/editor/icons/icon_ray_cast_2d.png b/editor/icons/icon_ray_cast_2d.png deleted file mode 100644 index 2a5054ab005002b9a9d5f3dafd29d4ee6435fe69..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`Lo-U3d z7QM*{3sfU^{k=VZ>Fxc04=!)(4Dxp4l@MbySj4S!_hYTq;s5_v-Uu~5*Y)kenM1Fe z^p#{Pd3bo-H)Pm<{3h?NxJ#jp@ugbN{`$Ya#Sb1h@j>L|O#Od<5;@L)PWt0{f!kn1 z&2#h5_5UTl85$TE7#bPua;q##Di*EVkaGL_71i7OlKA + + + + diff --git a/editor/icons/icon_ray_shape.png b/editor/icons/icon_ray_shape.png deleted file mode 100644 index a3188d1a3a1fd2d2d99e5876ffc8868160dbafe2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmV-x0hIoUP)B(-JYX{u%nRu>`~1es~rnay4O?}>VO;A)BUn&E*z;72`GB% zYL_Mu3ZkUC7ImkfZqWV(lswG}Q~~3vecAM=Ij6cC0;uu|yhW7#P2NR#2>~{i85kIwPbXa#HaP<1?PObnT(-?rv6l^Xg002ymCjbcS`DYdKf1?a4wlqI~qW>$$)i-GZQw5NgE-L^4002ov JPDHLkV1oI$n + + + + + + + + diff --git a/editor/icons/icon_ray_shape_2d.png b/editor/icons/icon_ray_shape_2d.png deleted file mode 100644 index c91a63570d62f9e8859f8f360bbd4a9e9dca2a73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`hJY5_^ zEPCJeZ{$5>AmDocsD~i;0fsFvFFCmiY9K*-DoqV9IL)wuVQR67niGemLZi#U zssHcq{Vl)G^4iMnezke&lZ-{DCHr@k2mfW<&oROMpw(9`AI*%;ISdA8UKTEjDO + + + + + diff --git a/editor/icons/icon_rayito.png b/editor/icons/icon_rayito.png deleted file mode 100644 index 1afb5975d1621f71bb5e6dc4a05cafbb571e7b81..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmV+{0n`48P)V0VEQ+WB3a;AaD{HSKtIB zD%Hh3=lK}BKZYC!g2z%C%pc`vcCh6vOw-*z&8Ev@D1>Ego7d|=bF+PM3Y`` z^biu-8H`*F`v8hMz0NEy>H(mu + + + + + diff --git a/editor/icons/icon_real.png b/editor/icons/icon_real.png deleted file mode 100644 index 555b61427fa1e6fbd58b22aea1c5e8b823a6d429..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xawj^(N7l!{JxM1({$v}~Po-U3d z8WWQf6od_wiqEC*`PHxXf96B`$8l>u3!|Nppt`rfIk zD=rqaNi2TIW9YWb{>&yG9-iBh5)v%`|NOq~y`}e8am)M-28PR>cfMO(DD5_-cZbt7jpeWWgzI=xKTTXRaTNo@NprhW2G)!OpidY) MUHx3vIVCg!00d`o7ytkO diff --git a/editor/icons/icon_real.svg b/editor/icons/icon_real.svg new file mode 100644 index 0000000000..68f477f727 --- /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 cf3cfe3b2257c745706bb91bbf008512e3656135..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9Db50q$YKTtZeb8+WSBKa0w~B{ z;_2(k{(y;#LD5w7;N@pPp#)DC#}JM4$$!p&n9nF3P@a;mz>@dw|H%VQ-k;C@wJ*$a zF`L8c`N6(ZFTur-L9OF-+Kfi?@Bdvk_Oy!ZPd1*@I)TZF&Db!2qiqA@h7U=O+$;Y7 lFiGV05KFqmP-W%7#-RLEvG7?sOBm2D22WQ%mvv4FO#s6*Jlg;O diff --git a/editor/icons/icon_rect3.png b/editor/icons/icon_rect3.png deleted file mode 100644 index 8eacfff2077c24a4120bdd66d269f07bdf37ef55..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9Db50q$YKTtZeb8+WSBKa0w~B{ z;_2(k{(y;#K~ZbQ$$LOKhD=Wv#}JM4$$!p&n9nF3P@ZyJuaPD1-T#v(n!G=s{cA5- znCW8p$6hL=IOX^M`Hbc*Cl6iY0JrN2@KNn@BB_t#;FnHaH+j-)favac722WQ%mvv4FO#nleMnC`n diff --git a/editor/icons/icon_rectangle_shape_2d.png b/editor/icons/icon_rectangle_shape_2d.png deleted file mode 100644 index 002730b9427d61c56dbe43531b5a178a2cab047a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^3o-U3d z7QM*{5}z6-Ha0dY7T^AV_`jq?j>naXlwIPBb%mLMVCAfdUpFXlpZk!MqT*J3Y}^0; zi8*RPxo+%>*%lmSDta;L36mRJoAQz@75DQBtPGZ2f+m`4c7F$&&*16m=d#Wzp$Pz6 C1~#++ diff --git a/editor/icons/icon_rectangle_shape_2d.svg b/editor/icons/icon_rectangle_shape_2d.svg new file mode 100644 index 0000000000..d5cf89f5dc --- /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 3d08ee4f76dd42099f6e852d6b388973563db2b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^mo-U3d z7QM*{3j_>|3=9l(YWF|0XJ%%0-jcwf+|$dgu)0%>CoyHw71k?^-uKu4^gr=($CcnW kt%1yJ&5R<=i4(*b^g>hx&t9{>3^a|w)78&qol`;+0E93rp8x;= diff --git a/editor/icons/icon_reference_rect.svg b/editor/icons/icon_reference_rect.svg new file mode 100644 index 0000000000..6756d4bb2f --- /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 a6646114fb7e8305266ac27b6f5b56e384be55b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 370 zcmV-&0ge8NP)pfiy=T5Wm49 z2!T`h5eX!JaN{D4^#ETRohOAQz_j_5i$&_XLLZ!|Ldnd<@F+MU1Hw061&k zAd(Xp3a|n>R$7mmE=ubW$Z-oKlDjy51prm&obNd73d1xle7=$-E=<#+0rG1?pJ$k+ z#X+e(AOJ;`WqCVYU%_wU{{i+isAjX + + + + diff --git a/editor/icons/icon_region_edit.png b/editor/icons/icon_region_edit.png deleted file mode 100644 index 5f133072d4e9b795aef6270faedd7015be822a45..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^mo-U3d z7QM*{3j_>|3=9lxDn2MkL + + + + + + + + + + + + diff --git a/editor/icons/icon_reload.png b/editor/icons/icon_reload.png deleted file mode 100644 index 9303fabb9c53383270ee82fb19dc7394ff65b59e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 420 zcmV;V0bBlwP)?Aa-y$(BryvQ9<4O2fDZjQtU2HI*31` zqf-Y*XF(U;oLoEDf@EmQ)m0HZ8iyn<*K(eotG?668=g1$zI^c45PV-86YU%T!2$x-xyOj#?-y{d%zR0 zVXeJZO3eX;#egsjkEXDcax;$Om%{PYXf(R_-uHkFDdiz>{^bQih<09{mS6yqBzbkt zodEYNBuRfb93BHS8jXGt zR7x#KDR->39q;`z(3?yqU8vZ^vhw*%RlP{R=pA@)&Yfggwl#(Shdu#Q2Zs^UI-8yV O0000aiF4PPZ!4!jq__K9ppV=z`@Krx#Isy8?X3@tB#07P0cSdOJLeQ ziDlA+mgP#F5eIH}=?gHVT=lx0^>oLBtar>Md44wKCu)@{IntKL?0uTj?Dyfmg&VuU o%=1=y3%G0V7y0$wdRoJn^W5;8{*C8{fYvd1y85}Sb4q9e0N>?RP5=M^ diff --git a/editor/icons/icon_reload_small.png b/editor/icons/icon_reload_small.png deleted file mode 100644 index 1397ac6aa5eba9fc48ff41dc63851a05cededfe1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 409 zcmV;K0cQS*P)o?b9VrCmJ|({`9MlJ6Zxhblma-i)>f^x)eyoVfL8!b z=iIGQsuIn?D2lpsh?#e#lyAAFo5^JI7(y5VXfpHZqLGL?nY}1L0DxMp_U^sE1OOpK zN91Ok0AQ_sSh63SbN89u5?brN*4hJD0f0D;KeX2UpFknR;+P_i<1+xG+ + + + + + diff --git a/editor/icons/icon_remote.png b/editor/icons/icon_remote.png deleted file mode 100644 index 7eb7608b13cd1f26f52646ff35e7e8dffd622c19..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 394 zcmV;50d@X~P) zeNLd@pF1dmSlDK@N^ob=$tH}=KG?jxC?bB%?#z7in`H<1qo|xv)!KMG?y71Bz&d~o zz%vo`^E|&KqR)kZ(P-2%##{qvFBteVnM`(@&E|WN$dbuRNwWj6A414O2)U~60eA(_ zHpX13YHbcJB1g=u%sdd0)pDJgSD1Og%qk*>RWIno>#?==Lqv9%`Hh*Kh-^0+4G-WX zdJpCR@xu^8xR0iD04)G(s(Jwc)9LgsdN-;7KZ=Ovww3~30Kgct70unGu?qlMmTjiq z82}OW<9X(st6OVtikh|d);U)PaGH8&q^dP$e)Qh=id@`^7P0rf$IK6vYXpGdaJZbt oWk8kZTU7zd`qdWx1@LEm0h9cw8;T8sJ^%m!07*qoM6N<$f`N~&-2eap diff --git a/editor/icons/icon_remote.svg b/editor/icons/icon_remote.svg new file mode 100644 index 0000000000..2066464a82 --- /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 9a6c30bcc8f80f4c1d96dff97dab1820c4d877f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 506 zcmV6wgx7&Wf?C;-Tbo7`^Pk#=L#wMys zoSW2@l?&|ceXjwBP4HfW_d3iosDlo0;t>B=>)h#s!k{0wF$7pUs|6T%0(1t^O^kDY w4G`yA1}-A + + + + + + + diff --git a/editor/icons/icon_remote_transform_2d.png b/editor/icons/icon_remote_transform_2d.png deleted file mode 100644 index 7266f2a71d8c53dc8a4cf7833df94bfcf45972ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 542 zcmV+(0^$9MP)=N(;v`8l=;6IQ=M5BrB1{%g;O-JMBZ>s_7hJJ&B_akP%-l(4@3EOB%YJB)(_HSkFVFkl zb1&?&q`UF5ZbmZ7ZQu-WG;MzaKHxA{I`4hy3kU*re?;+96}uxLY2sOgDS_`Qdbw1{ zt#vuC0;_&Ke2&T@!c^15v%q}`0(G0l7@&pdsZu_-<}aI3tUf_GmtOR}MIM*)UZe6h zJYh5P5pae*&l7-GweV6#O?KA0Pz^3f6H?K|(tphB)+q|LMPD5a%Tigq1 z#TOFYo4ZyRTK8+wClp(p%$|O+6dreFE9_%9xcr(){F+JrrRkkPJ^qF2fpqJ%bEWI= zQo%dYsqg)9sw*9IMbI6)owI=eD?9`?02C~WZM$z + + + + + + + diff --git a/editor/icons/icon_remove.png b/editor/icons/icon_remove.png deleted file mode 100644 index b6bf05a16defadc33e7e273015ecd9acd5a842cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_+o-U3d z7QJsLIr23aaIhTw!6W=Lc0cbc>s|A*Rt2p!yLTs8@$Oj%g)EV3-_YK;co!@41BN>e zy0j!G#DD%6oV#M_PH(T@7P?Qj7BPkPmX}tU3;$ufDLdmPOTvmTXO)cJaWJr?#bupg dIAnZ|d##q3NldSKQx4E#22WQ%mvv4FO#s*YLc0I} diff --git a/editor/icons/icon_remove.svg b/editor/icons/icon_remove.svg new file mode 100644 index 0000000000..3b03aa9305 --- /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 0d3b887e7fb1bd0fa0a3cb584c3eb44f519ef0a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 385 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg)W=<9zWB%NWML<&+JzX3_Brei2beRTbhkx&-*M}WQ`uKik?D@Om-S^h6`)nNQdwlW5f6sHa9S<>GE5hYh zxmRzYy0%Dknb8%$6>J}*4z$m5+nDFVdQ&MBb@07tK$KmY&$ diff --git a/editor/icons/icon_remove_small.png b/editor/icons/icon_remove_small.png deleted file mode 100644 index e0903689cf16b79f0d11e962c7f64c303ad31bf2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqoCO|{#S9GG!XV7ZFl&wkP>{XE z)7O>#J{v2qvhdQkOH_bDvY8S|xv6<2KrRD=b5UwyNotBhd1gt5g1e`0K#E=} zJ5YSSr;B5V#AVkr`@NhBW!gTT|0u(yB*4D>-=7vWR`=Z;`U@5wT%D2so@r0RJEs_F z6^HRA%9@=n7 z>imw6`-QZ1v|=8J`hGEV=MUZ!V)?UCzsKNM@ISv^oi{}fg|5$3?yEn<&$i>Z@~$0+ m7B&jo6}GEd-AI}owCeng>l*K;JayAto + + + + diff --git a/editor/icons/icon_reparent.png b/editor/icons/icon_reparent.png deleted file mode 100644 index 135ccee4adc49e8894b318c1eca2535ef34b6698..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 390 zcmV;10eSw3P)1as_Ot})?EB#`We_6)31cO(xGhLWUyu64WJ8ig6#hcl7mxgY@|l0s;R2=Y8Up9 z3$1qT^RhMeLaSS7^(U`o2Rf6mD{F0F+vi_Q+-B*X155oLjKql)Kaz0vPYs4L$b(VH z066CgUg(Ycan7x(YOD9){2{e~g>fc}NE8G?-g_`L?&==@j61*;&=HYR5Co5dik))> kGpmZoWE{ss|H#OE1LxI%s3?!++yDRo07*qoM6N<$f;6D0M*si- diff --git a/editor/icons/icon_reparent.svg b/editor/icons/icon_reparent.svg new file mode 100644 index 0000000000..6f4d2908e7 --- /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 662a58dc93531c145750f78508db7c054c4bcfd1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 435 zcmV;k0ZjghP)auCGXH}E;6v(Dl(h?@??r-Av7HY&vt*#`8fB$zm+k@0q`~t&suv11g`5&thM9ydi}T$ptV*2${6E| zNW5CD-T`{O-my~ZLqrbKG=15TwSYSsjkbVbxm1KD-a`w@w5NX{Ds^@$;bbCMge_DS*-073|7B>NFN%d+e;&+|Ky^9%sY z>{(KoGy}l8q$2=d&bb|uV@WfTeMzO6Jpn)#!NVmp8c2FHvlo(^Btudg0>D~p2D4gf zV^HK?2w~8L$x@(mZkyx*fcF-0FAnk8Ik%hE8VaJsdr1%R8OxX-r_boU|LtigNQl0R zqL|eCq9`U^9#|kSvr&}W8IpQtHtHgHi-6L5KW!7$jo$ldeJx3^z@m{FhFP{wjr2cO l?z(I8nLzSt*=JfgegMjo(ktpM-*^B3002ovPDHLkV1kTsra1rr diff --git a/editor/icons/icon_resource_preloader.svg b/editor/icons/icon_resource_preloader.svg new file mode 100644 index 0000000000..82f24d7400 --- /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 1aea6e8fa7cd7b020c393999e759229bf4a41785..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@&JzX3_ zEPA(2G8Aeu5ODo(q`5(OJzJP1M_C&m-=@$9Sx2PT@Md%{?`YnqHTmTIzrQyhaO7aH z__FEi2{F;L>3sJbH{FRlCC!jBD^F$*^9#O7vyLyUwG8M?Zn5fZTp6JM@kH7_mV29* z%{(HxWQEZW&X*kRvN}c)kJn4i*vnU4v)_Y1-g$-Zlf2LO?Y|`lw#?Bzbu8n}tC%W$<+Mb6Mw<&;$S`Az*X> diff --git a/editor/icons/icon_rich_text_label.svg b/editor/icons/icon_rich_text_label.svg new file mode 100644 index 0000000000..c0b4039e3a --- /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 f7bc02e1286f477713990d0ac1ee74d11bfc7385..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 468 zcmV;_0W1EAP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igJ= z1Uen8vg{8400C4)N|ypSqNEQBa%qX-tF7B;pvcibi!i}TjY-ASUeEG*0afBp_5KAD0McPGzzr=SO2R*6ObS1ReH-$(_O{2eE&$9mERa zHPKglyt7c^^`*CRNi&`FdLzQ*%$mtu*;*leQvPx9muqb-w>uC-nLd$dSn(Q7mk;lRu2kfn(d|-RHVEj*WGyH{u1}r^itWM1-N62R>$}ObGxD-JscOvb%qbUwWhjQ39gSri9>H z2%F_ALyid8j*ahGyBf!~X^G(3fW3p$HZp+nx3QZI43pag{u^IBR@i$opw+Jc0000< KMNUMnLSTZlHNJQN diff --git a/editor/icons/icon_rigid_body.png b/editor/icons/icon_rigid_body.png deleted file mode 100644 index 4072308f712355c7a77fb33f07b2dee9fbc065b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 531 zcmV+u0_^>XP)5ilBubjg3Y86$Zp2KVV_^CSn5i z)>alat_z#H(SSt|A(BAyBLdnbN)QCaBv`49Z0?<7v$?yji6Xw;%$#%PnU{ItKTG2q z?sO(&t+oK%w0#ArNqPsY1^cmDt%Fg07+n;3K2z3eyN3IQ>qw`N>W0@y=Syk3$n%+F z35q{80XV0dr<|r)0r&O^es{WoIdi$80YI*_GI+N zez$uggs_>|*VJkq1b|qpEhvOnvR6j5%j0H%dX{ZTT8kmv9rnPUjxj#9v<2(~dlbd` zxVa*;pJ7i|0hTVM_4+pO05}VrBS{{e6p)6nW4H>C4hYin@bC+;H>xZ0JRTQN#t8P0 zia^r#;Oq_X3Hzhr!$|}K&+f1XusI-EOq + + + + + 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 c296b88636fc86818ecaee707bb68cda8cb9aada..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 501 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85sBugD~Uq{1qucLG}_)Usv|qY&@)bjNAp^S%E^5C9V-A&iT2y zsd*&~&PAz-C8;S2<(VZJ3hti10pX2&;y|kcJY5_^EKaYTw9)TSfJoc^%Rv{FIAs+! zl_fqBy>Ul^Gx2J?1MSSBVNy0nmcW3#HFuG!MPd|Q@iT~(`^Ry}$0 z`~T;EzHhak_GJ3!)$UI%jMs$qYka8Ow||NjQau(e%v1-}4 z-F~&-qNnG+wjHgoU^=jk{l{w7so@n>A3K=j&)*j~CdUxA+FhdhX}EEK`0#PIiI$W>{ve_4%JUoi@>*4303FJz9oopd?3 z>nE$9tIK`%DNE(rH-nk(Y(+^alYn7FrEpK_gu8O^{K{p}AfFXUk z_2)nDJKik&|IMX1JeSdyox5P8lAxuX2E&G!)h6#{8@|6=%5-yGrf0pj(y{eSty{eB pGG^KTD;7K%buur=lw4@v3m@1U|YL1U3UCU*99yI{>=8D@Bd)~M# zYu6go_|oZY`gW`1RH4*YBhHnh4xT&O^CJKx=AzIf)^tnrgZ0e-Co`!xSks%ua5DqP z{@{=Y&x^1K;d_D}wo5*Qn1|Tk5~B8ou3zs&GGe>~yfYGRwF4xbsub#YO?W27Lv60e@;YfsIUDZc-FpO32hk2eYZ&gW1#` z5&sHsO%f7%-T+jqm0@r-QL?yJl*^_kL8BYF1Fo*9`3h(Ix4uQm`I_UCsY0o*0m-B; z3yrllD$nO?!F>?)uu=Cja(*uy>XrOBi@}Y xZu|2|;xW+vy7vbw%(@)M&m2#GY?sYH={M63$4!t#eK`OC002ovPDHLkV1lzQ`^x|T diff --git a/editor/icons/icon_rigid_body_2d.svg b/editor/icons/icon_rigid_body_2d.svg new file mode 100644 index 0000000000..c28e009e85 --- /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 840db145fdaf226ad709016142fa1b06df701d39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 375 zcmV--0f_#IP)yH^~8-l}LWag-uCgQVR7g=f9bGygv`vve*VHO+7c8osql(AW1{7 z-+yEjxwQha*0>-zp>!kipwT#W(r_owA82j4B2aU@7O>yqGO2I^6G^vTo + + + + diff --git a/editor/icons/icon_room_bounds.png b/editor/icons/icon_room_bounds.png deleted file mode 100644 index 15b198e821a17991bc92775f0c6e33aeb48428cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmV-x0hIoUP) + + + + diff --git a/editor/icons/icon_room_instance.png b/editor/icons/icon_room_instance.png deleted file mode 100644 index f0c46e689c7ba608247e76598d590c1c85a748f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 392 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^OD- z>|{8-w69JaD8gCb5n0T@z%2~Ij105pNB{-dOFVsD*>7=iGs|#KR5myYG=;;{#WBR< zbn>6`ALcg-9XR5kxZnnZSV?0>;o<+UlrHg@-?vFU;C4Os?xBv$tSu(@Yd%j|=z06O zeHiniqrCr(4GavHd^I&VW3zE?hVzUGx$k04W;eR~wlxAlhO@-tBfS4scYA=88HnW0 zY!>u*DK_s1bK%R=pL=-pB@O`DTW72gx*n`*C-u7~ z=s`}3{#mW8hRv6MNqtaPNe@kC17e=S|1BABGzDk>|9;P|`|5p(xCnu;FY$ejy$>&5 zjh0yFz;@zXTVv}&*Z-2=O?}#L@O6f=u^sy_FpIJC-}wUv4sawZuTD%zD9SmJpkl6U eX|}|eiD7bMRo>mxp1r_eV(@hJb6Mw<&;$U9?U$MW diff --git a/editor/icons/icon_rotate_0.png b/editor/icons/icon_rotate_0.png deleted file mode 100644 index 75bd6678458e0fe378242955b8f8edf6990e291c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 436 zcmV;l0ZaagP)PYXooLguZ5K{wwl;z zLCph5j0q8+LVW?i~S0)8l^_M<4eaYSxGd<~S9QXLW5a(5!KEh2Y7Swz~# zn8ue3Y}x}WK8~X30w75e0nl12dp-fqfcNQi8rN#I*BpSYxvZ4xIPp)=TAu@5pb`YZ zfnUN7z-%_V$`X6H^fk_44WLviJ^iMhOeT+Z8~X;bL}UQ+`Mm3#_y*4aqtR%?f2_4u z?gJfyAlUFV&Y)}8qa~6!0DI4WIiOjwpBkONs?3M6FLmTunFEI8e)S5|o=FR+WF#>J_MP~f0YJasU$H|{2i7g!6OnEhhRtfV e`j%DVpYRDEFo!SL{j@s(0000 + + + + + diff --git a/editor/icons/icon_rotate_180.png b/editor/icons/icon_rotate_180.png deleted file mode 100644 index dd9333207ecd94fc6ec429d8c3cc119de8cf28c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 376 zcmV-;0f+vHP)HK~y-6rIN8q!%!54zgto=gmlv(OA01Ffe+x`y44rxu7i{K1}-{e z?gLmvDAv_C@CDiwa#wXx$&}FJ;EmkYMpOKk13&!VIX@iur_{QUrs=NZIHy1lh>bl1 z9?G&zq9}T<1!%30MPvl{H48tKQo}F|Z!4p<7QO*|rPM@34mSXN5gBW(2P+qtvr`j3 z55w>hAj>kTx#YbliYSibmllBO>?@@vRrn8e+U@pl3xs0}&Y; zZwg!ikDHbQgKoEbw*s&rBcM~a85maK9{_;)e7<9zqzCL9dnO`N*L9O12wodhY_3l; WCT)Equ + + + + + + + + diff --git a/editor/icons/icon_rotate_270.png b/editor/icons/icon_rotate_270.png deleted file mode 100644 index 551fd3afb9a75f8cdeb091c6aebf9df5cd58836b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 357 zcmV-r0h<1aP)15t*p!`8R-2RUe9?7=D_-jh(shjWOmHAkTAc znPgd(rH!KKwFBUG4n<^AhkwwK@B3HH6$Sw7_4;m)aIFD==MJX;BJz^w`Mv<#oS<#j zUD76C{tLjo378&SullqBR8^G#s{``yK@cPxfVFlZA~E~jg#vN6+kM*r0E{tX5xE4G zyPAPvuh)C5jW3@mP19rdNczB;vuCP04T2!4oBvH8IbmM|n!E + + + + + + + + + diff --git a/editor/icons/icon_rotate_90.png b/editor/icons/icon_rotate_90.png deleted file mode 100644 index 55a084cc4ed8bad44ca3698cfe3df6e93ccf8591..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 412 zcmV;N0b~A&P)VgIq8h!_ENdc>WIkR7Y1b!X&Ynea|vwh z$cj%~*F6W&T1!Tf_wjh_2SM + + + + + + + diff --git a/editor/icons/icon_run.png b/editor/icons/icon_run.png deleted file mode 100644 index 133d383d9eaacbc4694cbfdd9c062378cb993d6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 800 zcmV+*1K<3KP)Px#24YJ`L;#lnr2xh^(YSE{000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igM} z4>b!bf2%J500N*%L_t(2&rOm`OcPNQhW|UgGo6YBN{f~$0%f5A10qC&1Vs`aJ}?T2 z8v?j6x;Bcd5(x^(jzp2TRT2{v+2MkR1OXFYiAgsQq7{U;QL&{=p|p4Ibz{+QcaoF* z|2g@PYSjP$3QaeeWt)t@I2`%9!;!BiXH~JuX4z%}fV5N>c5!7N?#j(883h0;Syvto z&4~w3W(Ae3D*$jHr+8G;3c8Z}RH5mnOsDHk&H2lB(rgZl3=MYs*Ou6JREJ@3Fdk!B zT0wW+rIyA>XuWZ63i$mqc$X4FBueF?bejX^RrP!;y6IV6{t7}QAxS`OL#x}V<$6lX ztNEw-Nr_TgL`Aebf!=obzxx0H&g?u~y>Snbjj&)WPN<^d@%@`o3IM|3;D!Mr0i1J)f6s;x0tV+0 zf`c0zoEZQBlB~*jjMX-@y6Z2tKv69i=)DC9fotu3i0Ye|el?7l@#j8;sx;0va!dfg zMZ7;tJCs>mR(Wc_D;GPlZIo8jpyc>z#I~XUA-hV*3F7@Qi+x&-h{a-fGyan3kuZ*)sNt$*Z&mo$`VqFnN2w6t21|H1LhFqm z-%d)?W5YdxfUmjiPx#24YJ`L;!XGO8`p}5L77u000SaNLh0L01m?d01m?e$8V@)00007bV*G`2ipP% z02mC|m-*)a000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0004xNkl zti)3gAZG3%=gz3As(Qe35+MYts$#ufv)ODYih}8MiZKQt0cxz(@5QH(5CS5?FbtV2mN9M2zvGiCK)1l+v4mQIO|3*4m3LWc&S|uImsHVvH!IXqtxIZb#qu zh{%Vp17xd*2cEZE5-_>G#$R2%S)Q)z*lxFY@A2OMT0nU5A z-`?WAXR%mNmgTt82Y>@(ih_9JLrjTI1PK9Y8h$@MGQYWD7zXC^Ig`l*=iC8MSbLDA zbaW}bLL>x+5Ew-Gb$?Gjo$_tD?8sJ0000o-U3d z7QI_18S*hGa4txi46`}vlE z<@q<@>qMF^BE!$O2>^P%2jCT$F&KQs@FB8^VT9;Nx4)e>vZAoo1!*5?qfj<4(hl)| f18KhRZ~%S)pD{>1xE}h&00000NkvXXu0mjff((rP diff --git a/editor/icons/icon_sample_library.svg b/editor/icons/icon_sample_library.svg new file mode 100644 index 0000000000..b5ec2bb43c --- /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 4056cceeffa9139e830d6aff7c2b99b36a7bca9f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`hJzX3_ zEPBsQ+Q`eKDB>XR_L#v$&5Xx!VQaQUlUZN#Qx2;(UF#2;Ixl^7{)L*Aw;!)G{HSWu z^1njyfPSZ;+onhTtl65Ld}dvmM8Z8k zEk&hQbBvo=lYa^~7N6TQeN~*A=#x4AtE%$ff45Cof1vt5)3*c3KA!CokC#2uu2)%F eGDBs>LPik@iN6GJg`-}5rbXZ~?v?MB+ zBP4)e!ryHr$NOLM{Fe+mS$0rd@S6==+kf{9M>n!6gfU<8m8k#!>$`bVOP<`>qR6trQ9xGbhs&pfnl+S@q^``FMI$xp25@A&t;ucLK6Vt24^z> diff --git a/editor/icons/icon_save.png b/editor/icons/icon_save.png deleted file mode 100644 index 8695b7839d426e81835e40282dd6f8ce9f6b9536..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@|JzX3_ zEPB^Yy2yE0L7?sZr21~H9eyw6wn>+?_62Nme`&#WOZHQNN^Pf#iQ=p!@*PDo_wTNB z`G26g{^Pyl5AQ7BI^nwYbGgeArf>X}tfq=2Kl>dri6zVXc(CVG@3_e_LMk7m4UT=t zJ9z2ra|@e8vmS(A-^#S0^Tpmsh6l^G{?k~xs3YckNx+deqC!fSj!5L*-o~@wB&X8Z z`p1zjOdDdFXEI;3Xp&WNH7I_u>)fp!vD7&&#U+PEYc=y(QCS3j3^P6 + + + + + + diff --git a/editor/icons/icon_scene.png b/editor/icons/icon_scene.png deleted file mode 100644 index 9629bb91c259dd6fc0688fb98fef6ddb459a1448..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 476 zcmV<20VDp2P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igJ= z1UmttsDS|h00CS{L_t(I%cYXPN&`U<#=n_Oc8NiJ1Cbo*qk^byiXf!2vCu|BS{o6I z6zMGV4FVD@ENo(8={<)_O@0-I+Fo~f`Kt8)$3>$i(nB5nFNF&5DBm#2xe@z zu0c5|XPP1nx8O)+d&VS^j#9Ykc1J|zLLnMt>Thy)c>w@$`T7X}@O>XAdz(@I_~J29 z&v8fV-wr&_OT_liS^xl}^>~1%-RSSSIurz;=FxUgWAyk#@?0J3zzv}qx$;32H##{d znm?VhtHl+(Z@f%2{l%v>v>!SFVCFTZ*HcqLzMj7+x&yH!CV~v!29!9YY3&C=#C!Hu SE0+=g0000QL70(Y)*K0-AbW|YuPgg4CP5Yp#;(>&hk&MJc)B=-Se#xu z$=1UuP~`ak=X=aMUMt7T^W{!7nJOZ(mF=lOW01F>r?<1N;8{UEQ5TULLMAQFF6Ve9 zbNP4!ABc#wwk-I0<~jS_w&mgSVoTz7+$nyy^LaVn|7s711(TPWSuy(l7uTKT7kGAA z6g#7@xNw~QJ0Z>z>$%%llqSsZt*D|PaG~Vk=d(>S7#TLMmSDS6tFVd7P+LLG zpip$t1G||nCUccOW$SH}h-rFN;1DP(V0h}N(m5q{33*92!R8rHPIfV+ahKEzv;Q;= zch|aQV&T8{W)pXn{-NpOzMj&>pM#jUYFb#ZFmTx0GBE7Z7L{oaOR*^_$*4Zx>t{H9 z^0t{LqsrS7OLuJLWYBo}xt`g}axtH=PQ=cHsQUeTlRwwXs(dz%ZV%O-zVFkAp59Zx zH$`sf-eGU6Y!f`W}oPT#-TQePtA*i2lVzgAG~=^&{byo zK?$}Er{5n~%_wVN7{Fn$SK;Ns1OH?mw(f2J_V_E`GVyuIRgCk?H&g+YPkcD*r0S)^ z3^&!*8dptWT?91w&ifN4RTUc^7%@akBye-@x!55ib|dHbOQxK}Mr}0>KMxjO2Y!c= ee1o7_a~XfQ*-aPup0W_=Vg^rFKbLh*2~7Zuf@%-| diff --git a/editor/icons/icon_script.png b/editor/icons/icon_script.png deleted file mode 100644 index 5aa673fcd649ecf2325f835888f4db77a9827308..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_;JzX3_ zEP9Vlv=wSr5OCY?x^j!}))cpDsq=#84$gdJJL9CQP2)i=W6hko6GJq86zWAPWp#dk zjA-zAQFz$0oZ*7E=FFLa*Gt!&XWrm@d5+7Hik#cuR!uo%;=8h2RPZZ9z_G5-P)&x2 zX{syboNh2XoOz&~#3tRAcwdwi~%Kh4i<{p+ma-uXKi<*sR!WWJfO5a + + + + + + diff --git a/editor/icons/icon_script_control.png b/editor/icons/icon_script_control.png deleted file mode 100644 index cd1cc9b9af0e5eaf32efe3dc7b1e3a57d5d4bcc0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 452 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5Z+9gjnkDuAZAc)B=-Se)*i zyw?A4fXGq*?M(}He>d++*=4$d^9s+e)(KjZIE6SCHi;N4a0|HN+p}|KT9%`)iKEYk z{*)w7Z+AA{v#uX6UEG)V{bqI1y}kRZRhS$@)K&{Il*srCnN55k>9hP_lEdK(>dh}z zUTJsE@t=MDLJDi$m$pM%MP=%5oxY#p_X%6tmRk6HT5fXk(z){Y} za!IB4n{(AQ6CYpgX|h=IF>6}4N%O|X6_?(+3N!2|o>HUK;au}a$5{EvJ;&o8mweuw z%u={RO|G_g+x{c_3)>d@|2^6;Z`t{sCR|6u7fTz>&=V2PnCmplt@o;+s`s9IdlzT~ rs9tPzJt>qGd2pGD*CLC2(Nu>0MlMz|wI=4EIAZX0^>bP0l+XkK6HB-8 diff --git a/editor/icons/icon_script_create.png b/editor/icons/icon_script_create.png deleted file mode 100644 index 86c19f748b46f889b5502b5dd1fabc674aa94590..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^vJzX3_ zEPA&FZsct?5ZGg0$eOEVJ?Ukpk^6)jO_~~#Np#0ck z8iRpvu)(ga-&h#-vCMwp{a`_Ebo#l^cV51I+@y1QpW2WA!f6^y!{YZ@I_BnY+h)Go zYr)oSb)GkFMl$T-j^1Wx{rg!L*R8cK#(j^KyA~NguPI%*sA<|crIY1 ja6IhTy^j0aX70GhQ|-7JO$y|J9%S%z^>bP0l+XkK&N*^I diff --git a/editor/icons/icon_script_create.svg b/editor/icons/icon_script_create.svg new file mode 100644 index 0000000000..231a675430 --- /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 3532c2c3793598a724588a22653e0348cebca5a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1SGw4HSYi^#^NA%Cx&(BWL^R}oCO|{#S9GG z!XV7ZFl&wkP>{XE)7O>#4vVY^8^5yPyR$%{JWm(L5RU7)eTIBZ4k9l14=w*DQFiCN z@y(kB{Qe29J|-7aHXl&h?X0NiHsh1;y_7qab8d7qE?vE->3Z_g>!6dJn|#o z=5y}m5Qz(?^ShcE10A2}zxXnVWh>+1e#4iOKP?gAm6-iFYR6Lz<2U~eCV&4mWjfGi N22WQ%mvv4FO#oLSP;USL diff --git a/editor/icons/icon_script_list.png b/editor/icons/icon_script_list.png deleted file mode 100644 index cdea1e161eed22d92d90c01067580155547a9bae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~n}n!=%#+`(Yk@+tnIRD+&iT2ysd*(pE(3#eQEFmI zYKlU6W=V#EyQgnJie4%^P~6hf#WBRMLea8|1`@o@4+Ysosu>yf#>q+AhB*OU!oc9^>gTe~DWM4flUqC% diff --git a/editor/icons/icon_script_node.png b/editor/icons/icon_script_node.png deleted file mode 100644 index fcf205b2e9efe7dc4cf35ba1f9736dc244f435c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 455 zcmV;&0XY7NP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igJ= z1UN9;ThjOd00BoyL_t(I%Z-!4N&-<7hW|U6ql>0`o$&!K1TK1j*6kE#Bwe&D?7lx`D5cSHxDF^SIlLbr1c(<~b_W3eve=X<%cm zI=?^PlEqEwJnlAW+HWP_LEw#0Eay?LG*GG)u$|q(R%REM4^2trf3a1JHqViLb_AB$ zm*SLeAf4TVmNrm1JP0F=TH>_dl8an;BMQDfT6m*Kq#=w>+hx__1pr9rWgrmDJ^c70 zG(zMZIBl1mAD+VGUqK~y-6rIJ5O!%!5(fA95W>YvRiNl7+`xH^kP94z<|+`8FC6hxe) z4sLd`qhCP+eg_v3GdM^KC0VVcbdZF^C6=_NTJ3>5ynA@(o^!ddBE)>db=^Inr)iq5 z>pGQ6rRbjzv@FZImj&dFZQE~#VGsntqQQm`q6eUg$a1-C07Ox=(0ZDtCP0ycKcUFM z3_Q=9c{iKQnZ5le;5g2&4wj8Dl2Yyium2Gk2_bgs_4-|@RN9&+i|!!JS$|KGWY>1x zC&KWGIPL(T)ETwfiD + + + + + + + diff --git a/editor/icons/icon_scroll_bar.png b/editor/icons/icon_scroll_bar.png deleted file mode 100644 index e4576c4ae3a8f10e95074d665b9e896197b1bf89..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^lo-U3d z7QI&|7z#Bx2(VPI|HH8CP`8g^(~o;B{2M$>o;eDf=9duOu*Nvyzopr0Nh7U AkpKVy diff --git a/editor/icons/icon_scroll_bar.svg b/editor/icons/icon_scroll_bar.svg new file mode 100644 index 0000000000..f956615ff1 --- /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 1908fd8aee138ea714f91c699184d537ba30ce81..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 90 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v_c)PZ!4! jjfu$#60D0GtQZ)Wd>9!0ru6s%r5HS2{an^LB{Ts5N|Y4` diff --git a/editor/icons/icon_scroll_container.png b/editor/icons/icon_scroll_container.png deleted file mode 100644 index 4e42d84ab163ff4d050065ffb082905c401627a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmV-00nh%4P)?GTPZrW+xSd+Hq(H&TmIsX?{sMM9kS(Cb$HwtK)_$rLAz(u6d z6F}3X@BAKc0%r9O8>%DJOH|doh71nNImut}ck2R`7g9?E|G};R0000 + + + + + + + + diff --git a/editor/icons/icon_scroll_grabber.png b/editor/icons/icon_scroll_grabber.png deleted file mode 100644 index 4be7f4e6ccce96d3b1c5271a909515aa6440a8b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v_bgPZ!4! zjfq#!Y~*cl5MVxNDU{KmwBUc#J}xc=>q-0!b0=`rtEz9i*5kjY`%KJ6<%>#>cDxTR s+?06i(oy!QA3Rk}=GeY{|Bxfbd=?j*#o1j+Kr2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR43I)+J zpCIZd*s8JDN-c!sahpoe)+%{-YvD_X$t4CIIPUg#W_A|%Cuq2^*6tF~K7exe_29j4 z6bgmwUky5)&Y7xKC-6>=3m zV6Cl+h!>IDi3tF#0RRzQ1~?blT@LgH2HyoUjS}KGj + + + + + diff --git a/editor/icons/icon_segment_shape_2d.png b/editor/icons/icon_segment_shape_2d.png deleted file mode 100644 index 8f3771be7ab77f4e70bed1c0e897b8cad7318729..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`3JY5_^ zEPB^o+Mn4JD01xK^E$yf4$CiSZEcNUQLmCz%vG=9wre{M#M= z`P+GZKACwjTC9&q + + + + diff --git a/editor/icons/icon_shader.png b/editor/icons/icon_shader.png deleted file mode 100644 index 568a45d938495b3e2cbe760aabcdfe50a1fe4cad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_eJzX3_ zEPB^Y+AG>*AmaA^vq96Yw!O?2jlvd=L5|DIq9#6O@Oi*=<&?}ft0S8a$aAb<`Lj#q zzVACvCT3-ZtlY*|f85Kp&*lC(Dd@m1k+AmKyIZ_@Zj339mh{%Fo6damw2AL4HbueS zufNPX88&?^U$%2y;j(E{mw1LZFWSf|wV%zc*mTzF_+L}9?EmoXabbuNOAJ~1U%vUK zBG0OC?9x;0FUnZ&ci=7au9P^jlfC{`afWia$$BecyGch>fX-*|boFyt=akR{04jZB At^fc4 diff --git a/editor/icons/icon_shader.svg b/editor/icons/icon_shader.svg new file mode 100644 index 0000000000..f77aa837c5 --- /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 568a45d938495b3e2cbe760aabcdfe50a1fe4cad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_eJzX3_ zEPB^Y+AG>*AmaA^vq96Yw!O?2jlvd=L5|DIq9#6O@Oi*=<&?}ft0S8a$aAb<`Lj#q zzVACvCT3-ZtlY*|f85Kp&*lC(Dd@m1k+AmKyIZ_@Zj339mh{%Fo6damw2AL4HbueS zufNPX88&?^U$%2y;j(E{mw1LZFWSf|wV%zc*mTzF_+L}9?EmoXabbuNOAJ~1U%vUK zBG0OC?9x;0FUnZ&ci=7au9P^jlfC{`afWia$$BecyGch>fX-*|boFyt=akR{04jZB At^fc4 diff --git a/editor/icons/icon_short_cut.png b/editor/icons/icon_short_cut.png deleted file mode 100644 index 22e15c388989b4c2fa939c7dfb9bb089d8cf4794..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^fJzX3_ zEP9XjALMNc5O7I9p?|n#?`mEN6S0M+0c;y3_01Nx@Yy&|OORbBZW7H+!@_gCScLxm^W<)-Ey`uK#&BvjFoh~X$JO5d3o0-R4zwTb0 zgb^>(8J+Ln9_KXNcW?<)@!!m#q8+-I*&+7&%$cdh(hW~kMc5d`nHVD4{@LG3(7D5Y zqB{0|@#j`%hDrUKbc6+O`ZFw8wMw_)8MDFWE0*P9SC5J?G#oo~sq@~4Jq*WRdxr8V STYU$5h{4m<&t;ucLK6Tt+-m^< diff --git a/editor/icons/icon_short_cut.svg b/editor/icons/icon_short_cut.svg new file mode 100644 index 0000000000..736f1f3c02 --- /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 c2f393228c8436081bbed7b42f9d521b63372776..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_uJzX3_ zEP9g@BtA7vY;0_NSnqwhe$6CP)1DTd1f^@s{_E;?|NH*6a8dW>2?@zMhrhp%`fqL3 zB%!S(H}MTqhw(pY<3B%(pVb#{W)2fquoTap;n1kTto-=h|FvsPd#+xcyJRN=<3B?K zgFVMzGUX&PmWwJsHfD1>CU9)ks>eJ$OWGKj4;!+vu?f#e;}Ku*TlTE#W{H1)PNwE$ s{AgXnwpx4x + + + + + + + + diff --git a/editor/icons/icon_skeleton.png b/editor/icons/icon_skeleton.png deleted file mode 100644 index 17b003caac1e6492048c67f2af031f62c7b4ad71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 346 zcmV-g0j2(lP)i!$1&4->g&6P(VSK0uVh1K!^%%zyT5$a0Dc{0ZJdO z<(ouET!0#h(9qCPP~gJ5pT@R=Z5&eZo89>{|If@W{5NbhP@a#2G($QEwp+EINQ=_B zo2}{exnrO_ABPy9fZa7sKN9DTZ8CWSa5WpG*&oCJJ0XPoI%o{4u~CdC3gNV^YVj9+ z21Ru`ocr-M9p0>{=}}W)_5fU3k~}uaG<5)Fmc>;bSab|ZxE;Y6u-9-|7JDXnFO%f1 z!vhra`C;k3+T!|Ndap0<_j|>IT?cZmuW%FmYS6brA3EO^ynm6|L6eif3_u3UBu$S7 sCy3IONv~BX%!Gu&GRAnlW~0sV4PqC4Anby=fB*mh07*qoM6N<$f=sKC%>V!Z diff --git a/editor/icons/icon_skeleton.svg b/editor/icons/icon_skeleton.svg new file mode 100644 index 0000000000..9716940906 --- /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 dcb2d512abfbd8118a6113910bc8af84a792b039..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 362 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5Z+iy#R%R-n);PZ!4!i_>c- z-Ss-+z|*>4r}i*!**#~0^`a%UO`=*|N}IgoefQqnd+y_+xkk|?k}Db$g(l6J^Jj*D zcgj(xNJf=%)$dtasWp@DeEs&%(BhWWgyqx2mnb~UV))k1?6Tplm57s&kcZ(5MJGca z?WXnb{Y|DBDNfp*XIAbq(`2s$qta`ohTE^T%WCtl{fc@nKAppnMaX&UoH>rpEe#jN zh3@{H#wMY`YGZE~!dqB-ZPCW|m8=c1_oLs6747+ZT2WH%aNh(k>(@``e|;&`x`s#N ztz|-=J<|!#`oOur{ft&jjF&uf(9dwzt=L_y@;}A)xAIQrECBkN!PC{xWt~$(69BYe BhkyV8 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 cabd19e550a0696ebc914c2126bbcc0d9e4c9130..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 740 zcmVPx#24YJ`L;wH)X#mpJnD{6F000SaNLh0L01m?d01m?e$8V@)00007bV*G`2ipP% z01qc|sDv>9000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0006%NkloAM8QcB z90VOi5URLXT%@Q~h{aZf(B?-qq-oxJx%W7{*Vkn5!oBw#?)h=Q-}}9Ckgp2DLH&8!|XV? zo^M#*fJPgN1voGO!)aJ5ffra%1%Xr_%uQPAEtnoPWRmc?407sTRpTq7VY~>c8txG{ z<5>`aYjZ+v2c~kcRt47!Iz8lR%yQ@*841r$j5%CB8RE%}=i; z0oZOS2b1u#-mAAvQpk)6jvrY3z~Ti4FEIFl!Rr|2AMOA!oEHAHm8ragRi)7m=UOFv zJvn-NT}1^%Lp64F2|0kNyiji`6S)M9mIV>kDi%bMm#bS^JmgYqT5>}Ue|Iejfp?`K ze)Gk*yFKdEJ;qd#Pvx4r4!8;F!DypD=7>;jTITO>_sBC;zv3qQge#BgWYZ3+N;d7V zQ8QecNda(fdVu$(HeQ!vkB_=6%%*s}+(ME!S5>=ybhqAP^@g{N{pZ&Us45E&s{8}y WuMb}avdvxq00004nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1V4db&7< zSoE%)WaxL;K*DW){mFX?&D;Se1YD;T^_I2BDOB(DN#kn>*|;S}ImjsN3sY-rS*pwTeRNF-y$f@G_MW;4R>eq#!aZRc`HF%@}oK(XQfwrkJ!9;n_gJhA8W zJ*P&Uu0`wP7zB=g403sP;NKmi4>MFwMu*GP-d?1UH>a38bS@Kr?q0)VYu0Y9-2Ny3 aC!@^-pED(@RtJFr!QkoY=d#Wzp$Py8WSHOp diff --git a/editor/icons/icon_slider_grabber_hl.png b/editor/icons/icon_slider_grabber_hl.png deleted file mode 100644 index 03d4b2bb998b56a87ff478c07a500b068f38a144..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 354 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1Ui+Lwc6Ss=V#??2|GLIcBdc!cg zCUds_+1WGa^4Cv!E$w^R$Mp&83})la-w#xCEIjr3Px6#ytF%MchMM;6i3*+GEWF|s z*9{)utHCVS?)|==-_Tpj@G0ARc9x*#oZ|VC4R33*4G*ZaeBhZdbK{Q1JFYI`uJBGnS*rlrO2Sf-0^NLkzXYx}tam#Y6? vld?~ePOjN7;Y_1C&>?;gTe~DWM4fgp`YC diff --git a/editor/icons/icon_slider_joint.png b/editor/icons/icon_slider_joint.png deleted file mode 100644 index 5b8c2df6ff202685ac183196b5d4ff4bed855424..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^@JY5_^ zEPD4&j^%4I5NKJ>mbbL?-qJaXpUT{x=PJB6wDBYBmbI*`Lf==uJhOfCOa2X;L-q;I z+1+d-cGhcRO0>DJ^;_9%OP+qX&ZT75u|YUdz;Nd_i-Q>kkKb&!u)NmADb2>T zZ#O&gomXYv;84b${lGK0`ayW}T7wUE&AtWPpm!I@1KHy_OZ%3}7V&NuqrS4*I~89ZJ6T-G@yGywn;U}wVs diff --git a/editor/icons/icon_slider_joint.svg b/editor/icons/icon_slider_joint.svg new file mode 100644 index 0000000000..479323bf9a --- /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 856bf72281c7c0b38ebcc63e334d8030fe5b85fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_uJzX3_ zEP9g@BtA7vlyKGkZ~pJNTHN6m=TEdmUv6`){U2T^WHg7h|8dfO + + + + + + diff --git a/editor/icons/icon_small_next.png b/editor/icons/icon_small_next.png deleted file mode 100644 index f853d100b582087663f5a533f71a7ba9f8f48cae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg49yxw-rdQK`9R>>7d%8G=NL)@% zaA5lX|Nr%*1ML6)|KI-&$o_O9$tU8XB~)z4*}Q$iB}E5$$) diff --git a/editor/icons/icon_snap.png b/editor/icons/icon_snap.png deleted file mode 100644 index 93194d34e7f7c2adfe72bc91bcb7be4c80aa3adc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 269 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_KJY5_^ zEPB^Y*voauK%{klbd2(gocRa0UvR(ZUf{9NIsE12j>+#Iyo#ACyJ_07g`8Jz-0=FV zAn@+|!#m8fJ%-mLk~urBGEUm}NZ&_n!i=qoQ-VH;v**`vYadHt-@K49T0}E|Nt(e$ z&*ZG*rZ;Q~cN6pPvp<=({(#YiTBhuayS)C~op{@Odks_Al~S%bjjRPN4|$?)m+lo` zD?jOZdBXFm=mr-})qh_(G#Iwua9dFNbl+z~zB=VIhpZ0mjQHDpk}0`@(JP>!?MxdJ Q3(z+Vp00i_>zopr0JzC-CIA2c diff --git a/editor/icons/icon_snap.svg b/editor/icons/icon_snap.svg new file mode 100644 index 0000000000..b1f36cfe43 --- /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 6f66da2e43221d906c296d54777ea3e7ceda7134..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^@JzX3_ zEPBsQGURhoSol)$-h$@qA2@bZ$f)-(I9~9SPq$flcc=4Qj}DuA&b^)S zP6`hDr?EYl-f`mJlKlJNmk!aUBk`LP^(z8f>7Gn}60#obu^&ckJP zjehDGWA$ZQn`P3}LQT__UF5p=)Su;yPv(r9nHmqaE_7uzJk~rjHoNJ{2@~gQu&X%Q~loCIH_NVt4=m diff --git a/editor/icons/icon_sound_room_params.svg b/editor/icons/icon_sound_room_params.svg new file mode 100644 index 0000000000..ddec8a3cf9 --- /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 7c9f72105388cf8ec039623f56ac627443eef159..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 419 zcmV;U0bKrxP)2PY|&IYrzk2F0KlNmTJhm4oOPdq&VuGE|+({cnA3F;ru}yC+p?&ry6+- zksK#SY!aD4t27ilLY_= z6nPWCR)*0N$H_*xOtgfyix3&;W?9=j zI{Ka=0Ky^}Mo$1cEkat6l2z_@m%QQdB>bwN$|6sSyf!SW6)FFp`2pH4f9FrO`wRd8 N002ovPDHLkV1oVcxH|v< diff --git a/editor/icons/icon_spatial.svg b/editor/icons/icon_spatial.svg new file mode 100644 index 0000000000..f0b4e65c21 --- /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 47950fbbb5e16e3a402e80af90aa0e2169601c54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 429 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg49&s@>fsMV zw)Q(>AkenIa1!tH#I4#b4p&4vrYQ$F9#wo{!F+XEPOFBX_7Ud-2?q^-e%CqEKc?NW znEZ49&*OeBfleEXr}WI*eB3A^eMZMkrL=7w%e^K{V79!$ee2TMZXc$o+m*K0zr1AB z*l;ebuEI&Gw!^-U^Cp|ds`yh@i&kl!vXa`%ZS^7d^k1%vEIp2y;i_rG`T$*lnG2WO=J1>_y1+73=pxJ1HGI5H#bNaj2-HB;7yb!f-N747RZ474XFWm@Dsb3j!`|z!by6F!%nl8ku zGnMhh->*H+m=m!)29ezQ)Zv@==nc}TB%vC UPPZO!0EQ)lr>mdKI;Vst01q##WdHyG diff --git a/editor/icons/icon_spatial_material.png b/editor/icons/icon_spatial_material.png deleted file mode 100644 index 7608fc9036effc49692e994d0894dfcabe6b486b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 483 zcmV<90UZ8`P)EU&CY6Z{Jd8gYOyljmR)!1xF7 zRuYD5B%zyiHL54 zQdM$(&`xgfUaQR_`A33nFX`wyWa!c> zablvLT|Sku^|i?JQ3XS!qrCK&QRWO(p>VGzw=zD;ld$+pK%_EgH)9UySVPShH$Ky? Z@dsaup)eNp^3(tT002ovPDHLkV1i6--WUJ? diff --git a/editor/icons/icon_spatial_material.svg b/editor/icons/icon_spatial_material.svg new file mode 100644 index 0000000000..aa8bfc9a5b --- /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 bb2451da99b16c2145acb85c848a498ad34b73a8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^jJY5_^ zEP9VlILLX(LBKVBllC@+8y#|M4zo2`-t2yGbONVkw)C|mUZ+WCD?~SYPZRwZpZ@Hx zy?otDza?{SpLA~Cm$}Vy&LoCg+gAI0Wz(ts?3lvCv}Kjpxt-b@<`sWua!WpUK<}Bv zfjYNK2OcRH-C8t5g3Y_<>VHPD2Y=1givlfF)KAQ{X8PVadAWnWg7)cq5}VoOHfrv9 l^{UFa!)AZ0OZmh#;!2N + + + + diff --git a/editor/icons/icon_spatial_shader.png b/editor/icons/icon_spatial_shader.png deleted file mode 100644 index 7608fc9036effc49692e994d0894dfcabe6b486b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 483 zcmV<90UZ8`P)EU&CY6Z{Jd8gYOyljmR)!1xF7 zRuYD5B%zyiHL54 zQdM$(&`xgfUaQR_`A33nFX`wyWa!c> zablvLT|Sku^|i?JQ3XS!qrCK&QRWO(p>VGzw=zD;ld$+pK%_EgH)9UySVPShH$Ky? Z@dsaup)eNp^3(tT002ovPDHLkV1i6--WUJ? diff --git a/editor/icons/icon_spatial_stream_player.png b/editor/icons/icon_spatial_stream_player.png deleted file mode 100644 index a6f98515485da293d98caf01e0e4641059c62f06..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Ro-U3d z7QJ^To#kvW;BlKjX{E~?wd7Q3>o7t8)~H!-{7OIkJU@TG$g(djOMX)%)3gP8ov+vo z%9{cW4@B{NG;-N`eNIlXOc8Y%Levv3hETlS`mLT-@XL;;e#CbKJS^ caIP + + + + diff --git a/editor/icons/icon_sphere_mesh.png b/editor/icons/icon_sphere_mesh.png deleted file mode 100644 index 19ed49c3cd4e612a3232a335db82cc6505c7477c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 495 zcmVjW+x_ zxkRO01y+EC&^`w5QHfG5)V@yy_+a}1(raL9!i8tZPZU3U-*1#g#BYQ6BldDZ_A>AZ zn8w<1tG+tqAlN?1#o8jS)g{@jx&d@!Q?|w7%Ps5#_(jy6*R|wF?jWCe3eoI~$HJ1# z_1X(yADE$At`;MR`@w4ZH}MceP6svRT*#HMKk`9imdIb|bvx$~9M$J==`y|S7WVDX zo-Y8!73<)2GC%`IJvxwu#LgeigMhEVBGNnT-#`q^h6U&wxC1@}T>u^eCj$WQf)=r- zi8q$|ITWw3F_%YV(QfRAympHaD^UuZ0e5LN65HcH)E4dfbKnkeN-0W*2WoGxVeJ4V zL=*H1yBV@sBJ)$kJs`uZ>E`B#AwaOa3cLYkMjeDY#XRnd#{d96N-okZR}m|~)jVw- l<7|&olq# + + + + diff --git a/editor/icons/icon_sphere_shape.png b/editor/icons/icon_sphere_shape.png deleted file mode 100644 index 23300a0da11cbfe2ba127aebecfc70255d0d5328..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 362 zcmV-w0hRuVP)4_>AKzW7XM8Wf2=`8``;mgV + + + + + diff --git a/editor/icons/icon_spin_box.png b/editor/icons/icon_spin_box.png deleted file mode 100644 index 6da0dbec79a12d966819f2f48c6df7c1d2b95417..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmV++0p9+JP)Ki$9sIia~M+d>D5u~~&g3+O` z;Ip`-1P$U+#GFf%AW_WdxBT4k-`&R@JUs$1+br8EI#GDP_0g?&Brk6O649S~#aaA# z(e>iMKF6i>ZQYvUZ5Mhe-uadu8G$kW{&(e6KSJ}!)H8aljDaSorH8{LYw!?m{j+u_oP*i`s?5I|ov%U$^720b4MC!$Y=&8bHPFg#JP+s1iM%)%LPGD={<}0# n)xL;KNzZu?w`K=Lte=1r!<9sXikye)00000NkvXXu0mjf*OY>u diff --git a/editor/icons/icon_spin_box.svg b/editor/icons/icon_spin_box.svg new file mode 100644 index 0000000000..965df69a02 --- /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 ff65df801bf42d9272da9684d461b2d791d78126..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 345 zcmV-f0jB%d*@~r_*QL70(Y)*K0-AbW|YuPgg4CP5Y}lXnay$v~kJPZ!4!i_>R= z4fz@r1hRkr-~YjxXV(?iN37h(5*DQ@7JTv2U#f6MAyLR)Ss{a0amBsZF4v|Pa@>m) ztR_7aj|y_1{;$sG( i)xOxxLyqK z&}3{2=#0M)@bme3o4HA=1h^!5&Ud@_wt(EZ)Wz{rnLBJ@8%4KT>sO%vL)Tw9-1Urk zt8}2Xo^>b&=xe2BO(PubxD`cl@E(1njmULxFj(c*u7C>wykG0#@M>%A<(V-bWqf>O`jHny`FP-Y9 noBcTxDKe3wN$Z4qz`x)dS@&P+6w$4m00000NkvXXu0mjfk7Jfa diff --git a/editor/icons/icon_spot_light.svg b/editor/icons/icon_spot_light.svg new file mode 100644 index 0000000000..93d4247405 --- /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 b698d32d4c47073b9008c619ebaf1a60e2ab7226..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 419 zcmV;U0bKrxP)j8N)9|b+!lj7I#o38X}kjD8UVNklya!uK_pJD z1ArOn;K-vuw7w&8|6zI)NSEN&Br!%iRmd#Ag~j#eU`0&h`HPWmFoGgm;pDMvlxEtS zD#|G~0sS|Q0Xetd-6{aYmejF;7XTLgc%QbDwsOf{u(105=ukv%@P|VZuyC{&zYRtJ z04o!3kSqci{2=a!#lZ++T(yU*{*hz>Z2EKu3N4PEij_ + + + + diff --git a/editor/icons/icon_sprite_3d.png b/editor/icons/icon_sprite_3d.png deleted file mode 100644 index 47a3ff429b8255571ed05c30185d99b8426a10ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 408 zcmV;J0cZY+P)te$1r?>ia^_qGxxOcYU7AvbeHFx@6S2+gMU8B7PQscwLx$N6jin0h6Wh( zVxp)ijmG;*f;bFIKnQHD5d22g3*Mj|uYNf5lPQO=T# zJg}Y{5kHr^1Bj#OT;L`J9vN$!&WTg#c29wa4TDtjYqh7}6#$p4GOFV> z@KGAP;9xG$>+QIZ6crBK&;ZrGv9>Ao`sZ4Qe|$v6s0000 diff --git a/editor/icons/icon_sprite_3d.svg b/editor/icons/icon_sprite_3d.svg new file mode 100644 index 0000000000..0d5caae501 --- /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 5576b24f2ebb52b33a153a66d7b4a00aa547894d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 332 zcmV-S0ki&zP)-^96xr=mwdMY9J0aSQsTK?2bMqDsLn=vLyV z1f=bNf|@4IJ=P4(1Vz~-6i6_Q?dO?qK6~JoA>Bh=*9Rgp2euu(ibxe>y!}z2uInoi zIUdQoRMpc_0q?w+v?{V6W4!D0!Y}7j#Qry%W3(;kU-I~Scr)9 z6UKPo!JC;a&Fmd`24>Em% + + + + + + + + + + diff --git a/editor/icons/icon_squirrel_script.png b/editor/icons/icon_squirrel_script.png deleted file mode 100644 index 32926b597525510398bde2da79e2d606239a3413..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5Z61J@h>%YZ_&JzX3_EKVo? zIsajPqtJmP4vGh|8I+kH*H7Y2NJ;p^f0%RHA&r_f(-hhneT0n!M8#S*@7{hV@dr@3 zVB|d3>6a&%3O!{_xm}p4_cib!hxi)3iof4%FX|oQXpWxzW`owB14>5|rfp?X=IQWa zpX7J6#LMHqz|B&57 Zt}}DJFLibDO#`};!PC{xWt~$(695&XRxAJj diff --git a/editor/icons/icon_static_body.svg b/editor/icons/icon_static_body.svg new file mode 100644 index 0000000000..e8ba9bff6f --- /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 9af0274a652a1815fc6ff4212bca2f69e430c6d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^KSM z6d25AO{=v6if|TqL>4nJa0`PlBg3pY5H=O_S15kHCP$uD`+he;jzuC@rg+?5dP?*G#~cOMDN4NJ3zjc@z!D;(n0|saEXVR|QHv?- zN2A?mJ}JlCJb(WDi+=q3aJJ&*+z{WGP{FBE)=Yf6D|WIt9QY3OJA^&9Z z_s&J z-&3&0rhn%Zf2sFu_08hV`TriI^EOGFFUvdpWdqlzKuG_h> iLGBw<t3J)z=P);6GP89ZJ6T-G@yGywo#g + + + + + diff --git a/editor/icons/icon_stop.png b/editor/icons/icon_stop.png deleted file mode 100644 index 0fd43b403a11dc93e772b7d44586e64d42cf70db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE%y{W;-5;PJdx@v7EBk#`2|*1Vh6(>efI^j?E{-7`W!6Nls3iwWcaIDz&PpSidCE) z%U1LI++$@up~n8W`Q@u_j}LkaB6mCzy?fdH5A!~$39~Py96zposcO}l@Kp1JeV=Dm a2wT_QQri)I$7w0h5e%NLelF{r5}E);9a8H6 diff --git a/editor/icons/icon_stream_player.png b/editor/icons/icon_stream_player.png deleted file mode 100644 index 15bdbdf440fb9b81b98128848c0a8bf791bbea6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Ro-U3d z7QJ^T9pr6L;9>ATtT6ZRi!ZO_a)Rt9g)9w`KX#-#aKRTR?)b}d&5O=y8?aP%cla>W zJ~i-SlQ^wZY3}kQX}k2Q-fXu19|xJ=sYgYv-JAVjo0+SqQkSDerCGq$p9uni$F`+D c2&)a*vzTnVT5um*cp00i_>zopr0C-VDN&o-= diff --git a/editor/icons/icon_stream_player.svg b/editor/icons/icon_stream_player.svg new file mode 100644 index 0000000000..c135487de9 --- /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 1858a299d7b51efe53242771d1cfc93c4075fdf4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_co-U3d z7QJUD9ppV=z`^W$)p5q+&*=hcD}QMQxy(^(@_(Ps$$pwqLx~|FjrYJ&wvewC>F?sK z^;T52PtJYaIeW1j&r+72yL=jXUaAGftD5JYz07iP&#Q!rhT5m%b)BbA*zac+%)F|S ZDW`8}+htci@d(gT22WQ%mvv4FO#nEAK%4*o diff --git a/editor/icons/icon_stream_texture.svg b/editor/icons/icon_stream_texture.svg new file mode 100644 index 0000000000..0210142b7e --- /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 8d01b738da1416c5c448b77e8d58081f549e4c2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_ko-U3d z7QM*{3j_?3glj%LI9RXonS+^`S(ur*SrkY&H#IS}Rf#c)-3WMO)yB>*_s6}6H|&7R zMBc@0JyHy;EuWaU4onmOu + + + + diff --git a/editor/icons/icon_style_box_empty.png b/editor/icons/icon_style_box_empty.png deleted file mode 100644 index f595eaaa571f6c484406fe1cbb3d8786cdc53f74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmV-T0kZyyP)?#aNGi<> z2=@XZ#kFE17QxbwP7A?Su+&D=SZL0%I4+``x*nNoXPEha>@G|LilPfSrwMmX9{da- z$P_h8^lg-xxH}0TUb4c1y<5$UYFtV*0L-`wUugE0?bYiJo@#XSFn~nkd6tg%3InG{ zVE&u@(2i}v_Z8j>v@t*xK<-cg7Oz>Tv--wx9~MitQeR%Q

    3_!uDM)AH2t-Wz00000NkvXXu0mjfvz3lO diff --git a/editor/icons/icon_style_box_empty.svg b/editor/icons/icon_style_box_empty.svg new file mode 100644 index 0000000000..aa14bd4ead --- /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 6ec6a6dd35006c100cd94c218e6a38bbcd7c6df1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 398 zcmV;90df9`P)6$QZ!0LV~`M`O+i6E3M_&W zYB30&ZY>QtHPjaInk`yv2^xzQ*9t+%f2SdP5IkRI-*n--zmMRkUC*Xk@FS@D_%SyCts=d$zU6SaTsn?5OeT^}xwzi`c*0U1LZRq7t1LGdRPksDI zW?!JS2gxUG7f|RQW|~Kg_aL{bgaJe-hAKqTBU1I8f(i#|k>+cVt#24WmGE01Dd!JH zb8Q~q%N@X2mNgf971;M|5U9}8I@Vn5y3-)exqE_NCzjzVE*E)JQ$IW + + + + + + + + + + diff --git a/editor/icons/icon_style_box_texture.png b/editor/icons/icon_style_box_texture.png deleted file mode 100644 index f6495084186319668761959aaac91a2b1fddd286..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 411 zcmV;M0c8G(P)UqK~y-6rINo(LQxdQKj$GqE)v)rv^EsDNwrDz2S^PKI_K~n1_nV1 zO%Bm5Xw=0isFre&#w==R5@~C6X~+g0GCd9H6YC|<`odk#x!)i6oD2Vi0I1{Kq8c5O zTM=WHEPy|d0TuxQ0POVQOdIjT)E8R;Fkp>E@PGwS2!92U<9`w3cQ%a3VljOZNv7tM<}?{j3ULX2o+0*_uwg1-Vlt0wBU;s6{k8C-1(t z@ET;hPX + + + + + + + + + + diff --git a/editor/icons/icon_surface.png b/editor/icons/icon_surface.png deleted file mode 100644 index e7af8e9444572202fbd0f67390c4c74f27f41677..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5Y}flJI2HUWh~JY5_^EKVo? zIsajPqtJmv2M!!~a6s+bd?jWHAV`a`X;GZHFyB3(k8}D-$zNqWlHBToQ<4|C7>6-? xT|79LmL19 diff --git a/editor/icons/icon_tab_container.png b/editor/icons/icon_tab_container.png deleted file mode 100644 index 7ff3081ec150511521492b32620dc4a580f64a2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`Lo-U3d z7QJsL8VWTz@VLg8?P%EcpfhLVrK;*Yno;d`(=KW#D@wl)1%?jD|KL7mxseDjn zE7%vi-6*uFX4(3wPxxQQzGbkwYgTe~DWM4f6=hjc diff --git a/editor/icons/icon_tab_container.svg b/editor/icons/icon_tab_container.svg new file mode 100644 index 0000000000..b6489e9fbf --- /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 ffc63f2d415f70f1a2af0a714a74a7fdc9272a96..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`co-U3d z7QM+S2N?hT|F3`gz<~tjr*erYDK$O5vch`I3uf(Hc!O=aQVp8`>j%k#md3`1+9LAH qt|;ANbc+#MywSnkK#H4(hv9FnwD6IIs)j%#89ZJ6T-G@yGywocEG~%v diff --git a/editor/icons/icon_tabs.png b/editor/icons/icon_tabs.png deleted file mode 100644 index c17ab6fa1bba9d181092aa74ce345ecc31cbddc2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_0JzX3_ zEPCHgP~jJJ7jC^6fSyC3P=8jD(90bi|Wpr-m?GidzUjOO; z`O^pDAI)B6x%L2`!?nqKx1{aJpv_onDfvE8c(o^YV*Ti;djY?xdhQ zRxJGLrxzME6hGNl&)>0>SKx`AeZXn!hxhg!;V|iRP;hckax_q22rb?+rD(<55?w2q c-=%vQ(z{d@cK$aM0y>nz)78&qol`;+07=|f5C8xG diff --git a/editor/icons/icon_tabs.svg b/editor/icons/icon_tabs.svg new file mode 100644 index 0000000000..dfcc20a133 --- /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 4d11a69c3eab1c3087c170457aebf7ad77fcbf41..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 435 zcmV;k0ZjghP)Rit=>f`~^DbRmd^1U!P^CJ2IF z!3J#$b)k1q&^r{Q3thY%pxL-E$+$3W)7XmGSv}_cZ|47J{s&8j%uDM1y_1echaz$c zsH$E$)oNe%_tResXb_mRR@)QRa~0Vr0pC*9t4b8zNDw451qvO{6zciKP*pDg=H;Cz zx|1MC3_u#kPl$9B>Hh6;5=I%%!;2w-w1%>r9DgVmDM z43Q61vqG*pk&uL8Hlg#@fcro0&-mLFRhi zgNdRopjEhPIo7VP`2KZq0{|{_A_sMoFucvFcIV-K6iC|bqeX^+>AGi{0VHAg%yg>X zd#+adX&iq7IBRQ_vQK~)*Ymbb4%jL0Ig8`LxJwqtgR)N?Yj-CMCKUf` + + + + + + diff --git a/editor/icons/icon_text_edit.png b/editor/icons/icon_text_edit.png deleted file mode 100644 index 7599e89eb114d00a9d58067c4b604b094b7ec502..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Fo-U3d z7QI&|8S*s+2)Nw;SHYOkD10%i^{f44nFAL*-Zm~dCT(Dr;Oz13_>2SE<>hLV&mQQP za4`S2)o1O3f>&&wA7{nSV@xo*D|Ccm>CCMR%TpOHq@;gd@&0{#1D8UM&fPUUK{ppR zexLZ?yTGP-X(w}l+O!v6eHAp%spW0-RaCo^|Cur1fl7(yozLb#_b_<6`njxgN@xNA D-SSc+ diff --git a/editor/icons/icon_text_edit.svg b/editor/icons/icon_text_edit.svg new file mode 100644 index 0000000000..d3485a0b62 --- /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 7c4493395ef189a22396208d4cc4162cf859bb95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_&o-U3d z7QK5Xo#s8PAmDO8;$8Dv<*qw>G*h%Wce0$EcCbb#)z9G3SskVd4aObSEOE{YM4UNp zf4a?okU?{)`GG2vvpJgb_NVXKSKej4vvRwkFMG-ku}#y?gk={uNyU89XWV->a=P}6 vnah~_-rrvR|4(yT!x9TFuUqq{F@IncRMoC2DOflU=nw`^S3j3^P6-7%4;Nj8H$4p~z+82~{|-S3$qwi*qON(^`y7>*nA7eAcoS`9Rx!PC{xWt~$(69D%o BG+6)u diff --git a/editor/icons/icon_texture_button.svg b/editor/icons/icon_texture_button.svg new file mode 100644 index 0000000000..17f87ab861 --- /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 ea3cc35da87f916e7c4ba0aab2867340c5cadc17..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^#o-U3d z7QI&|S_?Hf2)NwOsbus#C_FK%<>Nd~zJ!?>XBt(mNncP~(|AS9d8SAD=gL@H(+!o9 z2fkLWPkqI*bh5O{(c;2a%m*^E!VfS^omtAT`wBzGH}}sMreF6xz^IVYcJo)XF|+;* z(+~4D&UldCJS9al@Yf-RkbAq;ZS6Q!j-EWidt2gB*WdbU(n61Pa=0!W{ta{$gQu&X J%Q~loCIBLxRGR<* diff --git a/editor/icons/icon_texture_progress.svg b/editor/icons/icon_texture_progress.svg new file mode 100644 index 0000000000..03aa3965ba --- /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 20adc2271557ac5e039a1fd243d8a3a2eb58b083..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`9o-U3d z7QM*{3j_>|3=9l(YWF|0x16<@)mdVuMkyoruFfMFPGyEi^%nFq{$QH9fYIRW4xYq= zY91%Tn)D7Vm7HzS#<)aHi$`BzwphWghLDCwOhunqfXXEp7<9HM-8KE0+zhma!PC{x JWt~$(69A7}HH-iN diff --git a/editor/icons/icon_texture_rect.svg b/editor/icons/icon_texture_rect.svg new file mode 100644 index 0000000000..86d24ac223 --- /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 55d799c722dcc5851bdd9671c3eaeef355381bdf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 451 zcmV;!0X+VRP)R2J!CXCS>Rek6*W|3I8M7CW0{$5E7=@}Bdad)~vna7gG+gkwyB z9RQLfRj>D@Nf&BEnY-O{V{5hdh_bu@;7(`GF=mYk{5@vC3&6lj@EK66Vn-0R!Pl#q zMIFtD05b=?-h*AG%BHtd3*4IIA%stj9jrPI#>0Qb@TT&GDTAkuX@T0Jytf~l*E8t$ z4}L0;^nuI!>*zs%&1L1g0*Kyl{hESe_KB{11L%5VwuG;BO|DA{^~3+gxWwIy#{_Mg zyTECH#Psic@U0_4#SZ;RS%y&%_YH6MI+!4S_CJ-FAJ=q=0IMrL8_X89$JKz6!1?8e zddop^Vop_trNjU;nsA195(A(Fq>>ZAB>-@Im0^9<V4wK?RI t%C8L@4W`Z3Qz)v>q*T4Dji2ez_yy!~eC_VaY|j7y002ovPDHLkV1gOf*DL@4 diff --git a/editor/icons/icon_theme.svg b/editor/icons/icon_theme.svg new file mode 100644 index 0000000000..3dfb4aaa00 --- /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 96a7d424e3d1ceac8d6fa3928a2ad4a969c928df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2616 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 HoD!M + + + + diff --git a/editor/icons/icon_tile_set.png b/editor/icons/icon_tile_set.png deleted file mode 100644 index a1c3fccddd87da237579649d7fda63da545f5d12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`1o-U3d z7QJ^T9ppV=z`;CMtJ%P#{dJxsOTJTl$jQZ8O?#^J1rlxw9pLkj@;rUzxEOnCos6QB zMpO5>Ln`bHB@6-+pEd9N_n<~5MCr?mMT=KmztjF^pQX^mu)Ya(D#p?`Z?{U{jP4V> TccVrKXdQ#6tDnm{r-UW|amYT3 diff --git a/editor/icons/icon_tile_set.svg b/editor/icons/icon_tile_set.svg new file mode 100644 index 0000000000..c7be24ae62 --- /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 a8e97ea7b8a148bf4dbbbd3ad9fac59cfa7f45b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 557 zcmV+|0@D47P)Px#24YJ`L;za=W&nJnY0n@4000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igY+ z0v7-d;xX<300FH@L_t(I%dL~oYZFlr$3H8*G|Bomv_-Z-4`QHVqS9g!O0^X!9(vJ3 z`X70;soIK#5Y$^Q#r_adQ_|ET*=!=(KOq}KF6O;A9@<^DX;%at7XFo1$FfsBiV|f90hb2A zpl_w^f=K+~(^q^}{TO13-~Cw&zJa@QSzC7=)`kd04O?8`QY1tMpLAR2eO zKY1{DGsK1^B$FxDU#;M|b(9gb5$@g?Kk-bOrt7l4xuzIYBgZJ&k3XIOwyI{e&b zr5?`Z$dz&Yj(?#FOLNmF4eM*cYc%L<1AtaS(`}%XK`X=K``MreX9x-ae!D~Q%}Ykc z9E>tNUoN7QVRX!)^!7Dvze6;CP{!Po+1uQkd4$$NUmFe&Dkv@VjbUnLp2dfE0CIm? vrfi_|+PfVRDVtum%hQF)@DX6|zwW|s*O|nhaH0`z00000NkvXXu0mjfsa);# diff --git a/editor/icons/icon_timer.png b/editor/icons/icon_timer.png deleted file mode 100644 index 81e619cdaa10fe4586fb417a057adbd22f0fd2de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 378 zcmV-=0fqjFP)-4Mb!Z4Dueqj?_L&w(EXzVfo`6l@+0=l}o!07*qoM6N<$f|k;!OaK4? diff --git a/editor/icons/icon_timer.svg b/editor/icons/icon_timer.svg new file mode 100644 index 0000000000..e5907cea20 --- /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 43c08592c6118c4d54ad9173f87414a828e13ed0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 400 zcmV;B0dM|^P)fr?iAX4|@TXR~FMD_Zdb z7+ws5ooER-9TP%6*p3!|H89(jnr%y`Svi_>6^;Q`yd-c@Z9VSTh)i;01GDv9GJINh zoZ(#STHB5-`{_u$AUF?-ntB zxC1Z@PEw&{bJ1U>o|pCHd){UV60000 + + + + + + + + + + diff --git a/editor/icons/icon_tool_move.png b/editor/icons/icon_tool_move.png deleted file mode 100644 index 2b6984e8b260ce91ab13e73e9d8d40f6c679d4d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_Ao-U3d z7QI_18}c + + + + diff --git a/editor/icons/icon_tool_pan.png b/editor/icons/icon_tool_pan.png deleted file mode 100644 index a24545a6d45a44204aac2fdd99f5284f7cc82a91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`VJY5_^ zEPD4&+{=5&fv0u8u9OOw*^U%G6)qLC1opHAJ}0$IbR1e=+&oaUgHuAmkX2yP#7k=N+^R-!kXRNrpL#8V-2=c=r3|?3 + + + + + + + + + + + + diff --git a/editor/icons/icon_tool_rotate.png b/editor/icons/icon_tool_rotate.png deleted file mode 100644 index 9303fabb9c53383270ee82fb19dc7394ff65b59e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 420 zcmV;V0bBlwP)?Aa-y$(BryvQ9<4O2fDZjQtU2HI*31` zqf-Y*XF(U;oLoEDf@EmQ)m0HZ8iyn<*K(eotG?668=g1$zI^c45PV-86YU%T!2$x-xyOj#?-y{d%zR0 zVXeJZO3eX;#egsjkEXDcax;$Om%{PYXf(R_-uHkFDdiz>{^bQih<09{mS6yqBzbkt zodEYNBuRfb93BHS8jXGt zR7x#KDR->39q;`z(3?yqU8vZ^vhw*%RlP{R=pA@)&Yfggwl#(Shdu#Q2Zs^UI-8yV O0000 + + + + + diff --git a/editor/icons/icon_tool_scale.png b/editor/icons/icon_tool_scale.png deleted file mode 100644 index b389c40746ae1d8b95aafc61618da334f8826d95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 349 zcmV-j0iyniP)K~y-6&5}V%13?f)|L-w#17{&JorbJLFQ5>j33v<7;90zZ;@Sg< zLgoq~3n4u--NA)=g$Z4*gwA5@*=a57*MC)174X-=p@rM+_Gq`;U1V7{2XLabo&vx@ z%GkE;OeyscLO51RK}10E@kduFfH7tX;3>|DNHrL+*=!C)sy@<#u$#vIt3$68S2;ru;V_nw^5uvrV@ZPVSbHRJRvep)T zp1m_V=NgjF0M6silgZ>O3257POtOizHxaoq#(eaSjQu~D?UBh!YyJ6~8HkohavBRF va@{n|JOzj+7?ZpYAuIt@#u%3}|Bv_vq6lt!dHJ1100000NkvXXu0mjfJI0pe diff --git a/editor/icons/icon_tool_scale.svg b/editor/icons/icon_tool_scale.svg new file mode 100644 index 0000000000..70acd52082 --- /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 dcf6fcd2c8d6c723197a87ec2527677037dc6d9f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 376 zcmV-;0f+vHP)HK~y-6#gRWt13?hQ-z*CutsopCEGz+=*riRCd?3Gx*cgMAg{2_& z3KoJ0u}MHQkiAJx5L1f*?|2q^a$NoptGsHMeecK2EU;-wUa0B`fX7Ouavnv|$GQNM z7bG7@c4xEMYY3q`9*^t)nqV@SRI@Bg0BjZB??mKiI-OoN8jY`&fZsI^Nggcly^%a4 z+40`%Qov|5+B3#HmHP#y0Io#j*g1C%6m9?j-uq_&H%r0*@ItaLB5~fZ3rrmVty1q( zM4HaIUfDc1DoLxV3ScJ>1E>NRq-ol!)oSlWzbOMmBqe#8^F*XcvJaqct-TE)L@NOR zV68pH&%y4UbGd#x}4sA?-olHIif8`C$d WV0r5W*sBNt0000 + + + + + + diff --git a/editor/icons/icon_tools.png b/editor/icons/icon_tools.png deleted file mode 100644 index d81c93f212a360cc96e2c27779d723e1cc2e912e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 298 zcmV+_0oDGAP)yw$n$&xU>#ViD2k@F1I(;-epRi>5#Q>0#E|aaaU9bpz|R}}6>u-rZr=h + + + + diff --git a/editor/icons/icon_touch_screen_button.png b/editor/icons/icon_touch_screen_button.png deleted file mode 100644 index 6bd0af3f479e7feb314d4e8ae2161cb0e4e7fb9d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 313 zcmV-90mlA`P)T`Rwu-TnLKj|R?^91540g&+e3-{LfQEwc3LuJPUF z)o-X{4X!#NZ`8``8!;MV(xeSi0}$jkSae0$p^fdLTjdq5({{UsOQi&Zu11em1uO_k^W zE4>lnwG#kfn%emh60egjOjA1-VHWXk(+B{VJla_RvH^XH&lu1jviDU(sw4-Y00000 LNkvXXu0mjfCM|~n diff --git a/editor/icons/icon_touch_screen_button.svg b/editor/icons/icon_touch_screen_button.svg new file mode 100644 index 0000000000..21a8f16ee6 --- /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 02d92439a38ecfd504387eaee427c8feef772e83..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt^?o-U3d z5>t~C9GG + + + + 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 0e857f5fe2919c18274344af9e6f603aa255fb5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqY)RhkE)4%caKYZ?lYt^?o-U3d z5>t~C9GI;C#sAv>`2W)XCz5=4SQs2xdtSIr%3 + + + + + diff --git a/editor/icons/icon_track_continuous.png b/editor/icons/icon_track_continuous.png deleted file mode 100644 index dabdc718d5eca41c8908f1a432e0fe4fdb59055b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~c!3HEhl+{lMQfx`y?k)`fL2$v|<&%LT`#fD7 zLo_C?ov@$tP=QFx{^>I~nx-lUIeAPz#H&-n5H3*7zM+ssntg+K_z4EHux(&(QoTtxPMdv~wa=11TsPmR9EVSysbORosLV9HH+zU$qBZ|fvj9PgT(jhy#9 zc)?FmM-kWNO*+%RyE4c}be_0o(9@h6Iej^^=OmL&I~{LtoZ!rb)if8?RPM^C+I8fTlYHq_BQ{}qx)a71<6>jG|yss2J{Jo Mr>mdKI;Vst0I4iyQ~&?~ diff --git a/editor/icons/icon_track_continuous.svg b/editor/icons/icon_track_continuous.svg new file mode 100644 index 0000000000..635b558758 --- /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 3f580ac5fcdf2f43810b2e77b536fd3dc2366981..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~c!3HEhl+{lMQfx`y?k)`fL2$v|<&%LTMxHK? zAsQ2t6C^l3JUH0Am|xDu;>-aca9Jk#|KI=r|L3dBE?{)hTQJYJCB|Wn?-mAz@@LAv UldBTu0d+HYy85}Sb4q9e0P<8Sv;Y7A diff --git a/editor/icons/icon_track_discrete.svg b/editor/icons/icon_track_discrete.svg new file mode 100644 index 0000000000..80c9062365 --- /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 1355c84e6786f65d36243546e2edb997ec8f1b82..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4b`C}ZgAY4+>wrSDJzX3_EKaYT z?9F%BfWt*TQh00oN7Wa0>1U5_T0T3;a@*&?n1~yf4k)DM6waAAqpxB6+4G!>eu{O5 zOMWz3x;-v9-uzpV=gGzE_Izi5<3DZ69`_rU4=}Dg=dN@rK4*_`U%w!OPwOn9H5*UO zw3g&%3T1YQL70(Y)*K0-AbW|YuPgg4b`C~;wUcJsHUfp_db&74`w>s|HV9NpE=&8o=ZDsA>8UCn^Sut!_Wt+Tr8zi`S2q0XICbG^F~ zb3B)S4QghoWStl^Cwbqq$Cp?9*et(_WnIBZ{-;@Sv*ez9X1Jp!o2D|!l&kx5((>~W zzwdujjeTm@GA`0>J`YTK7U*GUa0`nGvLV~)MF;qJ8Q z4+I6%H3Y(Q8~E0^|MzU367}BhTXgPr9pmf?`G13@|K@1V{S$H69cVm*r>mdKI;Vst E04dBoJ^%m! diff --git a/editor/icons/icon_track_trigger.svg b/editor/icons/icon_track_trigger.svg new file mode 100644 index 0000000000..f614943845 --- /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 5f5dc0d3155527dfa732d459f217a9da72d165b9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4b`C~8=?>S^4}n5!JY5_^EKV<- zd{F4H0*A}}Dz(Y~ru}^QFXG*ofYK>PmRx?(8krC&@YKTJZx;kIFRQ+w p9k|o*V@deCRbMw-^;Z6xYwuf=+q5y#ei_i+44$rjF6*2UngC^%c6tB+ diff --git a/editor/icons/icon_translation.png b/editor/icons/icon_translation.png deleted file mode 100644 index abca359eeab6c7d5d91936adec468ce9e27e4275..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`To-U3d z7QI&|UgT^r;Bk3>#8AX2_WA|?@B*RZo(sHxT>X{2(8G15LRGxwq&>|n6&lM9ok_}c zaG6nU{Fz}+hYrJqkd`u)=P6kX9fsff8Ft=dT=8nfs^FE^??tLvzWG}9CVt;XpO<^> pEgyYnP^mR-Si-NkW7dO3W*V22C+1g&?FBl4!PC{xWt~$(69A2hOm+YO diff --git a/editor/icons/icon_translation.svg b/editor/icons/icon_translation.svg new file mode 100644 index 0000000000..81abe5070e --- /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 07e9b52b5c3a058c3fa449bbe3943a4a0329ced9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0prBY) zNJNQaX-P(Y5d%ZTE$!3iSDw;fW8e&9TAn|%W;sxWo~Mgrh{fsTnhy^S*0b3-#Kp=4alOKUdMp5>cx#Un1vA)ig{zQwHN9Q)3Ae_`-yQjK|SxyKf03xlVt KpUXO@geCz0OglON diff --git a/editor/icons/icon_transpose.svg b/editor/icons/icon_transpose.svg new file mode 100644 index 0000000000..d92b37a7b1 --- /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 de856a79fbd60a3d64c098d051021164157473e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Wo-U3d z7QM*{3j_>|3=9l(YWF|0x16<@)mdVuMkyoruFfS=4jZ}IG9?bgxcJNnxX${bA>hUX uPUd6EB0CkL3~o$|U}p2RQn+_Mgq?xqlZ2Mb^*TnNxeT7JelF{r5}E)o6fK_s diff --git a/editor/icons/icon_tree.svg b/editor/icons/icon_tree.svg new file mode 100644 index 0000000000..093f9d2fc5 --- /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 4ef7b41de643b1b4cc3843a92a424add88379398..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$1|-8uW1a&kwj^(N7l!{JxM1({$v}~KPZ!4! zjfq$L4Y?W|1en$5^)7udzvb}rt_Q1ia$C0EoceeVd&VjOqZILf`mKhWSzk29UV3?x z;miTmOx71%7L39Z&gOh5`lhp0Y>@#|`|*d{BWfGiTw?1Ouil;Vzb3-`01dDGXV3ze7@nMQv|-@N+fOTR*+$%$`{n5R4w6rI&k zQN}sBY59!>=g$1JcWRanvq*WiD7>RX{M?S@&bI-F6Y5&d%t^fOSM?x>EA*iCn%kbs k*Dd#Y*t>dO^zrlTuVQ5+c#lc=18ryUboFyt=akR{05d2`n*aa+ diff --git a/editor/icons/icon_tween.png b/editor/icons/icon_tween.png deleted file mode 100644 index 3181e2cf63c2ad11bddf7a77be57eb386c24efd6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^@JY5_^ zEP9VlJji>q9rXZ3)wZA_+GF*6zA`7*uqk~gn2jX6OZGkgANpWoM^86wdeU= zQyrIMZTBQ)XN#9A-wa~6e>nHzgS?H+Hb1*et6RMPuURpB#pWf=NmpYW{qD=8e3+-X z;9W%HJ2l-OE^imUskql@dV%Trm8KQUTiZ7Y%PB}NIBUFr>Z@maOk;Oke(&VO(h##% tO31&@AY4XwhIXIQ5{X~`Tbk`ZFokKk3GvS{Tm^JDgQu&X%Q~loCIChOWu*WB diff --git a/editor/icons/icon_tween.svg b/editor/icons/icon_tween.svg new file mode 100644 index 0000000000..202dd9eb65 --- /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 919e13ad6bff334637f80074f852db9f6af168aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 383 zcmV-_0f7FAP)f2l1gd`4**zR1rMqc zQ^5;R0|7!+<@U%qsH$%Fb`Z2pQ#g)<@VniA=i7f~;E$5J2gBiTD@l@TRc(sMU5xQO zP1CozZ|VTn+K#I30~@M(WQ@7|bplnDq9`VSUAmr%NVhD@3+LSXj|oIXf#;R$HB~*f z)?U@Nkmq?D*r`Z&Pz#7Lz5?S4yI%>&^Stf7-_EjZ5JG4HBVYnN08`*Tgm4D4A$sq# zBuP5J9`HDeJq{tXvMd{T@3)OHsdMgj^)mq|ilR4L)v88wNL8B#KvkO+{-!Y|ttwss zfL?{)|1S0yK#cKJL~i&T&_b%Z`&01(;GBDJG#V!&(p@%1H`Hidndk$&hP*L002ovPDHLkV1iMeqQ?LL diff --git a/editor/icons/icon_unbone.svg b/editor/icons/icon_unbone.svg new file mode 100644 index 0000000000..06dfe67030 --- /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 9d7d55aa4603816b532e002a8ddcc2435c414809..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHi4oT^vI!PQML0&3V{>r*_jOr^~Ak zPEg(DeLchMgIwe?YZ0DrhBpuHna88J^|dqq+l5x1Rq`zr2ex~AO%B>MVGiS*dt5GN zlkP=TvomZyoM&suFhRyOMep+lb_Rv#HKpflvmOZ?TC$4!Wbw_J$}3g#5}#dG|HrGv zrr5I5bzS0N#l*#{^bFlfF74PC<8Z0_#I>{gPOMrbXCLfuaonVF{wJ|mpc@%HUHx3v IIVCg!0POcRy0Wujgpyrr?$t?=1R-%6WnFO5n>7wo0QJJd6`)l!Wt0j8OU0B zc)Hz6%T#54?H%_O4&QrQ`CO9yR(g2EuD68=SHAo5m + + + + + + + + + + + diff --git a/editor/icons/icon_uninstance.png b/editor/icons/icon_uninstance.png deleted file mode 100644 index de8b2f9a40509e66becf786bd48b53d38e3b8750..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 525 zcmV+o0`mQdP)PrG5QV>PPl7c5 zSy?!<@s#5Q3l!xXk%e;xxB(l)5jaJz0C8lCYXlao%v7%s-q?~g3*`1R3wii81C!Q{8(% zNRnh_n~JJx@;oO_23VA3dA!|jkATkrNs?TN2(|(2fV23#0A?aGNz-)K>-DVnei~~N z;C=&DHNY$2R#iv9wTN6UmrIN>gb?=D+IzC?znVoPh{zY<6!;FjS5-3}j{%H`?5(vQ zBV>NJg$B28fOo(*;2iiWB0*JWks%?30kAR+Zr_N=G|D*xZh@D;hX|gB5Z?6r{Z+Ty z{lh?27jg1JL?+I;XTYxzf&pGcCZ{4&02D>RXf*nJNU9nD%CbC8)6}cUz}RaJH4Yv3|YK9BN3(-sy0ola-wy-)W0{gJB9fobh_oSZ+r8{?c~ zx7$5WlH_O8Rn~6TnjePE^PDWpR^IzT&7|IQ2w~9g_a6lx{I*3=9K`(wSjNY{moM3t P00000NkvXXu0mjf%mm@y diff --git a/editor/icons/icon_unlock.png b/editor/icons/icon_unlock.png deleted file mode 100644 index d314aa46fefd3574157d78e826abd94c42f2111d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_;JzX3_ zEPB^YILmp+L7?@1jta-4gIs07jR`>wyb(>M72?b$3igS^0i@}RsJdrsiO&RZsn$3Uhddof+=nV!>S3j3^ HP6 + + + + + + diff --git a/editor/icons/icon_up.png b/editor/icons/icon_up.png deleted file mode 100644 index 346c4cdba8b46b099c70eab411b052bab4de2244..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE(|^(n6#=~11Q2-;1OBO zz`!jG!i)^F=12eq*-JcqUD+S7F^efmN1D7?2o!Sjba4!^IGtSc;Q=GFYC~tElfe(( zAN)sCBtOWr&(>i6C#>0awc)?ZF0R##|2sLh{}1V96*I9@mb-4icdq3~lY3ub#uHYC YkZRsN0zdA50-DI+>FVdQ&MBb@0KvmG-T(jq diff --git a/editor/icons/icon_updown.png b/editor/icons/icon_updown.png deleted file mode 100644 index 3141dc56ae3c44688d5f4d5da1d1791fe31a4c5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP>{XE z)7O>#0UHM|2cvqD>jI!qu&0Y-h{fsTnhy^cndLsndl^3pI^fchR$>;&_D4O4XEo#h z&Js~aeF4^p4IPG$HuO%s;-JFSBh_Fl_HXi}HJOiC-E3Y-cJea2CGn;yT{4@qj)@^8 WjpvA?%Qiuv@eH1>elF{r5}E)kFf!r* diff --git a/editor/icons/icon_uv.png b/editor/icons/icon_uv.png deleted file mode 100644 index f5d901ab915fd5e4e763e0d1235b70b1a82c9f2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`VJzX3_ zEPCJe+vXi|5NNfp?pgDo@6shNy$52Pi@s`RSUR~J4LqcI=Tk9vhwA?=9eE3H-8G3j z>8qmbRdM!AwN$M!bH43bh6Ss%*e9gktpCU3{!9D;o38X zK#`|*^&Ai8oc>*E;NVhrfHz`Gt~KMc1GasSo7rO+U+wyrGwa#v(|U3XrtD&_esEY~ zGvl!XdcK!uv*+x-+;{Dkv;AkTrUfr + + + + diff --git a/editor/icons/icon_v_box_container.png b/editor/icons/icon_v_box_container.png deleted file mode 100644 index 4d9bdb67b8da396eaa6b6679257df2dc5d4c9ec6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^Fo-U3d z7QIg=81gj*2)Nw;SHPHaQ23(L(y#WDWe(iPINP}3n6!aef`-XY>7_}#?!K8lm* + + + + diff --git a/editor/icons/icon_v_button_array.png b/editor/icons/icon_v_button_array.png deleted file mode 100644 index 996475ffa48228d19f9849f8991fab255d769ab3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_qJzX3_ zEPA(2+RMinDAKZj^X!0Mm6CByE^CcUUNHJ4=*v>5EE9B`KBa{zGCB(|db0 z)s2hK&nbR5e}+uWT$!4`OD1kV_IJNAm^6mW`kD1T`#{P2=^+tJj1SsM z7 + + + + + diff --git a/editor/icons/icon_v_scroll_bar.png b/editor/icons/icon_v_scroll_bar.png deleted file mode 100644 index edd6d4cd677b9c7f990ce0b0ab324ca6f8da10e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 416 zcmV;R0bl-!P)Ltz-kfA5D57LHYomL_gf6J1DbCRH7rbQAR#VC+aD zv6k5-k#_YT7&=ig+L(K45o!1yi_7V8i {_kQp5%X@=A%HogXR()QkJ;Cr7`L~F2 zI8-=&4Y>HPH&tKF5)F@=1V1Iwcu7fPRO6m50FXvJVA@OtK359z%`hllTnAUvn3aKh zVB|XhlFf#LOWObk?fUvbyS| + + + + diff --git a/editor/icons/icon_v_separator.png b/editor/icons/icon_v_separator.png deleted file mode 100644 index f0122d197feb6db30429f34c0df842c3fefe0ce4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`Uo-U3d z7QM*{3sfV1)t&vn^!@ce$CtNt26?mHV-S;IzPbKllVZ;ek>p_G4{;J~Y!6tKRaAp` Z7(S|qif>ge^8p&c;OXk;vd$@?2>_!gDRTe- diff --git a/editor/icons/icon_v_separator.svg b/editor/icons/icon_v_separator.svg new file mode 100644 index 0000000000..b12bbd1ca6 --- /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 d9c0bb00d913c13f1dc1a9790f35c45f406672d8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^DJzX3_ zEP9Vlw&gnHAkvcFq_Xy-O%;>2p!V8gwY6)+R%g6qJQKRbXHSE*m{v~Rgm%s!rQGk& zN~c9EQ0I|vH=1Al%ERei_QsiO&M`b#^@l0rSDfaxmqp)hb~-Wo=Q17<5}IV)-8?Z> zW6zBx&m4l-UZ}nBl1~-;`0!@<@{PN9U$MG>O5xbzCZPovFRbn?liSKuckqhS^`{4A q{=^@ca&Y_p3yKGtCj7E8{>+jWXJ*IjeCj69(F~rhelF{r5}E+ECuOq$ diff --git a/editor/icons/icon_v_slider.svg b/editor/icons/icon_v_slider.svg new file mode 100644 index 0000000000..c016ebd814 --- /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 23093e334fac01ff17457cf8863ed1166e073246..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_qJY5_^ zEPB^YG8AfZ;Bk$Ykh0zw>YuVQB%+wrYvX0<6O3g#4Y!y*dFM4maPXXCX!^DL?vwq0 zZtDEeVBGQSrJJjA>r;>TWvl+xJ-nyW5cI|9AkPM&i5v&k=`+}*t0&)C<{=Wn93i}{ zEK4Av%fh6x>K7M~X0cR|;&FU(bF;WdtA2^5Y>D(bJ^#Y}_3H5- W9Vdp0elrL9iow&>&t;ucLK6VKt#Azh diff --git a/editor/icons/icon_v_split_container.svg b/editor/icons/icon_v_split_container.svg new file mode 100644 index 0000000000..d038edccc9 --- /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 af7590345edd8ea1095a21293cab0ebd6fd32d14..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_OJY5_^ zEPCHg+{=5&K&0ipj>|_QMw5?n2Q(s?cZmcTy1O-s-ck2;+u%}~nbUHhrAcVtv7@zh z_EiVwuTSJi%uG|C#M>asQ1Sle_q~&hytvYY+l)RtZA)>jHKC^PUJ-mq7E!WG7bC8y6wd7SHhoz$~-N%1;6_mfYT i`@cUCuJP_~vd_T=yG?W56~ln8W$<+Mb6Mw<&;$VLiC$3v diff --git a/editor/icons/icon_variant.svg b/editor/icons/icon_variant.svg new file mode 100644 index 0000000000..32f72b1ce6 --- /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 8dba948daff99ee45a557cddc56bf011549a64cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tDvR!GD=fs@c^Tn=`GwR+aCL~+{;vFBSH=ev0opX!3hV8)K4R0&gX&8TgzxThSL`mn> zo=2>1%i(5zzEzeAhhh2)7Cpo17ZUHx3vIVCg! E0BT-SQUCw| diff --git a/editor/icons/icon_vector.svg b/editor/icons/icon_vector.svg new file mode 100644 index 0000000000..dda46edeaa --- /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 f84052cda018d14478762f47815b95ad9081aecc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!3HF=pW8M9DYhhUcNd2LAh=-f^2tCEeNPw1 z5RHk+2@BM2eAIgUzb{M#+L&k=+eR3=B~$Tq+B8 SKbQ;D%HZkh=d#Wzp$P!u_a&A9 diff --git a/editor/icons/icon_vector2.svg b/editor/icons/icon_vector2.svg new file mode 100644 index 0000000000..ab92e7bb60 --- /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 c404218911859b647267f2852192f7171e1b435d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt@&JzX3_ zEPAg_GUPjCz~j1qZqHN;4)X+F_XcK#8l_{Wjz3hAjcjDq?2Y8gy5)3vWBtZQ|39Zh zvW4kOnJs!HdLU2hjcdh~*Yp9W3M3V^=(rHSs8pgzq8J`*%^Fm`x$dH?zA$!kDIJJR+Te|HnfZ1oKkU + + + + + + diff --git a/editor/icons/icon_vehicle_wheel.png b/editor/icons/icon_vehicle_wheel.png deleted file mode 100644 index 23299a0425b6db7defc57b67c5a9946f4ca239fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 537 zcmV+!0_OdRP)bf^^S&Unyd|gV{oi@hR}aC4~h5#rV3A z)`97SJDls!>1t6FuVl6{oD%?Kb{!yGTzo2=n;%wA#691+PJkyxFXzVa5H + + + + + diff --git a/editor/icons/icon_video_player.png b/editor/icons/icon_video_player.png deleted file mode 100644 index 0d5dc0ed731bd586ce0ac9aa6d9319a1ef6ea0e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt`3JY5_^ zEPB^Y(iJ-7z|*?_%@?MlOzH;}0wU^IT&E`&^gX(+E7kbQ$Diry6mACtR%Y2 + + + + + + diff --git a/editor/icons/icon_video_stream_theora.png b/editor/icons/icon_video_stream_theora.png deleted file mode 100644 index 3f019f9b614e79c411e93c38da3c3d27f8c25949..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 925 zcmV;O17iG%P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L04^f{04^f|c%?sf00007bV*G`2ipt? z10gQvW+m4E00SLKL_t(I%axLANK|dmzkMWQC0QTOS2g=01%CYvV!|KD2f6AXliN-TVaW) zwJZ<6=5pC=Cr{P3iUKb%W(CJ_At5jtjR1hu)YMOkib{Sc+vTL&edlQ+(5rdoyXazT z^=SYsX_=MLxCnz@hlI&~)Q|5(o8=h0>)%dpGA)fyGoSWx zEC`?h064?O&GkcT%6)&$X$TBfFbwR5Xa<6k8ACz}-iT{aJz0gbZb_rDV_igNhm zv-!m*P8WVR_DGHX;~J}Doc;rJx*-Aqw}r3K5_ca{Vk~&_W2rWQDe+UrK(t>8M73T2 z_8|bB(3h=K0p!m1YonvE#;)OBGe7Z|Q@wEdjv{yFCwQ3|ZXpJ*q#W?%V=+26Wo0Gi zvoBWu38NUmfLq4Uv`l^XUNGs&oq)ib z&YU~<BQ8xvsQ~P_SUAuI-k;=QL70(Y)*K0-AbW|YuPgg4CP5Yp(FyTv`+=q~dAc};Se#xu zX=4_XqloMI+p*ktQ>E+=_Y1hF_$q{6S|Z>h$+F)`yLEz5tE-(tg0d#lze^jg>9?Nw z6>}`Kuq`o7?)$x&)#)yQ?=n5tyeL|J{R+b-s}t|{nh5GF6Ivl$`%T3;D+C|E!DBVHoG%y%YV(hvw-2p-sxJ+4s0IXJ$H+ocVA~s z*nVrmGu@;cDjKYz4O=cJS=6ulcK9f_XI;-}(Y}PpH^x!g{`J9=8UFCt`K^<)5cJBxo1#GJ}Zhf|&ZyJw^QhkF$!lB7&c@J;1G%N{r znUnjzZAr(`vXhqaj4$@ySCMtwe=SPg^Ka#Zl6dn!Pjjwyz5l~(FWk|w^qN(#*V?Vh t2Fy8(In$?Ha=lcy!SJ?T_Vv0p_BpCX{mgQ;Za`-+c)I$ztaD0e0suOSOI!c| diff --git a/editor/icons/icon_viewport.svg b/editor/icons/icon_viewport.svg new file mode 100644 index 0000000000..4c3069adc2 --- /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 c70dee36988740e59a2100bad26ff63d04a95fb2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 284 zcmV+%0ptFOP)so${EWLMOi@WOwgIt`cKqz1 z*QAx^wW65#h9~(>?z{KFj}d@_Jr7lMtZbYp^bVj+}dLwh+ST~f~p3H3HSGtyRcYN6TB5_G@I`|8kw?S;0000 + + + + diff --git a/editor/icons/icon_viewport_sprite.png b/editor/icons/icon_viewport_sprite.png deleted file mode 100644 index 9aefb471d6c714995fe2fea26fda82b0632162f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^jJY5_^ zEP9VlJk8q_AmDmlphs*W_v-^p3s^QXdM#pD(CVIXz-a*o=lsIOYE8$!|2eXI&Kb*{ zlN;;Z8M;1+tn%Voqr211WwJ%gRJ(>%OPaR#FFty)?c6H81PS8=Zil>E_qP6;`Z4BU zW?IvoEq@ogoqr~8zT@Wo)SB>{ic$9rjSrSQ4BhvwRc-aI17cb}+nKX=%u!gxd3eUt mWp{6IOxeih8*}@gTKWM$=bf)_ECV{1fx*+&&t;ucLK6VlrDZn& diff --git a/editor/icons/icon_viewport_sprite.svg b/editor/icons/icon_viewport_sprite.svg new file mode 100644 index 0000000000..2c8c356102 --- /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 ae744cc4074b61de36a39f5289a83cd6b7f32fab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^LJY5_^ zEP9Vly2#07DBz+lemdZW)f1fqUO|&tBbu+~%&55b@Q32O2bFP39iMl8NQ=M0@ZXPt zVbX7bLynhradACV(wupdlOe#%a`K&Pd8OayrAV@?tj~SqzbuV}56U`tI*2jpuuq4SLun1@(ONC + + + + diff --git a/editor/icons/icon_visibility_area.png b/editor/icons/icon_visibility_area.png deleted file mode 100644 index f3ca05711bd029e7af160b16a95cb84f2d99c8a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 422 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg)78W*bizxV>8)*Lk;pV`^zU|G}3 rf`csnE#e8=CUZ$#*NJioEMsF3Ep>u6{1-oD!M<{K}fX diff --git a/editor/icons/icon_visibility_enabler.png b/editor/icons/icon_visibility_enabler.png deleted file mode 100644 index 66dffd34837746507a87bb45bdccdfbc8fe82b9e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 549 zcmV+=0^0qFP)vFadBDsiqIk`R;JdmP%geVkJm;SC+zY3K z0rb)|WQBn^cKsTTa|ez$YHe+(>wWB`2bfJD3HThO^<1No+8!?(bVTh>wR$ahzvbW= zW|P1$W@j;*bk02uBO{+WD=RlnSODm(u1>fR-e5L@R7a{rQS=JHOC^)$Wp){81nG9Z zT>h{>Knn|JLZR?QW@AY8$n3hs@%CXQEiIk*x!e|J7lEIV_v4l%tpR{up)hM^W4laM ztX$sirRjZO84w{PHZ}F4m!@;T25_ktMYF)X18`=KGNtU=z;j>}C}Oq@5Dg8z%yM~0JyxHB17o^%jh>MHo{NUhMVAP~6?gjlOx@ZIi5pomnDI-PNwnQ0uXv0A<9%w7Y-NOjESGS9x%x`%U5fFjTea3>$f z@AobA(lq4D<+s8667XYhRU5wD-tq1B4$iFuMT75I^FLo=K1tq1-d_n)1!)thxpy{$ n^w@cSHB-)T>d(}V`(OAAOa$ag@N3~X00000NkvXXu0mjfT9f-R diff --git a/editor/icons/icon_visibility_enabler.svg b/editor/icons/icon_visibility_enabler.svg new file mode 100644 index 0000000000..3aa4c6d73f --- /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 e198b9785bec08810d344d8e5206f834312f0bdf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 550 zcmV+>0@?kEP)N@H`W>c0Jy!SDYs`YiLwM_0R>*8)Lq}bRV;`zJZNlq`g&6{ z$)0VAaub*bCV)v`9^r=FV_()b&5<1z0PZz3tJo*NG|&dE{4ib(*JL9PrKpJSfDK}F*A^t#8?U6YahBS%pzOAY&v1bvp0CK%g?k3>m zV!?YpuuyH7U}?d7if~HcJuoXGbrIVUu^o^akVbeHlmGb=OL_0v*TBsZh818N_|`w$ os$B7{dpO=4*RFr2QP}^gUwj$8Qz(C=&;S4c07*qoM6N<$f;1=du>b%7 diff --git a/editor/icons/icon_visibility_enabler_2d.svg b/editor/icons/icon_visibility_enabler_2d.svg new file mode 100644 index 0000000000..15b54c0ba0 --- /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 624122fb4c2aff21e2b4fe00b9d6e4cb877512c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 427 zcmV;c0aX5pP)q|Nq#NT0S zX!=A<;@2$1S#f?w)(vHrz+BqYR!sFNEAJOnmg$TXyo(jA~MoS@7APkQ? z0szuVWztxC0F1O5zIV + + + + + + diff --git a/editor/icons/icon_visibility_notifier_2d.png b/editor/icons/icon_visibility_notifier_2d.png deleted file mode 100644 index f904223edff074b68ffaa739b8fb793699ab38c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 431 zcmV;g0Z{&lP)&>)` z*vD9M?M*3a0aRC`d$9um1#I_)Zd_>Jw(qf@f@f^)58Z)0`Z*u{2f6vw7ski36#&UK z(ACXCT^j@xK;z8Cq?i4?vCIWoxKw?uU!youzxjL`zsPg7fk{xu<{cEiDW~8dd$m;# zPlf^j>aF;>92^-x8!&t+hZ~z^{dg1r@ZqZ`i$StOpfz9~k=vXjA17nc!S=GcqeL6I ZegoQyg|1LJ#v1?t002ovPDHLkV1gMh&ENn4 diff --git a/editor/icons/icon_visibility_notifier_2d.svg b/editor/icons/icon_visibility_notifier_2d.svg new file mode 100644 index 0000000000..e7eac0c715 --- /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 4e79dd324559b3a993369d569726defa5f58b57e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 497 zcmV73iI z$vLo96vbLm6l-R7A2>9#OTfo0%dY;BAkXu&RaJchx^wyacGK>fQWy=N>M0Fz@1ju@4xsfEv@uJgcG`dh#)fY2c2lB~e((CnlKj)FsG`%h&AAnUL zSJj>7<{${}1VQk;CQnuMX1Ck@G*7S~a!o{D0i7i^q^i2zkWUBzjK|~EvMl=|vIT6^ n@PV1V3BzzVilXTf@l%@LZ{)BPn6%9k00000NkvXXu0mjfRO;i~ diff --git a/editor/icons/icon_visible.svg b/editor/icons/icon_visible.svg new file mode 100644 index 0000000000..faa0eabb03 --- /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 355d3c03c394ce051f40e16fd00d96ba34611718..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 386 zcmV-|0e$|7P)6xP}<@SN25MPw`@ZuJJ?@dYrQPP^9Hd2_}&XR>CoMhIc2j`KXvx3Km%tbL@~igV7SaaC1ARlNerx>oOO zw2&fQZelBf1T$mI@K=KQe0~_i1%NT;0+<1%s$QqFmKKB%UgP2ofU3T1lGI87EL8P& gxm;ehSU67$-x1Vu&9X_ + + + + + diff --git a/editor/icons/icon_visual_shader_port.png b/editor/icons/icon_visual_shader_port.png deleted file mode 100644 index 27daedbdd00ba452c16e42bc5aa0028cb4269896..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^AT}2V8<6ZZI=>f4u_bxCyDx?@pN$v zk(k;#!I0~agMjP(cT!B7TE#skUb=RSyF$>>rfKco2aI2I%DNJgUo&oc!V)bp>Ff;^ zf#jzBvmWlB$sf;X@qFC@9~U#vNj4G_vK%tMDJUIZwdz~utbMx|ypxq$dPT2mQTnvh z(}5SFy01wktedjS`ng}_JpX!!WS(nLk1X=`=Eh#1zVJn0ZKEQ~p6?>Ai~-E)Yrk?O zTw>k({p}B-iKW|D)s+ZLbdH?XT{r*jap`)l{|ro3uDjl?Pgx9fKZB>MpUXO@geCwv CY-tbx diff --git a/editor/icons/icon_visual_shader_port.svg b/editor/icons/icon_visual_shader_port.svg new file mode 100644 index 0000000000..0f5d00dbc4 --- /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 2ce013cb033942c624d22c2935b646f1ffc3cead..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4CP5Z6OB)vVOF*IJo-U3d7N?g^ zJ}7utfrsV0&C8Cq5DtIwMQtIIKb?4RkVQt_vVO+F-IIC)CjFV*YhSD>;I;6Nr@|D$ z!ZrJaz8Ey@)>rNKFK`L)s`T`kxn!Db&xaY2>bGSrlngeneDZ~J=@j7-^{i%4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1StJzX3_ zEPCHwUdY$%Ai{c)dC9>A2EH%;|Cf?D(2#v8DNIoACQI{!U31MPx5va39t~?5)vk)9AKXD!IMv(l|g9@gQo69u_ZtS44$rjF6*2Ung9zJ7_a~U diff --git a/editor/icons/icon_vsplitter.png b/editor/icons/icon_vsplitter.png deleted file mode 100644 index 56fb20bc3ff53a2058f230cd64fded7604f7c4ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^4nWMo!3HEflYZU@Qfx`y?k)`fL2$v|<&%LT`kpS1 zAs(G?&p9$OC@?T>JS@^?v~FQeqwW($Z-W)TW-;XGC$#CWm-Vb(A|5JQ%2>CIm1V-D R&SIce22WQ%mvv4FO#rW@Bu4-M diff --git a/editor/icons/icon_vu_db.png b/editor/icons/icon_vu_db.png deleted file mode 100644 index 405a929e2a3fff6c53747603c7b06652926d1219..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1015 zcmV3J@?RM*08%02y>e zSad^gZEa<4bO1wgWnpw>WFU8GbZ8()Nlj2!fese{00Uo1L_t(|+U?p+h#XZA2k_tc zLD=Z(x=~#GKm`v9<`i@Aq#z!|oFXEKsJNbtNe+qxMa(hB2!aaYK|P2dsGuT7Btbny z4F)4d^bilpK_$Dw#zcgShp8dGZBNe!{d$t{{xI}=uXeVpt6slx3JVlvOJxgm3ZFV0#SJmOG3Kpq!Ve?fo5$1mpdi~9YqNN^;=4uJ zzDbo`htKg(T<4qEgc%u`j&pXLv*WWmJFZ*L*>TQ}Gcp}#Oa-G*?!%EiC&4hv-H5O8 zRvXqRQ|oHz~FK|c94>c8P4O%Z#?i+ZdApa}nlUGr0cL-56hEXXu z*}*m{<>r$$vtdRuJcz^iJ5ItoOY*IHh0N2b-1??oop1&Z;aEYo8NcB6MCslttik;_ zSXlcilxVF+@MkF?S;EVDwZMbekdh5A!%nL!o-23?m&9K9Hnk;YBQ)#da70StdLl)A zU^lM9Pp!;`8Rs>s63|T%vY(3U zrc^f{lz{$$dxI(O!|y4M;sv}Kfyug(>{#iII@Mopu!Jbx+>I~sBEH9GO;%B)aYqgUK zp2I7Jd8?gN9sH_S8LvX}PO7`Y)Pw55$vdguj>xDA$vdg~ozYcf(@H1R7Q9oj-byEx l$b9b^v3`&{sWLJ~!hiOUME&b=q#FPL002ovPDHLkV1nj=*d_n~ diff --git a/editor/icons/icon_vu_empty.png b/editor/icons/icon_vu_empty.png deleted file mode 100644 index b749e1f2cae2fc82a5158a57e08e6c4e9c52827d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 283 zcmV+$0p$LPP)T|8c&@%(m+y_JnH0$Sc;V6X|Ox{;~(j-ePA=P9e=Y diff --git a/editor/icons/icon_vu_empty.svg b/editor/icons/icon_vu_empty.svg new file mode 100644 index 0000000000..76bb913e38 --- /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 cb2b30d397d2578a904b225785eccd4f64587d73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^4M5Do!3HGVjA5L~c#`DCETR8JSj z5RcBceH#T28HhOF|L=a5DN#8q?1N0^jYc1bvpy-zRozVNPCRx}1&yW8e{b8Da`Ky1 zuCJ6#soF!1%Wo|Vp3hU~e*5}v(X_J3-zT53+5JU7zsj$&;lQG$Gw(6ID{ubs!07y( ze$V-t-1CmCFW<`;)3 + + + + + + + + + + + diff --git a/editor/icons/icon_wait_no_preview.png b/editor/icons/icon_wait_no_preview.png deleted file mode 100644 index 5d20cd99ece8ad40b588346c38d01c3a5556ca72..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1041 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 diff --git a/editor/icons/icon_wait_preview_3.png b/editor/icons/icon_wait_preview_3.png deleted file mode 100644 index 2775d1ef43c79d312ed9fdaa496613a9f3c90259..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1190 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 FV1m#ICG`LR diff --git a/editor/icons/icon_wait_preview_6.png b/editor/icons/icon_wait_preview_6.png deleted file mode 100644 index 307e4123108af0693beccf37d6d890a605455d94..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1278 zcmVWFU8GbZ8()Nlj2>E@cM*00d%5L_t(|+U=UjZX9J4 zg}+m7z<7v<#BqR#AOrz>#R7yPmat-h#PkF#kPu?aGawYPVZ$4+fR_M)B~X9`a%>!i zm5CD|o$AIeHKXm z=ZJKD5Wds~B>YSWkQQO61ehLF^qmv|##48{IgA24cv6aBPXgFZB;~n-BLx-H5uho_ zd2J*;EItOz*dEQfZW2O_rVksMkl!)AJ4^i+uf!^t=pUr;*-EwkRJ^p zYPPRQ+RTx9>TvyO;A!A=rh5pe1A9QDv>Fg0wij<74)X0BJ_kHwd#0r6aRzu6m`~M? z2f~jguqCNcdJ&Yg3v2*)QjUzoT{s6U*q$wz{4B5#_LEEzy$!5O+U{Eykn|7m2e2D9 zlzN>97K;)g>?{U(W!BpPev|Zf-`k+18^ASSJL6PRln5#E^M{b%2G+t4`Yu3-umSuM z&SWclPagJl;25FhQg`ka59U7E`}Y)?@K3Nr~pTZupW-@b!cNRY^;|}zO=u@ zQt7ZCj&J3#F%>q($|7GXY|lhK_hMtBtjV%Mg=1=f?eo#nPDLKp;!4lrI-;0;SztQ7 zdCX6msp}xFdW`B@lGgHefizLwCpS|W-*dOYX=BRvCEG8@-lD&QP%q?x4`}^&53mG$ zB#i<~bdb zy9=a5xRUc^Mzer)*tK1!bx!agubo;C4%8$6^57t|8+A?}?w*LfKo0^89D@?zPG){+ o4x0e`!!E!M6)IGyP+{=+55%?gn)(F2^Z)<=07*qoM6N<$f=zNT)&Kwi diff --git a/editor/icons/icon_wait_preview_7.png b/editor/icons/icon_wait_preview_7.png deleted file mode 100644 index b0edc94d93cf9077a302698b07f26cbdba8392e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1192 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 + + + + diff --git a/editor/icons/icon_window_dialog.png b/editor/icons/icon_window_dialog.png deleted file mode 100644 index 8591b1561338710f3281f91786048490c1fd9d62..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_&o-U3d z7QJu#HVQU5h_HT-WuL(%Iy0%|<5d+_3l)iIfg=|f&$k#}khC#SELd!BUjJSGPY1)S zhjp7`r29JK@~z|ep1U*5c#^#;CUt2;Oc1ZYv+p)vPjBD&)kbXPIi;%A>lU5zYJH!5 u`VVt8*B9wK??gAqhPzq$D&|@IIw^eWw4#u1Gj|KnAq<|belF{r5}E+_f=b2! diff --git a/editor/icons/icon_window_dialog.svg b/editor/icons/icon_window_dialog.svg new file mode 100644 index 0000000000..2b450dee33 --- /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 d54b979cad2cd6bdffcc5709308efdd2a5a9e729..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_eJzX3_ zEPAg_+Q`df$m6;{e_{%I0=K|s8D3UhtH4w-l>{ai<~IWA6ODb9_?|pzD&c+iDc3&w zALBo*89$GmxxVn)pA#=!UDWPyE_isjdcWEtu>&?<{7OZ~W?a@dP+hOED0kVq&DY*- zYOwej5i>O-wa2plwXe^%rD+TT6ML7bi>DyYnZ?Gi z=zQ$L%KWu^GdlbGMVumzW$Q00VSi9`cJdK!H3I_{(<1dLK<6`fy85}Sb4q9e0CZzv AqyPW_ diff --git a/editor/icons/icon_world.svg b/editor/icons/icon_world.svg new file mode 100644 index 0000000000..4ea501e194 --- /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 ebe54262ff2349b6484b94b37fbf22cd8f5549ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmV-O0k{5%P)JRjerBdEvmot zx9jc$==FLtU97*joO*f08=t$ZJ&K9*@wS5gxr6fuAfKxLYGEZO!*pPJVy+3Z6 aZ`3C>b!c-lt&1T50000 + + + + diff --git a/editor/icons/icon_world_environment.png b/editor/icons/icon_world_environment.png deleted file mode 100644 index 230d6601076e6c0b404276fea4cb0b34f13c2949..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 534 zcmV+x0_pvUP)fDL52Gbf{UJ`UmJAP_-7EYpIQsHs5y~@=aQ63qtR5dH210xc8j%;E-K&0L?-IaDMJ#-zhYkZ~g)3&&^%O zeu*StNiZQO4LbR4SOKQ6jeTPXqT$$CvG@fj8}4C$l=L3Bo#QXqz6hL?^bot3B*|&j zYU=?YmP+k>?4@G8{y2nC1vZl`TTHTS5!ehNREv$qBcO{^i7~bTLcZITLGlv-V!Qw> ztJT_8tF;X*=e3t77tkxz>qkRgSVeM-@otQHv!9D-QggF zcY_ozm72}xgzy?DCoxVZS$5S>A%wSuM&m^S(}Nk*-CsugKJeiH8P7|4uv^9*Bc*8- zc$FKeD;WRFNcLx>$$gD90-2q?hBS{<$>sfjD-Xk+&avDilhK~YiCRJGh7g|Z{Y;0B YKh5OlF0A5--v9sr07*qoM6N<$g7=m4FaQ7m diff --git a/editor/icons/icon_world_environment.svg b/editor/icons/icon_world_environment.svg new file mode 100644 index 0000000000..823c6401be --- /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 585956983cd3a47adb53f834da91fd95d802215f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_$JzX3_ zEP9Vla^!0=5ODo(!r^XQ!16#wC!*xwA=c*?BwE!(7$yEJ#gTe~DWM4fVqIL0 diff --git a/editor/icons/icon_y_sort.svg b/editor/icons/icon_y_sort.svg new file mode 100644 index 0000000000..6ad296ba54 --- /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 e95cf2bd788e850e55af648606ca6a0a1d67baa7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 410 zcmV;L0cHM)P)% z!Mufvy`|vg1++6DWRq-2At-i&ATv7_?uN~>CPDvZXO{Ed&cHvR(w9!Bv!RsQ1(twM z;1Q^c$Q?i!h7o{>=!D}ZhiE5K&J<_)`|>zz20oL!T=}!J^)y2x3dGr znEpQz(P?*xpRwI;uW7BX_*r7j^Stv!P$_i;OaNOVa+x*gM-IdA7})-RLkY^ zYhDFJ4Qvd(}07*qoM6N<$ Eg0lUwHUIzs diff --git a/editor/icons/icon_zoom.svg b/editor/icons/icon_zoom.svg new file mode 100644 index 0000000000..2b355574a0 --- /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 fd8ef9075e41f33f9cc65133c0d11a343234bae2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt^$o-U3d z7QM*{60FSp5|R=U5^{DmE53ezA1@bVVq|PwKXLl>{l^X+IB?*@|Ns9heSCb + + + + diff --git a/editor/icons/icon_zoom_more.png b/editor/icons/icon_zoom_more.png deleted file mode 100644 index 8e818db1ee32c7416bd8bc717a2db00ac494982d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_0JzX3_ zEPCHgROCD4AmVaAUu&9)$`VuU>qUGl*B_Qx=rv_+(%!d1xnkPPhr5-XXyvF|6+Dv__fcT>GvUrStrh&+nLL&pcHy8 z(vH{nV0OclON=-6#CEJ{xP16s(Yfu{|GZ2O58Wzx{3BCBPh@oV`ry4!_iwOSutLB| e-06kaTx;c*rkA%(E6D>ol)=;0&t;ucLK6U<&|+5r diff --git a/editor/icons/icon_zoom_more.svg b/editor/icons/icon_zoom_more.svg new file mode 100644 index 0000000000..3cf2c7fbb1 --- /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 fa8a9d197e21679ae89797514bd42013495062d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 430 zcmV;f0a5;mP)6_1S5*>60}&D#fL&_NtepXF0F-FSSc0~ zf0DhO*jQT#Qwf4Ftn)TlWYH9bZjnw!9e?e%-BEX(D1JU)WcGhQy2(RPqjHchh?LRh4fjsrkhmTzN>b6^|T zjxo+{f9j0#F~&HTbQ^dSW1JU7@$Rex+l{0exc9f_JJ5CvzH)l04{ZOIbYS~i-)R4g YKk>$P-9&}VApigX07*qoM6N<$f}iul*8l(j diff --git a/editor/icons/icon_zoom_reset.svg b/editor/icons/icon_zoom_reset.svg new file mode 100644 index 0000000000..053092445a --- /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 54c93a45aa..0000000000 --- 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 3147d14dc1..0000000000 --- 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 6d2c03f4c5..0000000000 --- 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 897f63c268..0000000000 --- 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 a920bf34ab..0000000000 --- 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 01c893fc56..0000000000 --- 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 65d71e86a0..0000000000 --- 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 5cd943e9e3..0000000000 --- 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 84bdb00505..0000000000 --- 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 1edd33dd85..0000000000 --- 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 cf55c55ab1..0000000000 --- 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 c0dc46448b..0000000000 --- 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 d21ba299b6..0000000000 --- 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 29604b9e14..0000000000 --- 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 b9d2bbbec0..0000000000 --- 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 ce9a66c5bc..0000000000 --- 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 852e985c4c..0000000000 --- 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 fb6c9d1c5c..0000000000 --- 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 c7e9018ac3..0000000000 --- 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 e29d7fe0d2..0000000000 --- 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 39e0d1f261..0000000000 --- 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 f0cf10a653..0000000000 --- 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 79715dd767..0000000000 --- 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 1dd209720f..0000000000 --- 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 43134ba1b1..0000000000 --- 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 053cbe6de5..0000000000 --- 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 cfa4feeca6..0000000000 --- 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 e11940cf53..0000000000 --- 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 80f7c2ce12..0000000000 --- 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 9f82b30c94..0000000000 --- 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 d19448efb0..0000000000 --- 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 6b10be040b..0000000000 --- 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 36ccd8bca2..0000000000 --- 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 f088c9e32d..0000000000 --- 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 371979345f..0000000000 --- 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 e6500ea249..0000000000 --- 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 fa5803489e..0000000000 --- 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 d16ad26e23..0000000000 --- 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 ef7b16dd06..0000000000 --- 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 a9be19b6d4..0000000000 --- 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 f6cbe3bc19..0000000000 --- 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 b24a167b8e..0000000000 --- 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 db9fcda6d4..0000000000 --- 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 10c8b745b6..0000000000 --- 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 fe517d9ff7..0000000000 --- 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 66dc37ecfc..0000000000 --- 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 55a776dd97..0000000000 --- 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 fd06442da1..0000000000 --- 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 3c75d71791..0000000000 --- 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 82b48c7004..0000000000 --- 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 2d9c5f4e6c..0000000000 --- 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 39149786c4..0000000000 --- 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 1858f8fe33..0000000000 --- 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 0724daa333..0000000000 --- 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 d4e1068ebf..0000000000 --- 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 dfaf25de01..0000000000 --- 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 17d83ed73f..0000000000 --- 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 ca07bca379..0000000000 --- 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 e4d435254d..0000000000 --- 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 d854378f12..0000000000 --- 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 2dc7c39621..0000000000 --- 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 5c1ad9139a..0000000000 --- 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 70749923d5..0000000000 --- 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 64d2aeec83..0000000000 --- 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 c87902a336..0000000000 --- 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 5cb85c3c17..0000000000 --- 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 cdaab7e34a..0000000000 --- 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 9f429376fd..0000000000 --- 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 04aaf16ebc..0000000000 --- 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 813990bb42..0000000000 --- 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 0755a2695b..0000000000 --- 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 40577a1a77..0000000000 --- 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 7f2fd22560..0000000000 --- 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 f095b169ca..0000000000 --- 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 d1433634df..0000000000 --- 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 55d4aa698d..0000000000 --- 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 1be8c0f984..0000000000 --- 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 d15a9a71b7..0000000000 --- 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 ce8fd4b7de..0000000000 --- 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 6d1d7e6bb1..0000000000 --- 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 84575ad388..0000000000 --- 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 794d832eea..0000000000 --- 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 8f8bd55f82..0000000000 --- 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 38975b3d25..0000000000 --- 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 dcc6e8c00f..0000000000 --- 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 13c6648368..0000000000 --- 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 31262f8494..0000000000 --- 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 1068b424bd..0000000000 --- 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 1dddc7bf43..0000000000 --- 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 56ac538672..0000000000 --- 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 326174e566..0000000000 --- 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 65b71ae860..0000000000 --- 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 a1c55e92de..0000000000 --- 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 29905795bd..0000000000 --- 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 41f20abb5f..0000000000 --- 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 066e3bc0fd..0000000000 --- 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 e0a750c946..0000000000 --- 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 c46f64b8ed..0000000000 --- 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 bbb05fc6b6..0000000000 --- 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 0efd276c50..0000000000 --- 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 4e4fb8cc1b..0000000000 --- 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 ff23cdba8d..0000000000 --- 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 f352c5552a..0000000000 --- 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 b0e0fe63ce..0000000000 --- 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 624105e5a8..0000000000 --- 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 4799deb1d5..0000000000 --- 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 52cdf7618e..0000000000 --- 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 15c8b481a1..0000000000 --- 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 5468312b4b..0000000000 --- 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 2d39efafee..0000000000 --- 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 675a9f5c43..0000000000 --- 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 d6c660bb2d..0000000000 --- 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 7a234b10ad..0000000000 --- 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 a4ba9a552a..0000000000 --- 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 93352dd3f5..0000000000 --- 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 0c34d13def..0000000000 --- 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 ea62c9457d..0000000000 --- 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 3212ce8538..0000000000 --- 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 716b6a2fd0..0000000000 --- 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 7092c78508..0000000000 --- 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 7e7e4f2b23..0000000000 --- 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 ef2d105bd8..0000000000 --- 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 a5b60846f4..0000000000 --- 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 9f4631cf31..0000000000 --- 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 d968ba3d09..0000000000 --- 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 886ef60fe0..0000000000 --- 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 3f58ed93b6..0000000000 --- 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 3aafa0340e..0000000000 --- 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 96fd44f3c8..0000000000 --- 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 b867a58f6f..0000000000 --- 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 3b55df7fba..0000000000 --- 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 abc93eb003..0000000000 --- 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 529553bbd3..0000000000 --- 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 4fd86b1233..0000000000 --- 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 1506b3e434..0000000000 --- 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 a58e08d950..0000000000 --- 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 34719e37de..0000000000 --- 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 66034968b2..0000000000 --- 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 15909df7c8..0000000000 --- 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 6d9a7dc959..0000000000 --- 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 8ab578e9a0..0000000000 --- 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 e3b6b64a4c..0000000000 --- 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 f40dd1eeb1..0000000000 --- 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 f695e96b8c..0000000000 --- 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 9dc033aa95..0000000000 --- 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 c68f906423..0000000000 --- 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 ae7a889a71..0000000000 --- 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 080aa755dc..0000000000 --- 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 d2b4d06e5f..0000000000 --- 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 b1cb456608..0000000000 --- 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 26003365bc..0000000000 --- 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 bf12810a6c..0000000000 --- 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 25ca0d6a11..0000000000 --- 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 5d9ccd5a7e..0000000000 --- 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 4dd9bb8c4b..0000000000 --- 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 20d11f8710..0000000000 --- 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 bbcd3f0c0a..0000000000 --- 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 54a37695ef..0000000000 --- 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 799d69c4e0..0000000000 --- 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 67c04c312a..0000000000 --- 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 76d7f54065..0000000000 --- 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 190458c532..0000000000 --- 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 dbec755039..0000000000 --- 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 4ae48b2fb6..0000000000 --- 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 b1d5544fc0..0000000000 --- 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 a40c0e3408..0000000000 --- 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 9f06172fef..0000000000 --- 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 6da05a6603..0000000000 --- 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 46795bef35..0000000000 --- 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 8ae55ad8b7..0000000000 --- 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 7f6516eb58..0000000000 --- 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 255d1801a9..0000000000 --- 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 473b69d060..0000000000 --- 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 17ed2a61e7..0000000000 --- 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 8ce7d48970..0000000000 --- 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 b9460de683..0000000000 --- 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 96d0f7e29c..0000000000 --- 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 013f1c7ba9..0000000000 --- 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 01c1dbb4d5..0000000000 --- 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 3f5f7da693..0000000000 --- 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 12d4b56897..0000000000 --- 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 084247937b..0000000000 --- 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 a3af269bee..0000000000 --- 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 82dad29aac..0000000000 --- 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 1e1f9b6e42..0000000000 --- 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 f01ba578da..0000000000 --- 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 48d90dd3c6..0000000000 --- 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 5be74f490d..0000000000 --- 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 7ae0f93ffc..0000000000 --- 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 ca16a5737f..0000000000 --- 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 818eaa2ba3..0000000000 --- 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 36567fe10c..0000000000 --- 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 392e2bda8e..0000000000 --- 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 9eae07c69b..0000000000 --- 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 f2b8cd9343..0000000000 --- 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 d803a5f63d..0000000000 --- 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 96fa62723c..0000000000 --- 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 485040c6dc..0000000000 --- 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 65202877a0..0000000000 --- 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 c42d6e1f76..0000000000 --- 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 3667cbc69b..0000000000 --- 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 a734095268..0000000000 --- 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 c333641249..0000000000 --- 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 8f90c4c91a..0000000000 --- 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 4ce1b3232f..0000000000 --- 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 efc48bb778..0000000000 --- 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 5ad8fc8253..0000000000 --- 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 63774a7431..0000000000 --- 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 6c3594cb1b..0000000000 --- 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 8d1c78ddd7..0000000000 --- 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 30d3ad96f6..0000000000 --- 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 265fb7279e..0000000000 --- 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 078b0ffe9e..0000000000 --- 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 a00e97a104..0000000000 --- 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 fdd3d3a9f4..0000000000 --- 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 359c86d61a..0000000000 --- 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 7a75ddba78..0000000000 --- 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 47b619d608..0000000000 --- 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 fcb54f9aa0..0000000000 --- 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 e5e5edea9c..0000000000 --- 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 d951a41832..0000000000 --- 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 89d000d7cb..0000000000 --- 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 440f83642c..0000000000 --- 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 77b80e920b..0000000000 --- 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 8994d8ce59..0000000000 --- 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 885b342a54..0000000000 --- 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 aa01e3ef2a..0000000000 --- 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 da7540ce86..0000000000 --- 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 aeb2626120..0000000000 --- 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 8bddf89b2d..0000000000 --- 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 1321766117..0000000000 --- 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 e7f6bd927f..0000000000 --- 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 2310938af5..0000000000 --- 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 c9b027ee2d..0000000000 --- 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 71fca83f3d..0000000000 --- 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 45fd97a671..0000000000 --- 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 45754c8a44..0000000000 --- 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 f1cdcd408c..0000000000 --- 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 0d141bc646..0000000000 --- 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 74dc1ba7e3..0000000000 --- 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 c3e59abd46..0000000000 --- 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 2d9288de14..0000000000 --- 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 a27578f196..0000000000 --- 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 83b831abd4..0000000000 --- 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 d05bebef48..0000000000 --- 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 a0a2f02af5..0000000000 --- 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 00249597a4..0000000000 --- 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 ccb4239784..0000000000 --- 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 90d811965b..0000000000 --- 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 f180dde93a..0000000000 --- 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 0dad9ee8b8..0000000000 --- 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 fbcee056b3..0000000000 --- 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 461299731d..0000000000 --- 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 b3e8a956da..0000000000 --- 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 9ca2df0ff1..0000000000 --- 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 f43141dd7c..0000000000 --- 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 456a9b8d4e..0000000000 --- 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 cc8517d2d1..0000000000 --- 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 ab914c0c64..0000000000 --- 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 1d504f02fb..0000000000 --- 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 767feac9d5..0000000000 --- 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 f81390f0f5..0000000000 --- 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 f24a630770..0000000000 --- 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 bb15e96251..0000000000 --- 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 39e88e592b..0000000000 --- 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 54bc4766d9..0000000000 --- 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 606236d82e..0000000000 --- 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 b5d142f968..0000000000 --- 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 f12e067e7a..0000000000 --- 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 a8c00bc43f..0000000000 --- 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 d4e7a9860a..0000000000 --- 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 7d8d5ef70d..0000000000 --- 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 7b1e4f2dd1..0000000000 --- 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 e2e2070449..0000000000 --- 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 068e79ace0..0000000000 --- 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 bfca46331b..0000000000 --- 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 16fc731c12..0000000000 --- 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 cbccff571a..0000000000 --- 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 227d22f911..0000000000 --- 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 943f6fe435..0000000000 --- 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 9313342a53..0000000000 --- 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 f6d4344807..0000000000 --- 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 fb84462919..0000000000 --- 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 f5d7b85381..0000000000 --- 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 10caa81968..0000000000 --- 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 b6407dc178..0000000000 --- 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 942245305c..0000000000 --- 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 62180cca5b..0000000000 --- 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 21780cc695..0000000000 --- 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 37de107284..0000000000 --- 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 a03798e4a4..0000000000 --- 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 6a4c8965ab..0000000000 --- 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 04f140b930..0000000000 --- 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 ac9b52be6f..0000000000 --- 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 4db0342041..0000000000 --- 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 27e07a649a..0000000000 --- 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 3558f3f2da..0000000000 --- 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 7f833f4a9c..0000000000 --- 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 ccd94b92ed..0000000000 --- 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 6a8ab39ef3..0000000000 --- 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 3872e43b29..0000000000 --- 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 569a0c6fea..0000000000 --- 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 f815cb842a..0000000000 --- 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 395a5c1b8a..0000000000 --- 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 140b073e83..0000000000 --- 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 fe7f648648..0000000000 --- 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 3733acb253..0000000000 --- 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 0fb48bb155..0000000000 --- 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 9d01bd5cf5..0000000000 --- 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 68a6971bd7..0000000000 --- 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 2e8e5a6457..0000000000 --- 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 e03905ed05..0000000000 --- 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 d8335641f6..0000000000 --- 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 c387b1845b..0000000000 --- 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 f192c19959..0000000000 --- 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 9d71248cba..0000000000 --- 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 76a6ec97bd..0000000000 --- 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 f9c8cadb34..0000000000 --- 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 eacf2cdc9d..0000000000 --- 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 9cfbf2d502..0000000000 --- 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 f3c33a37b1..0000000000 --- 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 51e6447eb2..0000000000 --- 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 b908a4db6e..0000000000 --- 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 ebfd505bea..0000000000 --- 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 a0a2014fbb..0000000000 --- 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 a9d3be82ea..0000000000 --- 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 eb17279a62..0000000000 --- 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 cdc176e00c..0000000000 --- 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 2ec0e186b5..0000000000 --- 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 813ba97613..0000000000 --- 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 1007955ea9..0000000000 --- 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 86807ca731..0000000000 --- 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 57faded5c8..0000000000 --- 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 9e966f77d1..0000000000 --- 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 23b086d5e1..0000000000 --- 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 c21322adb2..0000000000 --- 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 27adb40b17..0000000000 --- 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 380be34903..0000000000 --- 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 ef247b8b8c..0000000000 --- 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 bc3992cdd6..0000000000 --- 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 27188a3410..0000000000 --- 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 cb735b5615..0000000000 --- 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 ded27f049f..0000000000 --- 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 6df13ae43d..0000000000 --- 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 a655f70d33..0000000000 --- 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 cd2e850c49..0000000000 --- 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 6da4eb806d..0000000000 --- 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 e8e38f1256..0000000000 --- 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 6883baa584..0000000000 --- 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 5c9aaeccff..0000000000 --- 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 03850f7c86..0000000000 --- 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 e99a211ae0..0000000000 --- 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 bbac554614..0000000000 --- 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 ca28fec4f8..0000000000 --- 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 922caf6efc..0000000000 --- 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 731ceeefd8..0000000000 --- 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 911def98b8..0000000000 --- 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 c951d6b90a..0000000000 --- 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 4e24791efb..0000000000 --- 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 ef63861e97..0000000000 --- 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 542e311286..0000000000 --- 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 22f843a686..0000000000 --- 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 deceae5a03..0000000000 --- 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 07c49383a9..0000000000 --- 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 33a8e52a5d..0000000000 --- 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 42e8f59165..0000000000 --- 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 5252541e70..0000000000 --- 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 31ab5df8ad..0000000000 --- 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 5c4e0f1579..0000000000 --- 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 f3b6fcbcc3..0000000000 --- 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 5153227b15..0000000000 --- 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 d59dd3513a..0000000000 --- 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 0a6b94094a..0000000000 --- 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 02e2774669..0000000000 --- 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 e546f68539..0000000000 --- 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 89d3663fb0..0000000000 --- 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 54fcb8577e..0000000000 --- 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 6b36b61168..0000000000 --- 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 8ae6dc176d..0000000000 --- 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 e1049d0039..0000000000 --- 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 a58d3d9c06..0000000000 --- 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 b7948c531c..0000000000 --- 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 70aed22f2c..0000000000 --- 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 910a274841..0000000000 --- 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 28921c4031..0000000000 --- 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 decf220705..0000000000 --- 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 fa8bbe9fad..0000000000 --- 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 f00cc4b339..0000000000 --- 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 cc3a634a3e..0000000000 --- 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 04517c5a66..0000000000 --- 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 e5a9493287..0000000000 --- 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 6d07a0b6d5..0000000000 --- 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 32a5253fe3..0000000000 --- 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 e1b6a4fb2f..0000000000 --- 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 022fdd5339..0000000000 --- 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 f755d7fc37..0000000000 --- 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 f48929a7ef..0000000000 --- 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 1ad1d511f8..0000000000 --- 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 b4c2ef7ccd..0000000000 --- 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 39c63eac8a..0000000000 --- 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 6887834048..0000000000 --- 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 6999df33de..0000000000 --- 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 020a094c0a..0000000000 --- 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 411f1b22da..0000000000 --- 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 8281b6438b..0000000000 --- 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 47dbe6be60..0000000000 --- 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 90e1579903..0000000000 --- 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 8281b6438b..0000000000 --- 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 de5b5efc82..0000000000 --- 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 5273900606..0000000000 --- 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 b2d5e18b8f..0000000000 --- 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 9d3beab97d..0000000000 --- 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 d93d529dd8..0000000000 --- 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 62ff7fe710..0000000000 --- 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 599cd14981..0000000000 --- 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 7157f59f35..0000000000 --- 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 06998f1043..0000000000 --- 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 c2f8d80c3d..0000000000 --- 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 1681e537f6..0000000000 --- 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 54e14accc7..0000000000 --- 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 e812ca695b..0000000000 --- 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 c307257efe..0000000000 --- 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 2f3d22025f..0000000000 --- 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 4dbb2c188a..0000000000 --- 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 b735af4ac3..0000000000 --- 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 310d8f1a28..0000000000 --- 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 97162f3efa..0000000000 --- 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 4b4694d0d4..0000000000 --- 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 1edad60e03..0000000000 --- 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 405a16854e..0000000000 --- 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 26e97928ee..0000000000 --- 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 024190e9fd..0000000000 --- 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 3783c528e7..0000000000 --- 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 2a2c744b5b..0000000000 --- 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 2331aee2e7..0000000000 --- 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 1a5458080b..0000000000 --- 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 041d0c5ee2..0000000000 --- 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 86bb1979e7..0000000000 --- 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 f511dd8a12..0000000000 --- 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 36560d9d8f..0000000000 --- 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 1dd857ff32..0000000000 --- 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 09a9efa112..0000000000 --- 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 7ed3f9fbfa..0000000000 --- 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 b8cab72d07..0000000000 --- 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 faadd41a17..0000000000 --- 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 0e0f2940ae..0000000000 --- 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 7ffc2ff3b5..0000000000 --- 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 56988b9e4f..0000000000 --- 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 1a3406ed48..0000000000 --- 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 d362944e7a..0000000000 --- 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 ace9a48a23..0000000000 --- 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 64b6493d6d..0000000000 --- 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 b42a53e88d..0000000000 --- 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 2d891c2238..0000000000 --- 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 f5b458c348..0000000000 --- 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 814384297e..0000000000 --- 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 7976937a17..0000000000 --- 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 9d75f1e921..0000000000 --- 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 41eb10c7fc..0000000000 --- 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 79543fe066..0000000000 --- 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 bab1bb4e1e..0000000000 --- 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 4a77dbe672..0000000000 --- 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 6bebb5250f..0000000000 --- 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 9c8309ecfb..0000000000 --- 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 599bbeb770..0000000000 --- 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 8f7e6e6c83..0000000000 --- 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 710edc8fee..0000000000 --- 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 ba44fa295d..0000000000 --- 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 403321cb89..0000000000 --- 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 f6b7d84032..0000000000 --- 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 78b01430c2..0000000000 --- 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 9307537d4b..0000000000 --- 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 8073692ce8..0000000000 --- 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 0cf16a9c3b..0000000000 --- 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 1a0a0eebe3..0000000000 --- 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 2f007c7c94..0000000000 --- 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 d694b646e0..0000000000 --- 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 bcd2ecca46..0000000000 --- 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 b509a31362..0000000000 --- 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 1a2393fec2..0000000000 --- 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 05069e8ea1..0000000000 --- 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 b4d3ff5ac8..0000000000 --- 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 2850b0331d..0000000000 --- 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 25bccca831..0000000000 --- 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 d613f1e1a4..0000000000 --- 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 321dedf6b6..0000000000 --- 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 a71c126ddc..0000000000 --- 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 0d03754016..0000000000 --- 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 329354b716..0000000000 --- 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 9b5f5d9af6..0000000000 --- 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 bd081a3dc2..0000000000 --- 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 1264ca3984..0000000000 --- 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 b1bca49f97..0000000000 --- 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 e0086ed12e..0000000000 --- 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 04f5b42f4d..0000000000 --- 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 488bbf934d..0000000000 --- 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 4ea81f7ea2..0000000000 --- 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 dc445da773..0000000000 --- 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 fcaa2b7d3e..0000000000 --- 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 0ed3ef7cf0..0000000000 --- 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 618646bbed..0000000000 --- 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 6ec701adff..0000000000 --- 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 f32e82256f..0000000000 --- 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 c881fe1c10..0000000000 --- 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 9071014ff3..0000000000 --- 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 30b1f1af68..0000000000 --- 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 6c197a86f6..0000000000 --- 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 c09a042033..0000000000 --- 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 c42c0bb674..0000000000 --- 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 4d08e9e3b2..0000000000 --- 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 ef447af082..0000000000 --- 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 493dd7fd63..0000000000 --- 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 e02882812c..0000000000 --- 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 2cacb9755a..0000000000 --- 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 28f75a97e5..0000000000 --- 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 e697f03888..0000000000 --- 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 f156414686..0000000000 --- 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 6fb580bc7f..0000000000 --- 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 243b680dfe..0000000000 --- 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 a93fc3d29d..0000000000 --- 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 817aee3995..0000000000 --- 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 515bef3bb7..0000000000 --- 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 2da6a3e6ba..0000000000 --- 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 030d38f6cf..0000000000 --- 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 70abc964aa..0000000000 --- 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 f550f922bb..0000000000 --- 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 1b45cf8c4a..0000000000 --- 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 78b9dd3f4b..0000000000 --- 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 381782cf6f..0000000000 --- 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 9c13791f70..0000000000 --- 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 389b8a40de..0000000000 --- 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 ceccfecfa3..0000000000 --- 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 0c2b20f458..0000000000 --- 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 7857c5f187..0000000000 --- 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 7e4109f2ec..0000000000 --- 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 f0b33465cd..0000000000 --- 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 b821d486ed..0000000000 --- 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 698a57fc0a..0000000000 --- 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 9773b253fb..0000000000 --- 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 08fc7d7614..0000000000 --- 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 8ad6baa5b3..0000000000 --- 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 7e5ce39ba0..0000000000 --- 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 e13c008d3a..0000000000 --- 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 4e7704eb4e..0000000000 --- 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 d966190ab0..0000000000 --- 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 3260aa77ac..0000000000 --- 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 b7b157db01..0000000000 --- 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 a168b98a99..0000000000 --- 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 dff80c4d00..0000000000 --- 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 a049791930..0000000000 --- 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 631260ab33..0000000000 --- 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 300b8390c4..0000000000 --- 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 ab1ac198ce..0000000000 --- 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 4cf6532059..0000000000 --- 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 7c3bc54c99..0000000000 --- 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 1e7d1a751f..0000000000 --- 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 b307a6162d..0000000000 --- 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 dc2482f9e1..0000000000 --- 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 0185e1f3a9..0000000000 --- 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 d82cb36cb5..0000000000 --- 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 9e80e0e9e9..0000000000 --- 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 c4c7a4e625..0000000000 --- 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 7084ddf204..0000000000 --- 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 d886fbdaed..0000000000 --- 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 433ae48a55..0000000000 --- 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 b2be396217..0000000000 --- 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 cb4427808a..0000000000 --- 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 33e7f86137..0000000000 --- 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 65990097c6..0000000000 --- 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 de94ed9614..0000000000 --- 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 970b1954bb..0000000000 --- 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 87acdfb021..0000000000 --- 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 a82f93dfea..0000000000 --- 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 a24dede3c9..0000000000 --- a/editor/icons/xpmfix.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -sed -i 's/static char/static const char/g' *.xpm From 0c18009665cc24ccdace885a2385321b77c80943 Mon Sep 17 00:00:00 2001 From: "Daniel J. Ramirez" Date: Sat, 19 Aug 2017 02:09:58 -0500 Subject: [PATCH 3/3] Added missing icon and svgs upscaling --- editor/asset_library_editor_plugin.cpp | 2 +- editor/editor_node.cpp | 2 +- editor/editor_themes.cpp | 4 +-- editor/icons/README.md | 12 +++++++ editor/icons/dark/icon_checkerboard.svg | 6 ++++ .../icons/dark/icon_default_project_icon.svg | 33 +++++++++++++++++++ editor/icons/dark/icon_group.svg | 9 ++--- editor/icons/dark/icon_reload.svg | 6 ++++ editor/icons/dark/icon_sort.svg | 5 +++ .../{icon_main_stop.svg => icon_stop.svg} | 0 editor/icons/dark/icon_thumbnail_wait.svg | 5 +++ editor/icons/dark/icon_tool_move.svg | 2 +- editor/icons/dark/icon_tool_rotate.svg | 5 ++- editor/icons/dark/icon_tool_scale.svg | 2 +- editor/icons/dark/icon_ungroup.svg | 12 ++----- editor/icons/icon_checkerboard.svg | 6 ++++ editor/icons/icon_default_project_icon.svg | 33 +++++++++++++++++++ editor/icons/icon_group.svg | 9 ++--- editor/icons/icon_reload.svg | 6 ++++ editor/icons/icon_sort.svg | 5 +++ .../{icon_main_stop.svg => icon_stop.svg} | 0 editor/icons/icon_thumbnail_wait.svg | 5 +++ editor/icons/icon_tool_move.svg | 2 +- editor/icons/icon_tool_rotate.svg | 5 ++- editor/icons/icon_tool_scale.svg | 2 +- editor/icons/icon_ungroup.svg | 12 ++----- editor/project_manager.cpp | 2 +- modules/svg/image_loader_svg.cpp | 17 ++++++---- modules/svg/image_loader_svg.h | 4 +-- 29 files changed, 159 insertions(+), 54 deletions(-) create mode 100644 editor/icons/README.md create mode 100644 editor/icons/dark/icon_checkerboard.svg create mode 100644 editor/icons/dark/icon_default_project_icon.svg create mode 100644 editor/icons/dark/icon_reload.svg create mode 100644 editor/icons/dark/icon_sort.svg rename editor/icons/dark/{icon_main_stop.svg => icon_stop.svg} (100%) create mode 100644 editor/icons/dark/icon_thumbnail_wait.svg create mode 100644 editor/icons/icon_checkerboard.svg create mode 100644 editor/icons/icon_default_project_icon.svg create mode 100644 editor/icons/icon_reload.svg create mode 100644 editor/icons/icon_sort.svg rename editor/icons/{icon_main_stop.svg => icon_stop.svg} (100%) create mode 100644 editor/icons/icon_thumbnail_wait.svg diff --git a/editor/asset_library_editor_plugin.cpp b/editor/asset_library_editor_plugin.cpp index 0a2799c51f..5ff9c7bb8a 100644 --- a/editor/asset_library_editor_plugin.cpp +++ b/editor/asset_library_editor_plugin.cpp @@ -535,7 +535,7 @@ void EditorAssetLibrary::_notification(int p_what) { TextureRect *tf = memnew(TextureRect); tf->set_texture(get_icon("Error", "EditorIcons")); - reverse->set_icon(get_icon("Updown", "EditorIcons")); + reverse->set_icon(get_icon("Sort", "EditorIcons")); error_hb->add_child(tf); error_label->raise(); diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 9e34c1872c..b8d9d23f49 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -5657,7 +5657,7 @@ EditorNode::EditorNode() { play_hb->add_child(stop_button); //stop_button->set_toggle_mode(true); stop_button->set_focus_mode(Control::FOCUS_NONE); - stop_button->set_icon(gui_base->get_icon("MainStop", "EditorIcons")); + stop_button->set_icon(gui_base->get_icon("Stop", "EditorIcons")); stop_button->connect("pressed", this, "_menu_option", make_binds(RUN_STOP)); stop_button->set_tooltip(TTR("Stop the scene.")); stop_button->set_shortcut(ED_SHORTCUT("editor/stop", TTR("Stop"), KEY_F8)); diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index e0dd9b315c..d1f085f4b9 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -106,7 +106,7 @@ 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); + ImageLoaderSVG::create_image_from_string(img, dark_theme ? editor_icons_sources[p_index] : editor_icons_sources_dark[p_index], EDSCALE, true); if ((EDSCALE - (float)((int)EDSCALE)) > 0.0) icon->create_from_image(img); // in this case filter really helps else @@ -193,7 +193,7 @@ Ref create_editor_theme(const Ref p_theme) { 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) { + if (p_theme != NULL && fabs(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")); } diff --git a/editor/icons/README.md b/editor/icons/README.md new file mode 100644 index 0000000000..f3aaa23666 --- /dev/null +++ b/editor/icons/README.md @@ -0,0 +1,12 @@ +The icons here are optimized SVGs, because the editor renders the svgs at runtime, they need +to be small in size, so they can be efficiently parsed. + +The original icons can be found at: +https://github.com/djrm/godot-design/tree/master/assets/icons + +There you can find the optimizer script. + +If you add a new icon, please make a pull request to this repo: +https://github.com/djrm/godot-design/ + +and store the the optimized SVG version here. diff --git a/editor/icons/dark/icon_checkerboard.svg b/editor/icons/dark/icon_checkerboard.svg new file mode 100644 index 0000000000..dcb8adb2d7 --- /dev/null +++ b/editor/icons/dark/icon_checkerboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_default_project_icon.svg b/editor/icons/dark/icon_default_project_icon.svg new file mode 100644 index 0000000000..d16d137550 --- /dev/null +++ b/editor/icons/dark/icon_default_project_icon.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/dark/icon_group.svg b/editor/icons/dark/icon_group.svg index 3c29f58bf5..324de52572 100644 --- a/editor/icons/dark/icon_group.svg +++ b/editor/icons/dark/icon_group.svg @@ -1,9 +1,6 @@ - - - - - - + + + diff --git a/editor/icons/dark/icon_reload.svg b/editor/icons/dark/icon_reload.svg new file mode 100644 index 0000000000..4c5f0e7dbc --- /dev/null +++ b/editor/icons/dark/icon_reload.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/dark/icon_sort.svg b/editor/icons/dark/icon_sort.svg new file mode 100644 index 0000000000..87bab3cad7 --- /dev/null +++ b/editor/icons/dark/icon_sort.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_main_stop.svg b/editor/icons/dark/icon_stop.svg similarity index 100% rename from editor/icons/dark/icon_main_stop.svg rename to editor/icons/dark/icon_stop.svg diff --git a/editor/icons/dark/icon_thumbnail_wait.svg b/editor/icons/dark/icon_thumbnail_wait.svg new file mode 100644 index 0000000000..833e6f7f69 --- /dev/null +++ b/editor/icons/dark/icon_thumbnail_wait.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/dark/icon_tool_move.svg b/editor/icons/dark/icon_tool_move.svg index de89f59ac9..e5452a5691 100644 --- a/editor/icons/dark/icon_tool_move.svg +++ b/editor/icons/dark/icon_tool_move.svg @@ -1,5 +1,5 @@ - + diff --git a/editor/icons/dark/icon_tool_rotate.svg b/editor/icons/dark/icon_tool_rotate.svg index 4c5f0e7dbc..39a208bb2b 100644 --- a/editor/icons/dark/icon_tool_rotate.svg +++ b/editor/icons/dark/icon_tool_rotate.svg @@ -1,6 +1,5 @@ - - - + + diff --git a/editor/icons/dark/icon_tool_scale.svg b/editor/icons/dark/icon_tool_scale.svg index 2711dae1a3..823baf4dda 100644 --- a/editor/icons/dark/icon_tool_scale.svg +++ b/editor/icons/dark/icon_tool_scale.svg @@ -1,5 +1,5 @@ - + diff --git a/editor/icons/dark/icon_ungroup.svg b/editor/icons/dark/icon_ungroup.svg index 97932c95e0..7bebe96e76 100644 --- a/editor/icons/dark/icon_ungroup.svg +++ b/editor/icons/dark/icon_ungroup.svg @@ -1,12 +1,6 @@ - - - - - - - - - + + + diff --git a/editor/icons/icon_checkerboard.svg b/editor/icons/icon_checkerboard.svg new file mode 100644 index 0000000000..078c54a761 --- /dev/null +++ b/editor/icons/icon_checkerboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_default_project_icon.svg b/editor/icons/icon_default_project_icon.svg new file mode 100644 index 0000000000..d16d137550 --- /dev/null +++ b/editor/icons/icon_default_project_icon.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/editor/icons/icon_group.svg b/editor/icons/icon_group.svg index 5e700de162..e607f35660 100644 --- a/editor/icons/icon_group.svg +++ b/editor/icons/icon_group.svg @@ -1,9 +1,6 @@ - - - - - - + + + diff --git a/editor/icons/icon_reload.svg b/editor/icons/icon_reload.svg new file mode 100644 index 0000000000..ae0cf02170 --- /dev/null +++ b/editor/icons/icon_reload.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/editor/icons/icon_sort.svg b/editor/icons/icon_sort.svg new file mode 100644 index 0000000000..1e2e16f459 --- /dev/null +++ b/editor/icons/icon_sort.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_main_stop.svg b/editor/icons/icon_stop.svg similarity index 100% rename from editor/icons/icon_main_stop.svg rename to editor/icons/icon_stop.svg diff --git a/editor/icons/icon_thumbnail_wait.svg b/editor/icons/icon_thumbnail_wait.svg new file mode 100644 index 0000000000..c38ea1de0c --- /dev/null +++ b/editor/icons/icon_thumbnail_wait.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/editor/icons/icon_tool_move.svg b/editor/icons/icon_tool_move.svg index 51ab4bc0df..79fd083669 100644 --- a/editor/icons/icon_tool_move.svg +++ b/editor/icons/icon_tool_move.svg @@ -1,5 +1,5 @@ - + diff --git a/editor/icons/icon_tool_rotate.svg b/editor/icons/icon_tool_rotate.svg index ae0cf02170..0a5c0fc340 100644 --- a/editor/icons/icon_tool_rotate.svg +++ b/editor/icons/icon_tool_rotate.svg @@ -1,6 +1,5 @@ - - - + + diff --git a/editor/icons/icon_tool_scale.svg b/editor/icons/icon_tool_scale.svg index 70acd52082..3d771651bd 100644 --- a/editor/icons/icon_tool_scale.svg +++ b/editor/icons/icon_tool_scale.svg @@ -1,5 +1,5 @@ - + diff --git a/editor/icons/icon_ungroup.svg b/editor/icons/icon_ungroup.svg index edab685ef7..cdda5d3dbf 100644 --- a/editor/icons/icon_ungroup.svg +++ b/editor/icons/icon_ungroup.svg @@ -1,12 +1,6 @@ - - - - - - - - - + + + diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index 68dfe7e967..4c46879887 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -1449,7 +1449,7 @@ void ProjectListFilter::_filter_option_selected(int p_idx) { void ProjectListFilter::_notification(int p_what) { switch (p_what) { case NOTIFICATION_ENTER_TREE: { - clear_search_button->set_icon(get_icon("CloseHover", "EditorIcons")); + clear_search_button->set_icon(get_icon("Close", "EditorIcons")); } break; } } diff --git a/modules/svg/image_loader_svg.cpp b/modules/svg/image_loader_svg.cpp index cc801775b8..46931fb0f6 100644 --- a/modules/svg/image_loader_svg.cpp +++ b/modules/svg/image_loader_svg.cpp @@ -47,7 +47,7 @@ SVGRasterizer::~SVGRasterizer() { SVGRasterizer ImageLoaderSVG::rasterizer; -Error ImageLoaderSVG::_create_image(Ref p_image, const PoolVector *p_data, float p_scale) { +Error ImageLoaderSVG::_create_image(Ref p_image, const PoolVector *p_data, float p_scale, bool upsample) { NSVGimage *svg_image; PoolVector::Read src_r = p_data->read(); svg_image = nsvgParse((char *)src_r.ptr(), "px", 96); @@ -55,15 +55,18 @@ Error ImageLoaderSVG::_create_image(Ref p_image, const PoolVectorwidth * p_scale); - int h = (int)(svg_image->height * p_scale); + + float upscale = upsample ? 2.0 : 1.0; + + int w = (int)(svg_image->width * p_scale * upscale); + int h = (int)(svg_image->height * p_scale * upscale); PoolVector dst_image; dst_image.resize(w * h * 4); PoolVector::Write dw = dst_image.write(); - rasterizer.rasterize(svg_image, 0, 0, p_scale, (unsigned char *)dw.ptr(), w, h, w * 4); + rasterizer.rasterize(svg_image, 0, 0, p_scale * upscale, (unsigned char *)dw.ptr(), w, h, w * 4); dw = PoolVector::Write(); p_image->create(w, h, false, Image::FORMAT_RGBA8, dst_image); @@ -75,7 +78,7 @@ Error ImageLoaderSVG::_create_image(Ref p_image, const PoolVector p_image, const char *svg_str, float p_scale) { +Error ImageLoaderSVG::create_image_from_string(Ref p_image, const char *svg_str, float p_scale, bool upsample) { size_t str_len = strlen(svg_str); PoolVector src_data; @@ -83,7 +86,7 @@ Error ImageLoaderSVG::create_image_from_string(Ref p_image, const char *s PoolVector::Write src_w = src_data.write(); memcpy(src_w.ptr(), svg_str, str_len); - return _create_image(p_image, &src_data, p_scale); + return _create_image(p_image, &src_data, p_scale, upsample); } Error ImageLoaderSVG::load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale) { @@ -94,7 +97,7 @@ Error ImageLoaderSVG::load_image(Ref p_image, FileAccess *f, bool p_force PoolVector::Write src_w = src_image.write(); f->get_buffer(src_w.ptr(), size); - return _create_image(p_image, &src_image, p_scale); + return _create_image(p_image, &src_image, p_scale, 1.0); } void ImageLoaderSVG::get_recognized_extensions(List *p_extensions) const { diff --git a/modules/svg/image_loader_svg.h b/modules/svg/image_loader_svg.h index 2b6a59edc8..d93e1e3d62 100644 --- a/modules/svg/image_loader_svg.h +++ b/modules/svg/image_loader_svg.h @@ -54,10 +54,10 @@ public: class ImageLoaderSVG : public ImageFormatLoader { static SVGRasterizer rasterizer; - static Error _create_image(Ref p_image, const PoolVector *p_data, float p_scale); + static Error _create_image(Ref p_image, const PoolVector *p_data, float p_scale, bool upsample); public: - static Error create_image_from_string(Ref p_image, const char *p_svg_str, float p_scale); + static Error create_image_from_string(Ref p_image, const char *p_svg_str, float p_scale, bool upsample); virtual Error load_image(Ref p_image, FileAccess *f, bool p_force_linear, float p_scale); virtual void get_recognized_extensions(List *p_extensions) const;