diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-03-31 21:17:59 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-03-31 21:39:02 +0200 |
commit | 1522762dc986c130ad63cbf854514d730788a4cf (patch) | |
tree | 81cbbbb7028bc95f828d78644b570e506736ece9 /editor/editor_data.cpp | |
parent | 9fae65404a223a86816685b0b4036a57b8f976b7 (diff) | |
download | redot-engine-1522762dc986c130ad63cbf854514d730788a4cf.tar.gz |
Make icons of scripted and custom classes fit the editor UI
Also:
- Add an option to limit the icon size in PopupMenu.
This is similar to how this works in Tree and TreeItem.
- Add the same option to TabBar.
- Add a theme constant for Tree, PopupMenu, Button, and
TabBar to apply this limit on the control level.
Co-authored-by: Daylily-Zeleen <daylily-zeleen@foxmail.com>
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index d2af7879d2..2d095d2dc7 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -1030,13 +1030,11 @@ void EditorData::script_class_load_icon_paths() { } } -Ref<ImageTexture> EditorData::_load_script_icon(const String &p_path) const { - if (p_path.length()) { - Ref<Image> img = memnew(Image); - Error err = ImageLoader::load_image(p_path, img); - if (err == OK) { - img->resize(16 * EDSCALE, 16 * EDSCALE, Image::INTERPOLATE_LANCZOS); - return ImageTexture::create_from_image(img); +Ref<Texture2D> EditorData::_load_script_icon(const String &p_path) const { + if (!p_path.is_empty() && ResourceLoader::exists(p_path)) { + Ref<Texture2D> icon = ResourceLoader::load(p_path); + if (icon.is_valid()) { + return icon; } } return nullptr; @@ -1051,9 +1049,9 @@ Ref<Texture2D> EditorData::get_script_icon(const Ref<Script> &p_script) { Ref<Script> base_scr = p_script; while (base_scr.is_valid()) { // Check for scripted classes. - StringName name = script_class_get_name(base_scr->get_path()); - String icon_path = script_class_get_icon_path(name); - Ref<ImageTexture> icon = _load_script_icon(icon_path); + StringName class_name = script_class_get_name(base_scr->get_path()); + String icon_path = script_class_get_icon_path(class_name); + Ref<Texture2D> icon = _load_script_icon(icon_path); if (icon.is_valid()) { _script_icon_cache[p_script] = icon; return icon; |