@SebastianLague
  @SebastianLague
Sebastian Lague | [Unity] Procedural Planets (E06: simple biomes) @SebastianLague | Uploaded 5 years ago | Updated 3 hours ago
In this episode we add simple colour biomes to the planet.

Get the project files for this episode:
http://github.com/SebLague/Procedural-Planets

Note:
Two issues have been pointed out which I'd like to address: (will add these fixes at end of next video)
1) changing resolution causes uv out of bounds error. This can be fixed by checking mesh.uv.Length == uv.Length before assigning the uvs in ConstructMesh method.
2) biome colours appearing in wrong places when zoomed out (on certain devices). To fix this, mipmaps need to be disabled on the planet texture. In the ColourGenerator, replace with:
texture = new Texture2D(textureResolution, settings.biomeColourSettings.biomes.Length, TextureFormat.RGBA32, false);

Support the creation of more tutorials and get early access to new videos: https://www.patreon.com/SebastianLague
[Unity] Procedural Planets (E06: simple biomes)[Unity] Procedural Planets (E07: ocean depth)Introduction to Game Development (E13: falling blocks game 1/4)Unity Create a Game Series (E15. particle death effect)I Spent a Week Making an AIs Video Game Idea[Unity] Creating a 2D Platformer (E12. refactoring, ray spacing)[Unity] 2D Curve Editor (E06: road mesh)Introduction to Game Development (E09: space, parenting, rotation)Procedural Landmass Generation (E09: LOD switching)[Unity] Procedural Planets (E01 the sphere)Exploring How Computers WorkCoding Adventure: Ray Tracing

[Unity] Procedural Planets (E06: simple biomes) @SebastianLague