• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

SOLVED Line Break Help

I can't seem to figure out the line break for text. I am just looking for a simple way to split a string of text to another line, but everywhere I look I get something different and it doesn't work. Even using the manual I can't get it to work. Am I missing something? Thanks!
 

FoxyOfJungle

Kazan Games
Anyway, you can skip a line in the text by entering \n in the text.

GML:
text = "The quick brown\nfox jumps over the lazy \n DOG";
The quick brown
fox jumps over the lazy_
_DOG

_ = space (forum does not allow space as first character)
 
Top