Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

Add float value to ui text in unity

//Attach your Text Object in the Inpsector
public Text goldUi;
float gold = 3;

goldUi.text = "You have" + gold.ToString("00") + "gold";
//This will display: You have 3 gold
 
PREVIOUS NEXT
Tagged: #Add #float #ui #text #unity
ADD COMMENT
Topic
Name
8+2 =