How to add force in Unity

In this tutorial let’s see how to add force to an object in Unity and understand the type of forces that you can use. Adding force in Unity requires a Rigidbody in Unity. So, add a Rigidbody component before adding your force script. Addforce in Unity takes two inputs. The first one is a Unity … Read more

Mathf.Clamp Unity C# tutorial

There is no game development with mathematics. We see multiple mathematic calculations during the game development process. Mathf in Unity is the combination of all mathematic functions that you will need for your game. Mathf is inbuild in the Unity engine namespace so, you don’t need to add any to use Mathf. Mathf has lot … Read more

Getting started with Unity Editor

Unity editor is the first interface you will see after starting a new project. All the game development except scripting and asset development happens in Unity editor. Knowing your way around the editor, is very crucial to getting started with Unity. This tutorial is aimed toward people who are using the Unity editor for the … Read more

How to use Unity Recorder

Earlier in Unity you have to use an external software to record gameplay in Unity editor. With the launch of Unity Cinemachine and Recorder, you can now make and record your own gameplay. This is a very handy feature that eases a lot of work when making a cutscene in Unity. In this tutorial, we … Read more