How do I add a newline built into XML?
I'm wanting to make a preset list without having to make many text objects or worry about Word Wrap.
1. Text:
2. Text:
3. Text:
Develop games in your browser. Powerful, performant & highly capable.
Use a custom string to mark newlines in the text inside the XML. I used "\n\". When retrieving the text from the XML I used replace() to replace all instances of "\n\" with newline (without quotes around the newline).