top of page
#define POST_TITLE (Unity Conditional Compilation)
In this post we will learn to to use #define with #if in Unity to make your development process easier. * If you already know to to use...
Aug 5, 20232 min read


Nullable Types In C#
Nullable types in C# are a powerful feature that allow us to represent the concept of "nothing" or "undefined" in our code. They can be...
Apr 30, 20232 min read
Get all the Children in Transform even if the Children are inactive
When using GetComponentsInChildren<Transfrom>() You get the transform children but only the child objects that are currently active in...
Apr 13, 20231 min read


Make Underwater Camera - Realistic Effect!
Making an Underwater effect in unity is prety simple
Dec 9, 20221 min read


Adding Unity Notifications To Mobile Application Tutorial
In this tutorial we will add notifications to your mobile application in Unity The code to put in the proguard-user.txt file -keep class...
Jul 17, 20221 min read


Drag and Drop objects using mouse
The code from the Drag and Drop tutorial Camera cam; Vector2 pos; bool holding; void Start() { cam = Camera.main; } void Update() { if...
Jun 1, 20221 min read


Selection with Raycast Using Mouse - Unity3D
The code: public class RayCastScript : MonoBehaviour { Camera cam; public LayerMask mask; void Start() { cam = Camera.main; } void...
Jan 14, 20221 min read
How to do things before Awake? Objects constructors
Usually then we instantiate objects in Unity the first thing to happed is the For this example we have a Cube and a GameManager. For the...
Dec 10, 20211 min read


Super Static - saving variables between game sessions
You probably know about PlayerPrefs to save and get date between game session in your unity game. But using and calling functions in your...
Sep 15, 20211 min read


Looking Hyper
This script will help you to create movement using the mouse or touch (in android). This type of movement is one of the most common in...
Aug 20, 20211 min read


Floating Coin - Animation with a script
Usually when wanting to make many animations of thing moving we will use an empty object. For simple animation like coin floating...
Aug 12, 20211 min read


Git 101 - How to connect your project to GitHub
Connect Your Project If using the new GitHub go to the bottom To make this easier to understand lets make our user name 'NerdHead' and...
Jul 30, 20212 min read


The importance of online tools
Do you save all of your data on your computer? What happens then it crushes? What would you do if you needed it when you where away from...
Jun 9, 20211 min read
bottom of page