Docs/tuto_A_material_customization.md
The CARLA team prepares every asset to run under certain default settings. However, users that work in a build from source can modify these to best suit their needs.
!!! Important This tutorial only applies to users that work with a build from source, and have access to the Unreal Editor.
In CARLA, there is a set of master materials that are used as templates for the different parts of the vehicle. An instance of these is created for each vehicle model, and then changed to the desired result. The master materials can be found in Content/Carla/Static/GenericMaterials/Vehicles, and these are the following.
Create instances of the master materials and store them in the corresponding folder for the new model. Here is an example of the instances created for the police car available in the blueprint library, vehicle.dodge_charger.police.
<div style="text-align: right"><i>Instanced materials for the police car blueprint.</i></div>Generic documentation for materials and how to work with them can be found in the UE Docs. All the materials can be modified to a great extent, but only the exterior one has properties worth mentioning. Others have certain properties that can be changed, such as opacity and color in glass materials, but it is not recommended to do so, except for specific purposes.
The exterior material is applied to the body of the car, and it is the one that can be customized the most.
Amount — Opacity of the texture.Color — Base color of the dust texture.Tiling — Size and repetition of the dust texture pattern.Thickness — Density of the dust.Roughness — Decrease of the car's metallic reflections due to dust.On/Off — Enables or disables the feature.Scale — Size of the flakes.Brightness — Intensity of the sparkle.Color — Base color of the particles.Height — Portion of the car where mud appears.Mud_Color — Base color of the mud texture.Mud_Tiling — Size and repetition of the mud texture pattern.Mud_Thickness — Density of the mud.On/Off — Enables or disables the feature.Scale — Size of the bumps created by the alteration of the normal map.ClearCoat — Opacity of the coating.ClearCoat_Brightness — Glossiness of the resulting material.ClearCoat_Metallic — Reflection of the resulting material.The materials applied to buildings are made of four basic textures that are combined to determine the basic properties of the material.
RGB — Channels with the base colors.Alpha — This channel defines a mask that allows to modify the color of the portions in white. This is useful to create some variations from the same material.ORME — Maps different properties of the material using specific channels.
Ambient occlusion — Contained in the R channel.Roughness — Contained in the G channel.Metallic map — Contained in the B channel.Emissive mask — Contained in the Alpha channel. This mask allows to change the emissive color and intensity of the portions in white.Normal — Contains the normal map of the material.
RGB — The normal map information.Emissive — If applicable, this texture is used to set the emissive base colors of the texture.
RGB — Color information for the emissive elements in the texture.Similarly to car materials, a building material can be greatly changed if desired, but it is only recommended if the user has some expertise with Unreal Engine. However, there is some customization available for the two main shaders that buildings use.
Glass shader — M_GlassMaster.
Opacity — Enable color changes on the white area on the Diffuse Alpha texture.Color — Tint to be applied based on the white area on the Diffuse Alpha texture.Building shader — M_MaterialMaster
Change Color — Enable color changes on the white area on the Diffuse Alpha texture.Color — Tint to be applied based on the white area on the Diffuse Alpha texture.Emissive Texture — Enable the usage of an Emissive texture.EmissiveColor — Tint to be applied based on the white area on the ORME Emissive mask texture.Emissive atenuance — Factor that divides the intensity stated in BP_Lights to obtain proper emissive values.RoughnessCorrection — Changes the intensity of the roughness map.MetallicCorrection — Changes the intensity of the metallic map.NormalFlatness — Changes the intensity of the normal map.That is a wrap on the most remarkable ways users can customize the materials of vehicles and buildings.
Any doubts that may arise are more than welcomed in the forum.
<div class="build-buttons"> <p> <a href="https://github.com/carla-simulator/carla/discussions/" target="_blank" class="btn btn-neutral" title="Go to the CARLA forum"> CARLA forum</a> </p> </div>