Jun 22, 2021Making Your Character Wrap on ScreenWhile moving our character, we want them to go of screen and then appear on the other side! To make this magic happen, we are going to use an if and else statement. First you need to find the dimensions of the camera box so we know what numbers you…Csharp2 min readCsharp2 min read
Jun 20, 2021Basic Player Movement in UnityIn this article, we are going to learn how to make your character move up, down, left and right. To begin, lets create a variable called speed! I am just going to be using a cube in unity as my player, so if you want to follow along feel free…Unity Game Development3 min readUnity Game Development3 min read
Jun 14, 2021If and Else Function of C# UnityLet’s go over the If and Else functions that we can use in unity. The example that we are going to do is going to also include the Random.Range function. We are going to see if a person passed or failed their quiz! If you need help see my previous…Unity Game Development2 min readUnity Game Development2 min read
Jun 13, 2021How to Use Random Variables!If you want to know how to randomly generate numbers in a Unity script then you came to the right place! We will be creating a way to calculate random test scores! Lets looks at our script! To begin we want create floats of 5 different quizzes that we…3 min read3 min read
Jun 12, 2021Basics of C# Variables!Make sure to use a Semicolon (;) at the end of every line of code! When it comes to variables like strings, bools, int and floats, you can decide whether they are public or private. If you make a variable public, everyone has the ability to access it. You can…C Sharp Programming3 min readC Sharp Programming3 min read
Jun 11, 2021Creating a Unity GITHUB Repository!The first thing you want to do, is create your new Unity project and locate that file path in your command line! If you want a shortcut, just go to the folder path you want it open in, right click, and open git bash.Github4 min readGithub4 min read
Jun 9, 2021Basics of the Command Line!If you need help using basic commands in the command line, this may be something for you! To start, we are going to look at a fresh command window. Once you are here, you can see at the top of the window what directory (folder) you are currently in! Now…Github3 min readGithub3 min read