Is it possible to change color of pin of USTRUCT?

Hi.

Is it possible to change color of pin of USTRUCT?

For example, I have many USTRUCTs and I want to set up custom pin color for BP Editor for each of them.

Is it possible to do this?

Thank you.

You need to create your own Pin visualiser, i heard about it here:

Here the default factory he was showing:

https://github.com/EpicGames/UnrealEngine/blob/8a80b5541f69a79abf5855668f39e1d643717600/Engine/Source/Editor/GraphEditor/Private/NodeFactory.cpp#L253

Here is diffrent pins classes:

https://github.com/EpicGames/UnrealEngine/tree/8a80b5541f69a79abf5855668f39e1d643717600/Engine/Source/Editor/GraphEditor/Private/KismetPins

Not exacly know hoe to modify this, or you override or register something or edit engine code.
Remeber to keep editor code in sperate module that compiles only in editor builds

Thank you!