Hi, I saw that unreal functions was commented using :
/**
* FunctionDescription....
* @param ParamName ParamDescription...
* @return ReturnDescription...
*/
UFUNCTION(...)
void FunctionName();
This gives a nice tooltip when hovering a function, however I can’t make it work for custom functions, do I have to include a specific header or something?
Regards