aboutsummaryrefslogtreecommitdiff
path: root/editor/create_dialog.cpp
diff options
context:
space:
mode:
authorEmmanuel Leblond2018-01-19 09:55:52 +0100
committerEmmanuel Leblond2018-01-19 09:55:52 +0100
commit431ecc206150ae177a0af30d44c344543057d0ed (patch)
treef1022a3fcb757e2e2e58937dfab8d446ae2684bf /editor/create_dialog.cpp
parentfe2932a969cdc0483c31c12c1f8bfd5868401da8 (diff)
downloadgodot-431ecc206150ae177a0af30d44c344543057d0ed.tar.gz
godot-431ecc206150ae177a0af30d44c344543057d0ed.tar.zst
godot-431ecc206150ae177a0af30d44c344543057d0ed.zip
Hide Script nodes in dialog box to prevent crash with pluginscript
Diffstat (limited to '')
-rw-r--r--editor/create_dialog.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/create_dialog.cpp b/editor/create_dialog.cpp
index 2dfb01826..d26bdad89 100644
--- a/editor/create_dialog.cpp
+++ b/editor/create_dialog.cpp
@@ -255,6 +255,9 @@ void CreateDialog::_update_search() {
if (base_type == "Node" && type.begins_with("Editor"))
continue; // do not show editor nodes
+ if (base_type == "Resource" && ClassDB::is_parent_class(type, "Script"))
+ continue; // do not show script nodes
+
if (!ClassDB::can_instance(type))
continue; // can't create what can't be instanced