Enter Play Mode Faster
Disable domain reloading for quicker iteration time during development (if you have to frequently enter and exit play mode). Open Project Settings -> Edit...
Disable domain reloading for quicker iteration time during development (if you have to frequently enter and exit play mode). Open Project Settings -> Edit...
Use TextMeshPro’s “Font Weights” feature + stylesheets to simplify working with specs set by the design team.
You know those fleeting logs you scatter around when trying to debug an issue? A couple downsides are compilation time every time you need to add or modif...
You may already know about the script templates folder in the installation directory, but did you also know that “ScriptTemplates” is a special folder name i...
C# 9 introduced the init keyword which can be applied to properties and indexers. This means the value can only be set during object initialization (unlike s...
When creating image buttons, it’s sometimes desirable to make the clickable area bigger than the image. One common approach to achieve this is adding an addi...
Because I’m not able to keep up with writing a post every time I have something interesting to share, I’ll sometimes just briefly summarize highlights over t...
In this post I’m going to share how switching from Marshal.SizeOf<T> to Unsafe.SizeOf<T> helped me resolve a bug that I had a left a TODO comment...
It’s usually a good idea to test built versions of your application regularly because code will often behave differently than in the editor. Doing this regul...