diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-03-23 11:28:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-23 11:28:05 +0100 |
commit | 699325f9a13f51ca2a592d14c4926942ca9ed901 (patch) | |
tree | c0c7c2d8a25e6b3c9e302b23e70d8c0176a7460e /editor/editor_settings.cpp | |
parent | f720d86b0bef3967d1bd65771bf2286c63914808 (diff) | |
parent | 57e6b8781ca311ffd919f25a2c36039f45866c2a (diff) |
Merge pull request #17505 from ArkDShiggy/invert_y-axis
add option to invert y-axis
Diffstat (limited to 'editor/editor_settings.cpp')
-rw-r--r-- | editor/editor_settings.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 3a75673560..93cd0481e3 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -407,6 +407,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { // navigation _initial_set("editors/3d/navigation/navigation_scheme", 0); + _initial_set("editors/3d/navigation/invert_y-axis", false); hints["editors/3d/navigation/navigation_scheme"] = PropertyInfo(Variant::INT, "editors/3d/navigation/navigation_scheme", PROPERTY_HINT_ENUM, "Godot,Maya,Modo"); _initial_set("editors/3d/navigation/zoom_style", 0); hints["editors/3d/navigation/zoom_style"] = PropertyInfo(Variant::INT, "editors/3d/navigation/zoom_style", PROPERTY_HINT_ENUM, "Vertical, Horizontal"); |