unity3d
https://i.ytimg.com/vi/O5eXHyDLVmw/mqdefault.jpg
Math in the Unity Inspector - Quick Tip
· ☕ 1 min read
Unity has made it a bit easier to compute some values in their editor windows by allowing you to enter math formula’s into the inspector.

https://i.ytimg.com/vi/4-eTwIyntcQ/mqdefault.jpg
Rotating Unity Gizmos - Quick Tip
· ☕ 2 min read
Gizmos are a really handy way to indicate a whole range of interesting information during development of your project.

https://i.ytimg.com/vi/8cZo-c-f1yc/mqdefault.jpg
Exploring Dot Products in Unity
· ☕ 2 min read
Dot Products are a really easy and fun way to compare Vectors in space. When comparing two normalized with a dot product the result will be the cosine of the angle between the two Vectors.

https://i.ytimg.com/vi/FeL4uWGdtUY/mqdefault.jpg
Building a Custom Node in Unity's Shader Graph
· ☕ 2 min read
With the introduction of Shader Graph Unity also added support for Custom Nodes you can build yourself by creating custom CodeFunctionNode.

https://i.ytimg.com/vi/-vGNd8pnbYs/mqdefault.jpg
Learning How To Use Step and Smoothstep in Shaders
· ☕ 1 min read
A number of people have commented that we should be using step or smoothstep instead of some of the branching if/else blocks we’ve used in other videos (branches in shaders tend to perform worse than other functions).

https://i.ytimg.com/vi/R05OYXNDyas/mqdefault.jpg
A Circle Shader in Shader Graph - Ripple in Shader Graph - Part 1
· ☕ 2 min read
Lets learn Shader Graph by building our ripple shader entirely within Shader Graph. The goal of this series is to reproduce the ripple shader we’ve been working on and compare/contrast the process of building the same shader in both tools that Unity makes available to you.

https://i.ytimg.com/vi/UVdXUXv3Bw8/mqdefault.jpg
Point and Ripple - Ripple Shader - Part 2
· ☕ 2 min read
Welcome back! Let’s expand our Ripple Shader so it’s a bit easier to control and set the groundwork for some of the upcoming features we’ll want to build for it.

https://i.ytimg.com/vi/laBPpyXfBWo/mqdefault.jpg
Live Coding a 3D Voxel Cube in Unity
· ☕ 2 min read
Lets build a basic colored voxel “chunk” from start to finish! We’ll focus on constructing three main components: a Chunk which stores data about the world, A ChunkGenerator which fills the Chunk with initial information (it builds the world) and a MeshGenerator that converts our Chunk into a Mesh you can see.

https://i.ytimg.com/vi/SIsMR5OYM8c/mqdefault.jpg
Building a Game Board in Unity
· ☕ 1 min read
We’re going to return to a project I built before starting this channel. Minefield, my take on Minesweeper for mobile.