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.
Time for our asteroids to get physical! In this video we’re going to be moving beyond the simple instanced rendering methods we’ve been using previously and start actually creating real physical asteroids when we get close.
Let’s align our planet shader a bit more with the style of our game. We’re aiming for a low poly style, the fairly common style of indie game devs lately.
There are two ways to accomplish a low poly, flat style in 3D graphics. The first is to modify the smoothing on the mesh so that normal’s aren’t smoothed out.
Today we’re going to try something a little different! Lets explore building 3D models using the included tools in the Windows 10 Creators Update and see how useful these tools are for our game development needs.
Today we’re going to be designing and implementing an algorithm which can be used to insert data into our quadtree using some sort of conditional logic.
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.
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.
Asteroids VR needs an asteroid belt so we’re going to make one! In this video we’re going to begin work on our basic ring shader which will be used for drawing the planetary ring of asteroids at a long distance.
Time to start working on deforming our dynamically generated mesh. We’re going to be working on a physical simulation that deforms the mesh when things hit it.
Time to jump into some of the fun sides of 3D Graphics! In this video we’re going to be figuring out how to build a 3D Plane in Unity with a given number of subsections.