Skip to content

Commit 3394b08

Browse files
authored
Update README.md
1 parent 0bb1a13 commit 3394b08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ public class NewBehaviourScript : MonoBehaviour {
6767
IEnumerator Start ()
6868
{
6969
var richText = "<color=blue>blue</color>black";
70-
yield return null;
7170
var maker = new RichTextSubStringMaker(richText);
7271

7372
while (maker.IsConsumable())
7473
{
7574
maker.Consume();
7675
uiText.text = maker.GetRichText();
76+
yield return new WaitForSeconds(0.5f);
7777
}
7878
}
7979
}

0 commit comments

Comments
 (0)