1using System.Collections;
2using System.Collections.Generic;
8 private byte MaxLength = 12;
10 private string fullText;
11 private byte rotation = 0;
15 fullText =
label.text;
16 if (fullText.Length <= MaxLength)
24 if (Time.frameCount % 60 == 0)
26 var txt = fullText.Remove(0, rotation);
27 if (txt.Length > MaxLength)
29 txt = txt.Remove(MaxLength);
33 if (
string.IsNullOrEmpty(
label.text))