unity lifecycle events

Understanding Unity Lifecycle Events: Awake vs Start, Update, and OnEnable

Unity Lifecycle Events are fundamental to game development in Unity. They define the core structure of how scripts run and interact within the game environment. Understanding these events is crucial for novice and seasoned developers, as they are integral to creating responsive, efficient, and well-structured games. In this tutorial, we’ll dig into these key lifecycle … Read more

Time Based Actions

Understanding Time Based Actions in Unity: Coroutines, Invoke and Timers

One of the most common needs when developing games in Unity is the ability to schedule actions over time. Whether triggering events after a delay, repeating behaviors at regular intervals, or executing logic across multiple frames, Unity provides tools such as Coroutines, Invoke, and Timers to handle time based Actions. Coroutines allow you to spread … Read more

Scene Fader

How to Create A Scene Fader in Unity

Scene faders provide smooth visual transitions when loading new scenes in Unity games. This tutorial covers how to create a simple scene fader in Unity by scripting a UI image to gradually fade to black, load the next scene, and fade back in. We will set up a SceneFader object, write fade in/out coroutines to … Read more

Diminishing Light

Diminishing Light: My New Zombie Apocalypse Action Driving Game – Devlog #3

In this post, I wanted to share the progress on several key features for my zombie apocalypse action driving game, Diminishing Light: Wheeled Carnage. Last time, I covered systems like vehicle damage and weapon upgrades. This week, I focused on naming the game, implementing vehicle selection and upgrades, strategic resource gathering, and optimizations. Task 1: … Read more

Best Udemy Courses to Learn Game Development

5 Best Udemy Courses to Learn Game Development

Game development has always been a passion of mine, and with all of the online resources available today, it’s never been easier to start learning. One such platform that has quickly gained popularity is Udemy, which offers a variety of courses covering different aspects of game development. If you’re unsure where to begin, don’t worry; … Read more

Zombie Apocalypse Action Driving Game

Building On My Zombie Apocalypse Action Driving Game – Devlog #2

In my last devlog, I shared progress on initial driving mechanics, zombie crowds, and building atmospheric environments for my zombie action-driving game. After getting the core gameplay of plowing through zombie hordes, I focused on new systems to complement the experience. For this update on my Zombie Apocalypse Action Driving Game, I’ll cover recent progress … Read more

Best Chair For Game Developers

Best Chair for Game Developers 2024

As a game developer, you spend countless hours sitting in a chair, working on your game. Whether you’re working on an action-packed zombie driving game or designing the next breakthrough indie title, having a comfortable chair is crucial to support those long work hours. Ergonomic chairs are designed with your health, posture, and comfort in … Read more

How to Spawn Ragdolls

How to Spawn Ragdolls in Unity

One of the primary visual hooks I wanted in my Zombie Action Driving Game was to enable the player to plow through large numbers of zombies and have their bodies fly all over the place from the impact. I plan to have 500+ zombies active in the scene simultaneously, so I needed to optimize my … Read more