What’s In A Name?: Namespaces In Unity

What’s In A Name?: Namespaces In Unity

Namespaces are collections of libraries of code that allow extra functionality in your project. Unity comes with three default System.Collections and System.Collections.Generic and then UnityEngine. There are variety of different namespaces provided by Unity such as...
Checking It Twice: Using Lists In Unity

Checking It Twice: Using Lists In Unity

Much like arrays, Lists are used to group collections of variables and objects. Unlike arrays which are static once created and can only be changed by creating a new array and copying over the values. By contrast lists allow you to dynamically add and remove values on...
Mind Enuming: How To Use Enums in Unity

Mind Enuming: How To Use Enums in Unity

Mind Enuming: Enums in Unity Have you ever wished you could just use some standard language to represent your values? Well now you can with Enums. In C# these are primitive data types using regular language to represent a constant. They’re basically ints with added...