Tag: Featured Articles

C# Programming With Unity – Arrays

Reading Time: 6 minutes A common thing in programming is storing multiple values in a single variable. Arrays provide the functionality to do just that

C# Programming With Unity – Loops

Reading Time: 4 minutes A lot of the code that we write will need to be repeated over and over. Loops provide a very convenient way to repeat our code with a small effort

C# Programming With Unity – Functions

Reading Time: 5 minutes Functions are a way for us to group a block of code and reuse it. This will make our code cleaner and it gives better performance for our games