Merge pull request #7540 from volzhs/default-rot

Change camera default rotation
This commit is contained in:
Rémi Verschelde 2017-01-16 20:08:37 +01:00 committed by GitHub
commit 3000c2d967
2 changed files with 4 additions and 4 deletions

View file

@ -2297,10 +2297,10 @@ void SpatialEditorViewport::reset() {
message_time=0;
message="";
last_message="";
name=TTR("Top");
name="";
cursor.x_rot=0;
cursor.y_rot=0;
cursor.x_rot=0.5;
cursor.y_rot=0.5;
cursor.distance=4;
cursor.region_select=false;
_update_name();

View file

@ -208,7 +208,7 @@ private:
bool region_select;
Point2 region_begin,region_end;
Cursor() { x_rot=y_rot=0; distance=4; region_select=false; }
Cursor() { x_rot=y_rot=0.5; distance=4; region_select=false; }
} cursor;
RID move_gizmo_instance[3], rotate_gizmo_instance[3];