Unity development tips (3) - Editor usage skills (below)

Editor usage skills (below)

1. Search objects by component

When we are developing, we may encounter a script method that is called twice, and it is judged that the method is not logically called twice. The most powerful thing is that we bind the script method to the two objects separately. Directly search for the name of the script on the following interface, and the object bound to the script will appear.
insert image description here

2. Search resources by tags

Label resources to facilitate classification and search
Step 1 Step
insert image description here
2
insert image description here

3. Document search shortcut

We may not understand some components during development. You can click the question mark on the component to quickly find the description of the corresponding version of the document component.
insert image description here

4. Expand and retract level shortcuts

If an object has too many levels, it will be very troublesome to open them one by one. You can hold down the Alt key and click the small triangle to the left of the object name. Similarly, you can also use this operation to collapse the levels with one key.
insert image description here

5. Camera placement shortcut

1. The game camera position is synchronized with the Scene scene position
insert image description here

2. The scene camera position is synchronized with the game scene position
insert image description here

6. Shortcut key manager

Edit>Shotcuts
insert image description here
and then you can define the shortcut keys in the editor
insert image description here

Guess you like

Origin blog.csdn.net/weixin_45724919/article/details/129858103