I am trying something like:
if (superText.latestNumber <= TMPDummytext.text.Length) {
superText.readDelay = 0.02f;
superText.Read (dummytext.text.Length*0.02f);
} else {
superText.readDelay = 99999999f;
superText.Read (dummytext.text.Length*0.02f);
}
where dummytext is the text being controlled by the third party tool. But the stm.Read(float time) sometimes don't match the dummytext reading time. Is there a way to do stm.Read(int characterIndex) to make STM read from the character index?