【Unity3D】Tips: How to switch between three views in Unity

The project needs to move the pivot position more accurately in Unity. After searching around, I couldn't find a way to directly cut the three views. Later I discovered that you can use the orthographic view directly!

Go straight

Step1

In Unity, you can switch between perspective (Perspective) and orthogonality (Orthogonality) views in Gizmos. Click on the small square in the middle or the word Persp to change to orthographic view.
Insert image description here

Perspective view Persp: near large and far small
Perspective view, big near and small far
Orthogonal view ISO: side length and front and rear are equal (dream back to computer graphics class)
Orthogonal view, side lengths and front and rear are equal (dream back to computer graphics class)

Step2

Under the word ISO, click on any coordinate axis to switch to the view of the current direction.
Insert image description here

Finish!

Insert image description here

Guess you like

Origin blog.csdn.net/weixin_41932970/article/details/129137281