List Headline Image
Updated by xakep32380 on Apr 19, 2022
 REPORT
xakep32380 xakep32380
Owner
20 items   1 followers   0 votes   27 views

20 tutorials that will get you started in Game development

Want to get started in game development? Complete these 20 tutorials and you will be ready to make your own game.

How to install Unity

Unity is one of the most used game engines by new developers. Like every other software Unity also requires proper setup and installation. Over the years

Start a new Project in Unity

Unity has been constantly updating its game engine to cater for the needs of game developers. With every Unity version you find a lot of changes in how the game

Getting started with Unity Editor

Unity editor is the first interface you will see after installing Unity. All the game development except scripting and asset development happens in Unity

How to move an Object in Unity

Moving an object is what we do in most games. Either we move our player or the enemy or the environment to create the gameplay experience. In this

Awake vs Start in Unity

The main difference between Unity awake vs start is based on how the scripts and gameobjects are called in your scene.

Unity Update function explained.

In this post, we will cover the basics of what the Unity Update function does and also go through the different variants of the Update function like Late Update and Fixed update functions.

Unity Scene Manager-getting started guide for beginners

The Unity Scene Manager, as its name suggests, manages your scenes at runtime. It is a well-equipped class of Unity engine that we can use to effortlessly switch between scenes.

Camera follow player in Unity

Making a Unity camera follow script is simple yet many people get it wrong. We will see how to implement the camera follow script in Unity correctly.

Unity timer tutorial

In Unity timer can be accomplished with simple line of code. In this post we will see how you can make timers for different scenarios.

How to quit a game in Unity

Every game needs to pause and quit. Unity has a simple one liner to make the game quit in any device. But you have to save your game before doing so.

How to detect collision in unity

Unity Collider is one of the most important of any gameobject. Understanding colliders is a must for coding the core game mechanics.

Making a touchscreen joystick in Unity

In this tutorial, we will learn how to create the joystick UI for touchscreen and use it to move an object in Unity. I will be using Unity 2021.1.13 for this

How to get touch input in Unity (both old and new input system)

In this tutorial, we will see how to get touch input from a mobile device and use it in your game. We will see how to do this in both the old and new input

How to sync audio with Animation in Unity

Ever had the problem of audio not playing in sync with your animation? Do you find your player movement not synchronized with the movement sound you added?

How to play an Audio clip in Unity

Sounds are very important in a game if a sound effect is played at the wrong time, it can ruin the whole gameplay experience. You need the right sound to play

Creating gravity in Unity

Ever wanted to make a space game? The biggest challenge is creating gravity for your object in space. They need to exert different gravity forces based on

How to make a health bar in Unity

In this tutorial, we will learn how to make a health bar for your player. You will design a simple health bar using paint, import it into Unity and use it in

How to Instantiate a Prefab in Unity

When we make games, we tend to spawn many objects during runtime. Unity instantiate is the function used to spawn gameobjects.

How to get mouse position in Unity

Unity input system returns the mouse position with a single command. But the mouse position cannot be directly used in the game. Unity returns the mouse

How to lerp in Unity.

Lerp in Unity represents the equivalent of mathematical linear interpolation. Using lerp, you can get any point between positions similar to the methods used