Custom Blueprint nodes style

Hi there

I making custom BP nodes inherited from EdGraphNode. My experience started from this litle [tutorial][1] (Thank you, G-Rath)

But these nodes don’t look like native BP nodes:

I just wanted to know how to make custom nodes (based on UFUNCTION) have a look like native nodes:

  • to have a colored caption
  • to have a named parameters

Ok
I see now that this look style suppose to mean current object methods

if you want colored captions and named parameters, dont use a CompactNodeTitle.
if you want Execution pins to call your function, dont use BlueprintPure.

Thanks for attention to my question. I’ll try to use your advice