1 minute read

[How To Bake Texture Maps Blender 3.5 Beginners Tutorial](https://www.youtube.com/watch?v=zFLxWRfs4Ak)

Baking 이란?

  • Texture baking is a process of transferring texture and material data into image textures.
  • We can bake color maps, roughness maps, normal maps, metallic maps, etc.

There can be many reasons to bake textures.

Let’s say we designed a 3D model in Blender and created procedural materials and textures with Blender nodes.

In order to export the model to another 3D software with textures, we need to bake the textures before exporting.

Because procedural materials can not work outside of Blender. They need to be converted to image textures.

In this way, we can export the model to game engines such as Unity and Unreal or another 3d software.

Complex materials slow down Blender and other software especially when we work with large scenes.

We can bake the materials into image textures. So, 3D programs won’t spend lots of time computing and rendering.

It’s very important for game developers.

Texture baking can also be used to optimize a high poly mesh for game engines. We can add some details to low poly models without high polygon numbers.

In other words, we can transfer the high poly mesh data to a low poly mesh. It is a very useful technique for making animation and game characters.

bandicam 2024-06-25 14-20-31-652

Alright.

In this tutorial, we will create a procedural material for the barrel model, and bake the material into image textures.

Baking Diffuse(Color) Map

bandicam 2024-06-25 14-04-36-428 bandicam 2024-06-25 14-05-22-661

Baking Roughness Map

bandicam 2024-06-25 14-05-51-990 bandicam 2024-06-25 14-06-02-960 bandicam 2024-06-25 14-06-12-074

Baking Normal Map

bandicam 2024-06-25 14-15-18-112 bandicam 2024-06-25 14-15-28-588

Baking Metallic Map

bandicam 2024-06-25 14-16-02-996 bandicam 2024-06-25 14-16-07-403 bandicam 2024-06-25 14-16-13-117


Procedural texture란?

In computer graphics, a procedural texture is a texture created using a mathematical description(i.e. an algorithm) rather than directly stored data. The advantage of this approach is low storage cost, unlimited texture resolution and easy texture mapping. These kinds of textures are often used to model surface or volumetric representations of natural elements such as wood, marble, granite, metal, stone, and others.

image

출처: 위키피디아 Procedural texture

Leave a comment