StaticMeshComponent OnClicked doesn't work

When I bind an event to the functions onbegincursorover onendcursorover or onclicked from a StaticMeshComponent, they won’t execute since 4.12

Hello,

I’ve tested this in 4.11 and 4.12 and it seems to be working as intended. Could you provide your setup so I can ensure I am mirroring it properly?

Hi,

I updated one of our maps from 4.11 to 4.12 and then it stopped working. I also testet it with a new map this morning, where it worked. After serveral hours I finally found out, that one of our other blueprints was interfering, which was why it stopped working.
Anyway: thanks for your quick repsonse and sorry for bothering you!

just had the same problem. I’m connecting a custom function to OnClicked using C++. Could not compile anymore. Solution was to change the signature of your custom function to:

CustomOnClicked(UPrimitiveComponent* TouchedComponent, FKey key);

I also have the same problem