Hundreds of features to explore
Games made in Construct
Your questions answered
Popular & trusted by schools and Universities world-wide
Construct 3 runs in the browser & works offline
Students do not need accounts with us
Our educational partners
Free education resources to use in the classroom
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
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.