Multiline tooltip for Variables

This has been requested/asked in 2014 few times but still there is no any sight of it. It would be really cool to have tooltips in variables like we have in Widgets, where we can Shift+Enter to break line. Please EPIC just add this already :slight_smile:
If anyone knows a “way” to do it please let me know. Adding lots of spaces makes line to break but that makes tooltip very long and annoying.

Hi, I know this might be too late but I just came across this and thought I will put out the answer just in case anyone else is looking.

Simply said the good old \n should do the trick e.g.

UPROPERTY(EditAnywhere, Category = Firing, meta = (ToolTip = "Speed in cm/s \n 100000 = 1000m/s"))
float BulletSpeed = 100000;

P.S. I am working in unreal version 4.19.2

How could do it to blueprint class?