diff options
author | Ray Koopa <raykoopa@users.noreply.github.com> | 2017-01-12 19:13:09 +0100 |
---|---|---|
committer | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-01-12 20:47:25 +0100 |
commit | a971186c266de2df818a7f3dc063a49b0ad51bd8 (patch) | |
tree | 1631817b24617cb2b2c43f7db6e566b1d81163e6 /scene/main/node.h | |
parent | 6dd7d2c1f79eb2ac8f08785b9d903a01286184f8 (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.h | 6 |
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); |