summaryrefslogtreecommitdiff
path: root/scene/main
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-01-13 22:43:39 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-01-13 22:43:39 +0100
commitb191ea8f02dcd0bfefcd88032ec6b2bd39fa54fc (patch)
tree338ac0312e0cbc1e4a0deb82c3f9f4a5973d55d8 /scene/main
parentf19fd7a4c1b95d7552f186110c2e7ae8dcbc6ccc (diff)
Node name casing: fix mistake from previous commit
Diffstat (limited to 'scene/main')
-rw-r--r--scene/main/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index e98e93b586..ebf61994ed 100644
--- a/scene/main/node.cpp
+++ b/scene/main/node.cpp
@@ -2901,7 +2901,7 @@ void Node::_bind_methods() {
GLOBAL_DEF("editor/node_name_num_separator",0);
GlobalConfig::get_singleton()->set_custom_property_info("editor/node_name_num_separator",PropertyInfo(Variant::INT,"editor/node_name_num_separator",PROPERTY_HINT_ENUM, "None,Space,Underscore,Dash"));
- GLOBAL_DEF("node/name_casing",NAME_CASING_PASCAL_CASE);
+ GLOBAL_DEF("editor/node_name_casing",NAME_CASING_PASCAL_CASE);
GlobalConfig::get_singleton()->set_custom_property_info("editor/node_name_casing",PropertyInfo(Variant::INT,"editor/node_name_casing",PROPERTY_HINT_ENUM,"PascalCase,camelCase,snake_case"));
ClassDB::bind_method(_MD("_add_child_below_node","node:Node","child_node:Node","legible_unique_name"),&Node::add_child_below_node,DEFVAL(false));