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
commit 06c0985fee
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
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);