Changing material parameter, but it does not change material?

Hello,

I’m trying to simple change color parameter in material.
Variable changes, but the material not, what I’m doing wrong?

Simple Material.

Than, I create a material instance, and UMG Widget like this:

And trying to change variable in my character controller:

You need to assign the dynamic material to your mesh first. Try setting the material on the mesh with the dynamic material you created. Right now you just have a material instance sitting in memory.

Everything you see in the content browser is an archetype or a template/default if you will. Pretty much everything you do at runtime SHOULD only modify temporary instances of that archetype and thus their changes should not be reflected in the content browser or any other copy unless you specifically tell it to do so.