1
NGUI 3 Support / Trying to add text to a UILabel but I think I'm doing it wrong
« on: March 11, 2014, 08:44:12 PM »
I'm trying to have text appear over time within an UILabel, but nothing is showing up onscreen when I run the corroutine. It works outside of the corroutine, but not within.
Not sure if this how you do it properly, but it doesn't seem to be working.
- string dialogue = "test";
- for(int i = 0; i < dialogue.Length; i++)
- {
- speechLoc.text += dialogue[i];
- }
Not sure if this how you do it properly, but it doesn't seem to be working.
