Tag Archives: C#

Pimp My Debug.Log

This post describes a quick “tip” for improving how you work with logging in Unity. Share it with your team in case you find it useful 🙂 Console Window Mess As developers we probably spend 50% of our time debugging code (it … Continue reading

Posted in GameDev, Unity | Tagged , , , | Leave a comment

T4 Code Generation Fun with Unity

Many Unity code samples use a string identifier, such as the game object’s tag for various things (e.g: checking for a collision with “player”). In this post i will explore a different, safer and automated technique that achieves the same … Continue reading

Posted in GameDev | Tagged , , , , , , | 5 Comments

Bug Hunting: Unity throws an ArgumentException when building for Android

What can be done when Unity mysteriously throws an ArgumentException when building a project for Android? In this post I’ll describe the techniques and tools I used to track down the root cause for this issue. Prologue When using a … Continue reading

Posted in GameDev, Programming, Unity | Tagged , , , , | 1 Comment