Stats VS Resources in Video Games
Jan 23, 2024
Categories: Unity, General
Learning to recognize the differences between Stats and Resources when making video games. When to use which and what uses they have
ReadA Stat System for Unity part 2
Jan 16, 2024
Categories: Unity
An extensible stat system for Unity part 2: Refactoring and Example of Usage
ReadA Stat System for Unity part 1
Jan 8, 2024
Categories: Unity
An extensible stat system for Unity part 1: The theory, implementing the relevant classes and algorithms
ReadHow To Use Loops Inside Unity's Update Methods
Dec 18, 2023
Categories: Unity
Different ways to use C# loops inside Unity's game loop update methods. Why Unity can freeze with certain loops and how some loops can make a single frame really slow.
ReadHow To Make A Replay System For Inputs In Unity
Dec 12, 2023
Categories: Unity
How to create a system that records and replays the player inputs in a game, to make debugging easier
ReadWhat Are The Implied If Statements In Code
Dec 4, 2023
Categories: General, Architecture
The only worse thing than multiple nested if statements in a codebase, are the implied if statements that only exist in the programmers head. An example of wrong coding with implied if statements
Read