From 67d80e6f73c7092b18675a47a7a51f3d573e6873 Mon Sep 17 00:00:00 2001 From: Tom Langwaldt Date: Tue, 2 Feb 2021 19:44:38 +0100 Subject: [PATCH] Fix swapped front/rear view (cherry picked from commit f995d6cd17e227492dee14627e9262292c58d6a4) --- editor/plugins/spatial_editor_plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/plugins/spatial_editor_plugin.cpp b/editor/plugins/spatial_editor_plugin.cpp index d46baa4748d..1f4b80a5d53 100644 --- a/editor/plugins/spatial_editor_plugin.cpp +++ b/editor/plugins/spatial_editor_plugin.cpp @@ -2803,7 +2803,7 @@ void SpatialEditorViewport::_menu_option(int p_option) { case VIEW_FRONT: { cursor.x_rot = 0; - cursor.y_rot = 0; + cursor.y_rot = Math_PI; set_message(TTR("Front View."), 2); name = TTR("Front"); _set_auto_orthogonal(); @@ -2813,7 +2813,7 @@ void SpatialEditorViewport::_menu_option(int p_option) { case VIEW_REAR: { cursor.x_rot = 0; - cursor.y_rot = Math_PI; + cursor.y_rot = 0; set_message(TTR("Rear View."), 2); name = TTR("Rear"); _set_auto_orthogonal();