diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-18 13:24:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 13:24:58 +0100 |
commit | 0a67b4639699277648a23f5a47d4b023d951bd6d (patch) | |
tree | 7bc3ee665878d08dadd038fafc7577d9d9d138a7 /editor/editor_node.h | |
parent | 9912492e937d2454a21ec7465538aab2431ac249 (diff) | |
parent | c7f6315a8fbc39aa9915ade97f5d3f549c605870 (diff) |
Merge pull request #52597 from Jummit/scene_casing_setting
Diffstat (limited to 'editor/editor_node.h')
-rw-r--r-- | editor/editor_node.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/editor/editor_node.h b/editor/editor_node.h index e315f1f4b3..7f5d23dbde 100644 --- a/editor/editor_node.h +++ b/editor/editor_node.h @@ -216,6 +216,12 @@ private: TOOL_MENU_BASE = 1000 }; + enum ScriptNameCasing { + SCENE_NAME_CASING_AUTO, + SCENE_NAME_CASING_PASCAL_CASE, + SCENE_NAME_CASING_SNAKE_CASE + }; + SubViewport *scene_root; // root of the scene being edited PanelContainer *scene_root_parent; |