diff options
author | Yuri Sizov <11782833+YuriSizov@users.noreply.github.com> | 2023-01-24 22:26:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 22:26:03 +0300 |
commit | fab9926a958ffb5771c59a93f4416d3f3df45240 (patch) | |
tree | 1a022f066c756ff1867d7a8fa74a26d6af48a184 /editor/editor_node.cpp | |
parent | 9de0c73e4529afe3ea060332a03e17cc0581efd8 (diff) | |
parent | 8f706be6fa122a0e3ebf6b48a011023f4a20516c (diff) | |
download | redot-engine-fab9926a958ffb5771c59a93f4416d3f3df45240.tar.gz |
Merge pull request #65137 from dalexeev/editor-naming
Rearrange `editor/naming/*` project settings
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index c7ea7dc7cf..58cd592404 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -3089,7 +3089,7 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) { } String EditorNode::adjust_scene_name_casing(const String &root_name) { - switch (GLOBAL_GET("editor/scene/scene_naming").operator int()) { + switch (GLOBAL_GET("editor/naming/scene_name_casing").operator int()) { case SCENE_NAME_CASING_AUTO: // Use casing of the root node. break; @@ -6429,7 +6429,7 @@ void EditorNode::_feature_profile_changed() { } void EditorNode::_bind_methods() { - GLOBAL_DEF(PropertyInfo(Variant::INT, "editor/scene/scene_naming", PROPERTY_HINT_ENUM, "Auto,PascalCase,snake_case"), SCENE_NAME_CASING_SNAKE_CASE); + GLOBAL_DEF(PropertyInfo(Variant::INT, "editor/naming/scene_name_casing", PROPERTY_HINT_ENUM, "Auto,PascalCase,snake_case"), SCENE_NAME_CASING_SNAKE_CASE); ClassDB::bind_method("edit_current", &EditorNode::edit_current); ClassDB::bind_method("edit_node", &EditorNode::edit_node); |