Unity Basics Course: Exploring the Unity Interface

Hello! In this course, we will lay the foundation of the Unity development environment and take a closer look at exploring the Unity interface. Unity is a powerful game engine widely used in various fields such as game development, simulation, VR (virtual reality), and AR (augmented reality). Through this course, we aim to help you understand the various features and components of Unity, allowing you to work on better projects.

1. What is Unity?

Unity is a cross-platform game engine for creating games and interactive content across a full range of genres. Since its first release in 2005, it has undergone many updates and enhancements, becoming one of the most widely used game engines today. Unity allows the development of both 2D and 3D games and supports mobile, PC, console, and web platforms.

2. Installing Unity

To use Unity, you first need to install Unity Hub. Unity Hub allows you to manage various versions of the Unity engine and easily create projects. The installation method is as follows:

  1. Visit the official Unity website (unity.com).
  2. Download Unity Hub.
  3. Once the installation is complete, launch Unity Hub.
  4. Add the version of the Unity engine. Install the modules suitable for the required platforms.

3. Introduction to the Unity Interface

When you run Unity, you will see various panels and menus. The Unity interface can be divided into two main areas: Scene and Game.

3.1 Scene View

The Scene View is the space where the game’s environment is composed. It is where you place and manipulate 3D objects, allowing developers to visually arrange and adjust game objects. In the Scene View, you can perform the following tasks:

  • Add game objects: You can add 3D models, lights, cameras, etc., through the GameObject menu.
  • Move and rotate objects: Move or rotate the selected object to build the game environment.
  • Apply lighting effects: Adjust lighting effects within the scene for a more realistic presentation.

3.2 Game View

The Game View shows the screen that players see when they play the game. This view is used to test and debug the actual game. Important points to note in the Game View include:

  • Run the game: Click the Play button to run the game.
  • Camera viewpoints: Check how the camera position and rotation affect the game.
  • Test in-game interactions: Easily test how players interact within the game.

3.3 Hierarchy Panel

The Hierarchy Panel displays a list of all game objects currently in the Scene. Each object is shown in a tree structure, allowing for parent-child relationships. By using the Hierarchy Panel, you can:

  • Organize game objects and easily understand their relationships.
  • Select an object and modify its properties to quickly adjust the scene.
  • Keep the management clean without including unnecessary objects.

3.4 Inspector Panel

The Inspector Panel shows the properties and components of the selected game object. Through this panel, you can set various properties:

  • Adjust the position, rotation, and scale of objects.
  • Add new components (e.g., Rigidbody, Collider, scripts, etc.) or remove existing components.
  • Add scripts to extend functionality.

3.5 Project Panel

The Project Panel displays a list of all assets in the current project. These assets include scripts, audio files, images, 3D models, and more. Through the Project Panel, you can:

  • Easily manage all assets that make up the project.
  • Create new folders to organize assets.
  • Double-click on assets to edit or drag them to the game object for use.

3.6 Console Panel

The Console Panel displays error messages, warnings, and log messages generated during runtime. This panel is a useful debugging tool for developers, allowing them to:

  • Identify and fix errors.
  • Check logs outputted by scripts to understand how the program is functioning.
  • Click on specific logs to get more information if needed.

4. Creating Your First Project

Now that you understand the Unity interface, let’s create your first project. Follow these steps:

  1. Click the New Project button in Unity Hub.
  2. Enter a name for your project and choose a save location.
  3. Select between 2D or 3D templates. (We will select the 3D template for this course.)
  4. Click the Create button to make the project.

5. Manipulating the Unity Screen

When starting the project, you will see a layout with a default scene and camera set up. Let’s learn how to manipulate this screen.

5.1 Camera Control

Controlling the camera in the Scene View is very simple. You can adjust the camera’s position and viewpoint using the mouse and shortcuts:

  • Hold down the right mouse button while moving to rotate the camera’s viewpoint.
  • Use the WASD keys to move the camera forwards, backwards, left, and right.
  • Adjust the camera’s height using the Q and E keys.

5.2 Adding Game Objects

Now, let’s add a game object to the Scene View. The process of adding a cube to the scene is explained as follows:

  1. Select GameObject > 3D Object > Cube from the top menu.
  2. A new cube object will be added to the Hierarchy Panel.
  3. You can adjust the cube’s position, size, and rotation in the Inspector Panel.

6. Writing Scripts

To control the behavior of game objects in Unity, you need to write scripts. Scripts are written in C#. The steps to create a script are as follows:

  1. Select the Project Panel and right-click to choose Create > C# Script.
  2. Enter a name for the script and double-click to open it in Visual Studio.
  3. Add code to the script to define the object’s behavior.
  4. When finished, drag the created script onto the cube object to assign it.

6.1 Example Code

A simple script example that makes the cube move forward:

using UnityEngine;

public class CubeMovement : MonoBehaviour
{
    // Movement speed
    public float speed = 5.0f;

    void Update()
    {
        // Moves the cube forward
        transform.Translate(Vector3.forward * speed * Time.deltaTime);
    }
}

7. Saving and Building the Project

Once you have finished working, you can save the project and build it for execution. Follow these steps:

  1. Select File > Save Scene from the top menu to save the scene.
  2. Go back to File > Build Settings and select the platform to build.
  3. Press the Build button to proceed with the build process.

8. Conclusion

In this course, we explored the Unity interface and how to create your first project. Unity is a very powerful tool that can be improved through practice and experience. Developers can utilize Unity to bring their dream games and projects to life.

In the next course, we will take a closer look at Unity’s various features and more complex game development techniques. Thank you!