The actor B takes each time the material of the actor A

I would like that the main actor takes the color of the secondary actor after that the latter has change color
so I have a simple material;

secondary actor ;

115848-capture11.png

115849-capture1.png

and my actor ;

A is a reference to my secondary actor in my actor bp

someone pls ??

Use an Event Dispatcher. Set up a new one in your secondary actor called OnColorChanged and give it an input of Linear Color. During BeginPlay in your primary actor you bind a custom event ChangeColor to the event dispatcher of your secondary actor. If you now call the dispatcher after you changed the color of your secondary actor in your input event the primary actor will receive a call to ChangeColor with the new color.

I don’t know what you want to achieve but this sounds like a problem that could be solved more easily with a Parameter Collection. This way your colors are always synchronized and you won’t need to worry about events and so on.

Thank you man it works perfectly with event dispatcher