summaryrefslogtreecommitdiff
path: root/scene/main/node.h
diff options
context:
space:
mode:
authorRay Koopa <raykoopa@users.noreply.github.com>2017-01-12 19:13:09 +0100
committerRĂ©mi Verschelde <rverschelde@gmail.com>2017-01-12 20:47:25 +0100
commita971186c266de2df818a7f3dc063a49b0ad51bd8 (patch)
tree1631817b24617cb2b2c43f7db6e566b1d81163e6 /scene/main/node.h
parent6dd7d2c1f79eb2ac8f08785b9d903a01286184f8 (diff)
Project setting to control node name casing
(cherry picked from commit 87fd54b2f18928213021fef7f330d0c314cf7ac7)
Diffstat (limited to 'scene/main/node.h')
-rw-r--r--scene/main/node.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/scene/main/node.h b/scene/main/node.h
index e27404d46e..14fd19a76f 100644
--- a/scene/main/node.h
+++ b/scene/main/node.h
@@ -147,6 +147,12 @@ private:
} data;
+ enum NameCasing {
+ NAME_CASING_PASCAL_CASE,
+ NAME_CASING_CAMEL_CASE,
+ NAME_CASING_SNAKE_CASE
+ };
+
void _print_tree(const Node *p_node);