Greetings to all!
I use JS:
function Update()
{
//draw the score in NGUI
GameObject.Find("LabelScore").GetComponent(UILabel).text += scorePoints;
}
Thus UILabel out display not the Score but infinite line of figures.
Example, if the Score is equal to zero, it deduces:
000000000000000000000000000000000000000000000000000 (infinitely).
How to solve? There is a something like .ToString () for (UILabel).text?
Excuse for my english
