diff options
author | kobewi <kobewi4e@gmail.com> | 2022-10-10 22:30:34 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-10-10 22:31:26 +0200 |
commit | b754df2b991bc4bb2b8157ae90cac4b8f454b9e3 (patch) | |
tree | b5b3839e15c124c6fed5011ba73433ccf18099e1 /editor | |
parent | 28f642097a7986867e4fb7d697764efb4db753bf (diff) |
Fix node name casing issues
Co-authored-by: ryburnj <jordanryburn@gmail.com>
Diffstat (limited to 'editor')
-rw-r--r-- | editor/scene_tree_dock.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/editor/scene_tree_dock.cpp b/editor/scene_tree_dock.cpp index acaa4ec3c9..ee358a8064 100644 --- a/editor/scene_tree_dock.cpp +++ b/editor/scene_tree_dock.cpp @@ -2176,11 +2176,15 @@ void SceneTreeDock::_selection_changed() { void SceneTreeDock::_do_create(Node *p_parent) { Variant c = create_dialog->instance_selected(); - - ERR_FAIL_COND(!c); Node *child = Object::cast_to<Node>(c); ERR_FAIL_COND(!child); + String new_name = p_parent->validate_child_name(child); + if (GLOBAL_GET("editor/node_naming/name_casing").operator int() != NAME_CASING_PASCAL_CASE) { + new_name = adjust_name_casing(new_name); + } + child->set_name(new_name); + editor_data->get_undo_redo()->create_action_for_history(TTR("Create Node"), editor_data->get_current_edited_scene_history_id()); if (edited_scene) { @@ -2191,7 +2195,6 @@ void SceneTreeDock::_do_create(Node *p_parent) { editor_data->get_undo_redo()->add_do_reference(child); editor_data->get_undo_redo()->add_undo_method(p_parent, "remove_child", child); - String new_name = p_parent->validate_child_name(child); EditorDebuggerNode *ed = EditorDebuggerNode::get_singleton(); editor_data->get_undo_redo()->add_do_method(ed, "live_debug_create_node", edited_scene->get_path_to(p_parent), child->get_class(), new_name); editor_data->get_undo_redo()->add_undo_method(ed, "live_debug_remove_node", NodePath(String(edited_scene->get_path_to(p_parent)).path_join(new_name))); |