csharp
https://i.ytimg.com/vi/zdHvM6XU4rY/mqdefault.jpg
Building and Drawing a Graph in Unity using Gizmos
· ☕ 2 min read
Unity’s Gizmos can be a really powerful way to debug your objects and relationships. In this video we’re going to be focusing on drawing a graph, a set of nodes and edges with unique characteristics.

https://i.ytimg.com/vi/yOnth9uTLlA/mqdefault.jpg
Mouse Following Top-Down Space Ship Controller
· ☕ 2 min read
Lets make a top down controller that plays a bit more nicely with the mouse. This will allow us to direct our ship by having it move towards the mouse instead of requiring the controller or keyboard input we have required up to this point.

https://i.ytimg.com/vi/8-UBALp1xQc/mqdefault.jpg
Rigidbody Top-Down Spaceship Controller
· ☕ 1 min read
We have a spaceship that can fly around, but we have a problem. It can fly through things. Lets fix that by changing our current transformation modification into physical forces on a rigidbody!

https://i.ytimg.com/vi/01YSGK7OeVQ/mqdefault.jpg
Using Var - Implicitly Typed Fields - Quick Tip
· ☕ 2 min read
C# is a statically typed language meaning you must specify what type your variables are when declaring them. These types are verified by the compiler as you build your project.

https://i.ytimg.com/vi/lFsgmxzw7IU/mqdefault.jpg
Inline Initializing C# Dictionaries - Quick Tip
· ☕ 1 min read
C# allows you to seed data into your dictionary when it’s constructed by using an initializer function that accepts a series of key, value pairs after its constructor that causes those elements to be automatically inserted into your Dictionary’s for you.

https://i.ytimg.com/vi/F11BhVjmyd0/mqdefault.jpg
Inline Initializing C# Lists - Quick Tip
· ☕ 1 min read
C# includes a method for initializing Lists that means you do not need to repeatedly Add("foo") throughout your code.

https://i.ytimg.com/vi/xQYmSVbacG4/mqdefault.jpg
Interpolated Strings in C# - Quick Tip
· ☕ 1 min read
C# has the ability to build strings in a number of ways. The simplest is concatenating them, but it’s not always the easiest or best solution depending on what you’re making.

https://i.ytimg.com/vi/xYl5qRgOw_M/mqdefault.jpg
Top Down Following Spaceship Controller
· ☕ 1 min read
Now that we have a spaceship controller that can take a direction input and turn that into movement we can start to play around with it.

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/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.