I’m working on a dialogue system using Unity’s UI where text is printed 1 character at a time. This means that words near the right side on the Text element will begin printing on one line, and then be moved to a new line when the other characters are added. Ex: the word ‘Conversation’ below started on the top line, then was moved to the next line.
This is rather jarring. How would I measure the size of my Text element/line to see if this will happen, so I can manually insert my own new lines (
)?