diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-08-24 12:49:20 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-08-24 13:05:41 +0200 |
commit | 2c77f07aaa4c04c6f439a4636156ba234f6d2e13 (patch) | |
tree | 6ef8828a7fcc43832fec43e89d2d7dc4545af97a /editor/editor_data.cpp | |
parent | 6758a7f8c07d1f4c8ec4f052ded6d26402967ebe (diff) | |
download | redot-engine-2c77f07aaa4c04c6f439a4636156ba234f6d2e13.tar.gz |
Add a script method to get its class icon
Co-authored-by: Danil Alexeev <danil@alexeev.xyz>
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index 0b2c2bea15..ae90ae6a42 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -1122,8 +1122,14 @@ 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. + String icon_path; StringName class_name = script_class_get_name(base_scr->get_path()); - String icon_path = script_class_get_icon_path(class_name); + if (base_scr->is_built_in() || class_name == StringName()) { + icon_path = base_scr->get_class_icon_path(); + } else { + 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; |