1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Merge pull request #21614 from willnationsdev/instance-with-name

Fix script classes not instancing with custom name.
This commit is contained in:
Rémi Verschelde
2018-08-31 08:24:20 +02:00
committed by GitHub

View File

@@ -497,7 +497,11 @@ Object *CreateDialog::instance_selected() {
if (custom != String()) {
if (ScriptServer::is_global_class(custom)) {
return EditorNode::get_editor_data().script_class_instance(custom);
Object *obj = EditorNode::get_editor_data().script_class_instance(custom);
Node *n = Object::cast_to<Node>(obj);
if (n)
n->set_name(custom);
return obj;
}
return EditorNode::get_editor_data().instance_custom_type(selected->get_text(0), custom);
} else {