csharp
https://i.ytimg.com/vi/0mk-Kjab4as/mqdefault.jpg
Adding Unity Support - SignalR in Unity - Part 2
· ☕ 2 min read
The next part of this experiment is integrating Unity with the rest of our SignalR components so that they can communicate with one another.

https://i.ytimg.com/vi/oKwDx4sDSHQ/mqdefault.jpg
Supporting Grid Rendering - LINQ for Unity - Part 3
· ☕ 1 min read
Unity’s Editor UI does not support rendering elements in a grid. For some elements like Textures, Meshes and Materials rendering the results in a vertical list does not use the space of the LINQ for Unity editor view very effectively so a grid-based view could provide a much more concise and cleaner UI.

https://i.ytimg.com/vi/DkHth2N2-vg/mqdefault.jpg
Demoing the Tool and Adding Command History - LINQ for Unity Stream - Part 2
· ☕ 1 min read
Another VOD from the World of Zero Twitch development stream. This is a demo of some of the work that’s happened on the LINQ for Unity tool behind the scenes and also covers introducing command history so that we can track queries run against the tool and quickly rerun them.

https://i.ytimg.com/vi/V2KwrmjNIrY/mqdefault.jpg
Building a Tree-Based Calculator in C#
· ☕ 3 min read
Let’s explore a calculator that can solve a variety of equations dynamically. We’ll be able to use this solution to explore tree data structures and specifically the use of binary trees to represent and solve common math problems.

https://i.ytimg.com/vi/hr6ox4bg3Ow/mqdefault.jpg
Implementing Scene Switching - An Elevator Between Scenes - Part 2
· ☕ 1 min read
Continuing our elevator and asynchronous scene management system development let’s try to build a 3-scene system that will allow us to create a base scene with the global game objects (our player, scene transition elevator, camera etc) and the two “floors” we’ll be transitioning between.

https://i.ytimg.com/vi/pauxOqYU038/mqdefault.jpg
Let's Make a Lazy String Parser in C#
· ☕ 3 min read
Let’s create a quick string parsing script that can read a long string and return a delimited set of results (we’ll be finding words).

https://i.ytimg.com/vi/48jSjqhevw4/mqdefault.jpg
Using Generic Type Aliases in C#
· ☕ 1 min read
C# includes a feature that allows you to use the using keyword to define aliases for different types or namespaces in your code.

https://i.ytimg.com/vi/GKG-vUFt3D4/mqdefault.jpg
Using ContextMenu and ContextMenuItem in Unity 3D
· ☕ 2 min read
There are a lot of options available to you when you want to test your project in Unity3D and validate that your code actually does what you think it does.

https://i.ytimg.com/vi/Oq2ytDvHTYM/mqdefault.jpg
Learning Async Unity Scene Loading
· ☕ 2 min read
I’ve been working on re-learning how to work with scenes in Unity and am planning a larger project around the feature, but wanted to bring all of you on my journey.

https://i.ytimg.com/vi/BHtKrZSuZMk/mqdefault.jpg
Pseudo-Random Colors with Hashed Strings
· ☕ 2 min read
In this video we’re going to explore a way I approach reproducible pseudo-random number generation that uses calculated hashes to select a random item or property for an object.

https://i.ytimg.com/vi/O4qPd5kdjgc/mqdefault.jpg
Rotation Math Tricks - Using Unity's Quaternion Operators
· ☕ 2 min read
Unity provides a few operators that can make some common tasks with quaternions easier to accomplish. You can multiple a quaternion and vector to rotate the vector by the provided quaternion’s rotation or multiple two quaternions together in order to add the two rotations they represent together.

https://i.ytimg.com/vi/KXj5pAzmka8/mqdefault.jpg
Learning to Deserialize YAML in C# with YamlDotNET
· ☕ 2 min read
YAML (Yet Another Markup Language) provides a way to store structured data in files. It can be used in similar ways to other JSON or XML files and is commonly used with Kubernetes and Docker Compose.