How to get new line breaks in Blueprint?

Beware, the engine converts internally the shift+enter into unicode control codes, so while you can visually add it, if you need to make an operation like adding styles procedurally for the rich text block, it wont treat it as a shift+enter, but as unicode control codes, a line feed U+000A (int 10) and carriage return U+000D (int 13), so, its not the same thing

1 Like