Let's say you entered text in the event sheet like this:
"hello \n construct3!"
The result I want is as follows:
hello construct3!
hello
construct3!
But the actual result is as follows:
hello \n construct3!
How do I enter the text next line?
MyText set text to "hello" & newline & "construct3!"
But you can't use this in variables, arrays etc. Here is how I usually do this:
Variable s = "Hello^construct3!" MyText set text to replace(s, "^", newline)
Develop games in your browser. Powerful, performant & highly capable.
I didn't find a newline in the documentation. (It's my fault)
Thanks I was looking for