So i am currently working on a game, and i want to show a description of the selected object, but with multi lines. The description is a string value, and it is written like this: + Add Gloves\n + Better Grip\n 30 > 40 RANGE. It actually does show up this "+ Add Gloves\n + Better Grip\n 30 > 40 RANGE.", and it is supposed to look like below:
+ Add Gloves + Better Grip + 30 > 40 RANGE
This is how i am doing it:
frame.MainFrame.InformationFrame.UpgradeFrame.Description.Text = upgradeInformation[1]
If anyone could help me, i would appreciate it!