- Learning C# by Developing Games with Unity 5.x(Second Edition)
- Greg Lukosek
- 421字
- 2021-07-09 20:03:30
Working with C# script files
Until you learn some basic concepts of programming, it's too early to study how scripts work, but you still need to know how to create one.
There are several ways of creating a script file using Unity:
- In the menu, navigate to Assets | Create | C# Script.
- In the Project tab, navigate to Create | C# Script.
- Right-click in the Project tab, and from the pop-up menu, navigate to Create | C# Script.
All of these ways create a .cs
file in the Unity Assets
folder. From now on, whenever I tell you to create a C# script, use whichever method you prefer.
Lots of files can create a mess
As our Unity project progresses, we will have lots of different types of files in the Project view. It's highly recommended that you keep a clean and simple folder structure in your project.
Let's keep our scripts in the Scripts
folder, textures in Textures
, and so on so that it looks something like this:

From now on, let's not keep any loose files in the Assets
folder.
Why does my Project tab look different?
Unity allows us to customize the user interface. Everyone has their own favorite. I prefer a one-column layout Project tab instead of Unity's default two-column layout. To change this, open the context menu in the top-right corner of the Project tab, as shown in this screenshot:

When working in a team, you will notice that every team member has his/her own layout preference. A level designer may like to use a big Scene tab. An animator will probably use the Animation and Animator tabs. For a programmer like you, all tabs are fairly important. However, the Console tab is the one that you will use a lot while testing your code. I mostly prefer a layout pided into four columns—from left to right, Scene and Console, then Hierarchy, then Project and finally Inspector. It looks like what is shown in the following screenshot:

Note
If you have trouble with moving tabs around, refer to the Customizing Your Workspace chapter in the Unity Manual.
Feel free to change the interface however you want. But try to keep the Console tab visible all the time. We will use it a lot throughout the book. You can also save your custom layouts in the Layout menu.
Note
The Console tab shows messages, warnings, errors, or debug output from your game. You can define your own messages to be sent to the console.
- 數(shù)據(jù)庫原理及應用(Access版)第3版
- Developing Mobile Web ArcGIS Applications
- 信息可視化的藝術:信息可視化在英國
- JMeter 性能測試實戰(zhàn)(第2版)
- PostgreSQL技術內幕:事務處理深度探索
- 從學徒到高手:汽車電路識圖、故障檢測與維修技能全圖解
- 差分進化算法及其高維多目標優(yōu)化應用
- 精通Linux(第2版)
- Scratch趣味編程:陪孩子像搭積木一樣學編程
- Android應用開發(fā)深入學習實錄
- JavaScript悟道
- Hands-On Robotics Programming with C++
- Mastering PowerCLI
- Kohana 3.0 Beginner's Guide
- Mastering Python