Category: Unity Tutorials


  • How to Change Pivot Point in Unity 2D

    Learn how to rotate! The pivot point is a component in Unity that determines where the object will be scaling or rotating. You can change it with a parent object! But how do you change the pivot point of an object in Unity? If you add a new 2D object to the scene, a problem…

  • How to Destroy Object on Tap in Unity 2D

    New Input System If you want to destroy a game object by tapping in Unity, follow these simple steps and you will perform a destroy tap! Since the New Input System is a default choice for my tutorials, I will first teach you how to implement a simple system for tapping and clicking in Unity.…

  • How to Check if a Button is pressed in Unity

    New Input System If you use New Input System, you can make a button check in a much different way: There is no if-statement, you need an input action asset. But how to check if you press a button? That’s very simple! First of all, the New Input System doesn’t have the same if statement…

  • Moving Platform in Unity 3D

    In this video, you will learn how to make a simple moving platform, which will parent your player every time you land on it. The platform will be moved according to waypoints, which will be created as empty game objects that will only contain transform component. The platform will be a child object of the…

  • How to Save Game in Unity

    In this video, you will learn how to save your game progress in Unity. This video will involve C# programming and using JSON Utility for storing game data. The saved data can be stored in a .json file and will be loaded or saved by pressing a button. JSON save Many people who make games…

  • How to Animate a Character in Unity 3D

    Learn How to Animate! Learn how to animate your own character in Unity 3D! You can import your own character or you can download examples from Mixamo. The process is very simple, you don’t really have to use the character that I am using, since it will be for my video game that I plan…

  • 3D Endless Runner in Unity – Player Movement

    Tutorial for beginners! Have you ever wondered how to make an amazing Endless Runner in Unity? This tutorial has everything you need! How to make an Endless Runner in the easiest way? This video is the right explanation! Introduction There is not too much to explain because the scripts are the most important part of…

  • Character Controller in Unity

    Tutorial for moving your player! In this video, you will learn how to add a simple character controller in Unity. It will be very cool if you already have a movement script! Basically, the controller that has a simple green icon is a well known component in Unity projects and everyone knows how to use…

  • 3D Platformer in Unity – CAMERA Follow Tutorial

    For beginners! Let’s make a camera follow your player in Unity! Without camera follow, your game will look boring, so you need to make it stand out! The Unity Camera Follow tutorial is the first tutorial of the new month, which also presents the new phase of game development in Unity: making interesting camera follow…

  • How to Open a Door With a Key

    The Creator’s most basic tutorial! This tutorial is basic because of its simplicity. If you need an open door script for your project, this video is made for you! It has not too much to talk about, because you can create a simple cylinder. That will act like a key object. In this video, you…

Latest Comments

  1. Nice idea! This character can be used in order to make a very interesting game with logos. When I finish…

How to Change Pivot Point in Unity 2D

Learn how to rotate! The pivot point is a component in Unity that determines where the object will be[…]

How to Destroy Object on Tap in Unity 2D

New Input System If you want to destroy a game object by tapping in Unity, follow these simple steps[…]

How to Check if a Button is pressed in Unity

New Input System If you use New Input System, you can make a button check in a much different[…]

Game Development-Unity Tutorials