TextMesh Line Break "/n"?

Hi there,
I am trying to create a break in my string via the textmesh… in other words create a line break.

Various forms of “/n” are not working for me.

Example…“1234/n5678”;
Does not create a new line.

??

Escape sequences use a backslash. Try “\n”

1 Like

Excellent,
Thank you.

!!