Unreal Engine version used is 4.32.
First of all we need to understand, that you cannot edit the material attached to an mesh directly at Runtime. A typical material cannot be edited or changed without recompiling. Thus, we make use of something called a Material Instance. An instanced material allows us to change the material without needing to do expensive recompilations.
There are two types of Instanced Materials:
For our case we will be using dynamic material instance, as this type will allow us to edit properties at runtime.
FYI: Not all material parameters can be changed at runtime. By default, some basic properties are available, such as changing the colour, but you’ll need to expose the parameters in case you need more complex ones.
Now that that is out of the way let’s look at how to change the properties of a material from an object at runtime.
First, we need to create a dynamic material instance of the material attached to the object.
UMaterialInstanceDynamic* dynamicMaterial = UMaterialInstanceDynamic::Create(*objectMaterial, *InOuter);
With this line you can create a dynamic material instance
which we can change the properties from. The constructor requires two values:
After creating the dynamic material instance you need to set the material on the object, by doing:
material->SetVectorParameterValue(TEXT("DecalColor"), FLinearColor::Red);
Here, the first parameter passed through is the element index, in case the mesh has multiple elements (think of sub-meshes).
Afterwards, having the dynamic material instance set we can start editing it’s properties.
There are various kind of material properties, all material
properties will be of one of the following types:
All these types come in two ways to be set, either through the parameter index, or through its value. Below you can find some examples. To know what each parameter needs check the UE4 Documentation.
There we go, now you can edit any material property at runtime!
Here’s a gif of what you can do:
I’m changing the decal material colour depending on a tag on
an object. This can be used for mouse over enemies, or anything else!
You can find more information about the following topics here:
https://docs.unrealengine.com/en-US/Engine/Rendering/Materials/MaterialInstances/index.html and https://docs.unrealengine.com/en-US/API/Runtime/Engine/Materials/UMaterialInstanceDynamic/index.html