Unverified Commit ae21b5dd by Rémi Verschelde Committed by GitHub

Merge pull request #39372 from aaronfranke/editor-cam-rot

Change the default editor camera rotation to position it in +X +Y +Z
parents 34942705 6c2df679
......@@ -3419,11 +3419,7 @@ void Node3DEditorViewport::reset() {
last_message = "";
name = "";
cursor.x_rot = 0.5;
cursor.y_rot = 0.5;
cursor.distance = 4;
cursor.region_select = false;
cursor.pos = Vector3();
cursor = Cursor();
_update_name();
}
......
......@@ -391,7 +391,9 @@ private:
Point2 region_begin, region_end;
Cursor() {
x_rot = y_rot = 0.5;
// These rotations place the camera in +X +Y +Z, aka south east, facing north west.
x_rot = 0.5;
y_rot = -0.5;
distance = 4;
region_select = false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment