How to build your game in Unity

After you have made your first game, now it’s time to publish it. You need a executable file depending on your platform. In this tutorial, we will see how to build your game for different platforms. You can access the Build settings by going to File>Build Settings. If you have not switched your platform already … Read more

How to make a mirror in Unity

There are two ways to make a mirror in Unity. One is using a camera and a render texture. The other technique uses smooth surface and reflection probes. The reflection probes are performance heavy so we advise you not to use them. This tutorial will cover both methods. We have two objects, a plane and … Read more

How to flip a sprite in Unity

There are many cases when you need to flip a sprite in your game. It might be when the player starts walking in the opposite direction or if the player is falling upside down. You can always rotate the sprite using Unity transform to flip the sprite. Rotation affects the child gameobjects if any and … Read more