Hi! I added a new dictionary file to my project to add a list of unlock criteria for my game. When I copied the old text with linebreaks it added \n\n in the string but these are not converted to linebreaks and just displayed. Is it possible to use a "newline" command in a dictionary file somehow?
Develop games in your browser. Powerful, performant & highly capable.
Found a workaround with replace. :)
Set Text to:
replace(HowToUnlock.GetDefault(Text.ID, ""),"\n",newline)
\n in the string will be replaced with newline.