How to make cutscenes in Unity

Cutscenes tell a player what to expect in the next stage of the game or help them understand the story line. Sometimes it is difficult to navigate the scene without a cutscene. It’s better to have a cutscene rather than writing some text on the screen. Cutscenes are cool but creating them was never easy … Read more

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 Unity has made it simple to install and start your first game. Let’s take the first step in learning Unity by installing it. Recently Unity has introduced Unity hub, … Read more

Unity Vector3 Guide for Newbies

What is a Vector3 A vector is something that has direction and magnitude. In Unity, vectors are divided based on dimensions. A three-Dimensional vector is called Vector3. A vector3 contains the magnitude and direction information for all 3 dimensions. In game development Vector 3 is mostly used to find the position of an object and … Read more

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 lot of changes in how the game engine works. For a new developer, sometimes it is very confusing to even start a new project. In this part of learn Unity tutorial, we are … Read more

Unity Random number Generation

Random number generation is used in a lot of applications. In games, random numbers are mostly used for level design to achieve the procedural generation of levels. Every random number generator uses a different algorithm. Unity random number generation uses Marsaglia’s Xorshift 128 algorithm. Though the generated number or sequence in Unity is pseudo-random, it is … Read more