My Experiments
Demonstrations of my ongoing personal studies
Noise texture generation done in Unity by me
Noise Maps
I decided I wanted to learn more about the “Marching Cubes” algorithm, which started me with learning about how to generate and use noise. Here I learned how to make my own system for generating and controlling Perlin noise and then applied it to a texture on a mesh.
Marching Squares where the user can define where the 2D mesh can be built by the algorithm
Marching Squares
My first start to learning Marching Cubes is to learn the 2D version first, called Marching Squares. I was able to set up a system that generated a series of nodes. From there, using simple UI integration, I made it so we can fill or empty nodes. Filled nodes will then have a mesh generated to match the orientation of the set up. With this system we could do effects from projects like Terraria, where the world is able to be generated and editable by the player.
Using noise to create terrain maps
Terrain Generation
My next step after generating noise is applying it to an effect. Here I learned how to generate a mesh and control the placement of each vertex based on the value of the noise map. Using octaves and dampening I was able to produce more believable effect for mountainous terrain.
Creating my own Unity Editor extension to display Splines
Splines
On my way to get to Marching Cubes I got to learn about something I’ve been wanting to learn more about for a while, Splines! While learning how to connect points with a curve I also got to learn how to modify the Unity editor to display the splines I was trying to create. After creating the splines I created a component that can follow the splines like a path to open up all sorts of interesting effects.