1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Merge pull request #105450 from raulsntos/MissingNode/default_properties

Make `MissingNode`/`MissingResource` non-virtual and hide from dialogs
This commit is contained in:
Thaddeus Crews
2025-10-20 18:09:55 -05:00
4 changed files with 18 additions and 4 deletions

View File

@@ -856,6 +856,8 @@ CreateDialog::CreateDialog() {
type_blacklist.insert("PluginScript"); // PluginScript must be initialized before use, which is not possible here.
type_blacklist.insert("ScriptCreateDialog"); // This is an exposed editor Node that doesn't have an Editor prefix.
type_blacklist.insert("MissingNode");
type_blacklist.insert("MissingResource");
HSplitContainer *hsc = memnew(HSplitContainer);
add_child(hsc);