csharp
https://i.ytimg.com/vi/M6nHIAK83vQ/mqdefault.jpg
Lets Make a 3D Print Generator
· ☕ 2 min read
3D Printers are cool. Neater still the tech that drives them isn’t nearly as complex as it might seem.

https://i.ytimg.com/vi/0H1FVOphmIo/mqdefault.jpg
Lets Make a Grass Renderer
· ☕ 1 min read
Lets look into how to add grass to terrain. We’re going to combine instanced rendering and raycasting to dynamically place grass on the terrain.

https://i.ytimg.com/vi/Q2s98eNhJ1k/mqdefault.jpg
Ludum Dare 38 - World of Zero Live! - Day 2.2
· ☕ 1 min read
It’s time for Ludum Dare 38! Come hang out as we build… something. Something awesome! Tea of the day: Taiwan ‘Jin Xuan’ Milk Oolong Tea.

https://i.ytimg.com/vi/CAh2qwyxEMM/mqdefault.jpg
Ludum Dare 38 - World of Zero Live! - Day 3
· ☕ 1 min read
It’s time for Ludum Dare 38! Come hang out as we build… something. Something awesome! Learn more about the Ludum Dare or enter your own project here: https://ldjam.

https://i.ytimg.com/vi/z0J-g4v0SE4/mqdefault.jpg
Ludum Dare 38 - World of Zero Live!
· ☕ 1 min read
It’s time for Ludum Dare 38! Come hang out as we build… something. Something awesome! Learn more about the Ludum Dare or enter your own project here: https://ldjam.

https://i.ytimg.com/vi/0wP2_7oYv9U/mqdefault_live.jpg
Ludum Dare 38 - World of Zero Live! - Day 2
· ☕ 1 min read
It’s time for Ludum Dare 38! Come hang out as we build… something. Something awesome! Learn more about the Ludum Dare or enter your own project here: https://ldjam.

https://i.ytimg.com/vi/g4j8WvC1Ct4/mqdefault.jpg
Building the World of Zero Arcade Live
· ☕ 1 min read
Continuing work on the World of Zero Game. Live Stream to test things out before Ludum Dare and get some work done on our World of Zero Arcade game.

https://i.ytimg.com/vi/9bTFVaKGIIQ/mqdefault.jpg
Lets Make a Pixelated Image Effect
· ☕ 2 min read
Implementing an image effect is actually fairly straight forward in Unity. All it requires is a simple shader and a script with OnRenderImage specified.

https://i.ytimg.com/vi/PQucU3VFiBA/mqdefault.jpg
Pattern Matching and Tuples in Visual Studio 2017 and C# 7
· ☕ 2 min read
Visual Studio is now 20 years old and the next generation of C# has also recently been released. We’re going to explore two of the features I’ve been most excited about in C# 7: Tuples and Pattern Matching!

https://i.ytimg.com/vi/KngA-rV4H9w/mqdefault.jpg
Implementing Marching Squares - Lets Make 2D Voxel Terrain - Part 11
· ☕ 2 min read
We’re finally there! Time to add the marching squares algorithm to our voxel terrain. Unlike our previous implementation marching squares is going to look at the four nearest points in our quadtree and treat them as vertices.

https://i.ytimg.com/vi/X9Tqng-g2DQ/mqdefault.jpg
Creating an Object Pool - Lets Make an Asteroid Belt- Part 6
· ☕ 2 min read
In this video we’re going to be implementing a Generic Object Pool. Object Pooling is a design pattern focused on removing expensive operations such as instantiation or deletion of objects and instead relying upon a constant “pool” of objects which can be activated or deactivated as needed without needing to actually create new ones.

https://i.ytimg.com/vi/QHdTUyIOvVg/mqdefault.jpg
Marking the Globe - World of Zero Arcade- Part 2
· ☕ 2 min read
We’re going to continue work on our World of Zero Arcade project. More controller work specifically. In this video we’ll be looking into adding markers to our globe so you can select where you are in the world.

https://i.ytimg.com/vi/YSIN1HZsgAk/mqdefault.jpg
Real Time Voxel Updates - Lets Make 2D Voxel Terrain - Part 6
· ☕ 2 min read
Today we’re going to be making the voxels in our 2d voxel terrain update in real time! This means we’re going to make it so that we can easily insert and delete elements from our tree and also modify things so we’re able to regenerate our mesh when that happens.

https://i.ytimg.com/vi/I_h3VaRVSZc/mqdefault.jpg
Filling the Quadtree - Let's Make 2D Voxel Terrain - Part 3
· ☕ 2 min read
Time to put something in our quadtree. We’re going to build two scripts in this video. The first will be one of potentially many “generators” which insert data into our quadtree.