Hi everyone,
Im currently working on a project where I am displaying the player stats within a text box within a GUI.
The thing is when I test the game they all end with an underscore.
eg
Spaceship level 12 _
I have got this code in my Global Script like so
function repeatedly_execute_always()
ShipCurrLvl.Text = String.Format ("%d",Ship.lvl);
Is there a way of removing the underscore?
I think I might have to use labels instead, is this correct ?
Please and thank you.
I would use a label instead indeed.
I usually use a Textbox to get input from a player, like the savegame gui where you type in a savegame name.
Yeah, that "underscore" is the cursor :)
Cheers folks :)