Hide Script nodes in dialog box to prevent crash with pluginscript

This commit is contained in:
Emmanuel Leblond 2018-01-19 09:55:52 +01:00
parent fe2932a969
commit 431ecc2061
No known key found for this signature in database
GPG Key ID: C360860E645EFFC0

View File

@ -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