
Various Timer Implementations in Unity
Dec 9, 2024
Categories: Unity
Exploring Various Methods to Create Timers in Unity: Using Awaitables, the Update Method, and a Minimal, High-Performance Timer
Read
Alternate Lookup For Dictionary And HashSet With The IAlternateEqualityComparer
Nov 26, 2024
Categories: C#
What is the IAlternateEqualityComparer interface and how to use the AlternateLookup struct and the GetAlternateLookup method in .NET 9
Read
The Principle Of Least Astonishment
Nov 18, 2024
Categories: Architecture
What is the principle of least astonishment, otherwise known as the law of least surprised and how it affects our code with examples in C#
Read
How To Create Custom Async Return Types In Unity
Nov 11, 2024
Categories: Unity
Learn how to create custom asynchronous types in Unity that can be returned from an async method and awaited at a later stage
Read
Await Anything In Unity With AwaitableCompletionSource And Custom Awaiters
Nov 5, 2024
Categories: Unity
Learn how to await anything in Unity using the GetAwaiter method with AwaitableCompletionSource or by creating custom classes that implement the INotifyCompletion interface. Bonus: how to add a FromResult method in Awaitable

How To Use Unity's Behavior Graph: Part 2 - Subgraphs, Events And Custom Nodes
Oct 29, 2024
Categories: Unity
Learn how to create custom nodes, utilize events and subgraphs, and debug your behavior graphs, complete with a small game example.
Read