Matthew Robertson

Most Popular Game Jams of 2020

Most Popular Game Jams of 2020 Introduction In a year of limited social interactions, events that bring communities together are more important than ever. Game jams are a way for the game development community to come together, develop new skills, test new mechanics, and get feedback from the community. While game jams are more accessible …

Most Popular Game Jams of 2020 Read More »

Unity Lifecycle: Update Vs FixedUpdate Vs LateUpdate

Unity Lifecycle: Update Vs FixedUpdate Vs LateUpdate Choosing Where to Update Introduction When creating new C# scripts within Unity you will notice that the script is generated with two default methods, Start and Update. These methods are part of the script lifecycle and are called in a predetermined order. In this post we will discuss …

Unity Lifecycle: Update Vs FixedUpdate Vs LateUpdate Read More »

How to Use Events in Unity with C#

How to Use Events in Unity with C# Coding with Less Dependencies   Introduction Often when programming a game, you will run into instances where something will happen in one script/class that needs to trigger something to happen in another script/class. For example, an enemy hits the player and the player’s health bar updates to …

How to Use Events in Unity with C# Read More »