We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bb1a13 commit 3394b08Copy full SHA for 3394b08
1 file changed
README.md
@@ -67,13 +67,13 @@ public class NewBehaviourScript : MonoBehaviour {
67
IEnumerator Start ()
68
{
69
var richText = "<color=blue>blue</color>black";
70
- yield return null;
71
var maker = new RichTextSubStringMaker(richText);
72
73
while (maker.IsConsumable())
74
75
maker.Consume();
76
uiText.text = maker.GetRichText();
+ yield return new WaitForSeconds(0.5f);
77
}
78
79
0 commit comments