Adding collectables and scoring to a 2D game in Unity
This tutorial explains how to add collectables and scoring to a 2D game in Unity. We will use the LevelManager script and CoinScript script from previous tutorials to improve the …
This tutorial explains how to add collectables and scoring to a 2D game in Unity. We will use the LevelManager script and CoinScript script from previous tutorials to improve the …
This tutorial continues on from the previous tutorial on adding collectables and scoring to a 2D Unity game. In the previous tutorial, we improved the points scoring system and added …
In this tutorial we will add a particle system to a 2D game in Unity. Particle systems emit particles in a game and can be used for adding a variety …
This tutorial continues on from the previous tutorials on setting up a fall detector, adding checkpoints, adding the ability to respawn the player, and adding a Level Manager to control respawning in …
This tutorial continues on from the previous tutorials on setting up a fall detector, adding checkpoints, and adding the ability to respawn the player in a 2D game. In this tutorial you …
This tutorial continues on from the previous two tutorials on setting up a fall detector and adding checkpoints to a game. In the previous two tutorials, we set up the …
This tutorial explains how to add checkpoints to a 2D game so that we can respawn the player back to a checkpoint when the player falls off a platform or …
This tutorial explains how to set up a fall detector in a Unity 2D game that detects when the player has fallen off a platform or off the map and …
This tutorial will show you a quick fix for stopping the player from sticking to the edge of platforms and walls in your 2D Unity game. Next tutorial: Setting up a fall detector
This tutorial will show you how to write a script in C# code that will make the camera follow the player in a 2D Unity game. Watch the video below and …
This tutorial will show you how to flip your 2D game’s player sprite in Unity with C# code so that the player can turn and face the direction in which it …
In this tutorial, you will learn how to control player animations in your 2D game with C# code in Unity. Watch the video below and then scroll down for the …
In this tutorial, you will learn how to set up the player animation controller for your 2D game in Unity. In the next tutorial we will control animations with code. …
In this tutorial, you will learn how to create idle, walk/run, and jump animations for your 2D player in Unity. In the next tutorial we will set up the player …
In this tutorial, you will learn how to change your 2D players sprite and collider and also how to set your player to a fixed angle in Unity. Next tutorial: Creating …