Sometimes the text awkwardly stops and goes to the next line.

It writes "para" and then it removes "para" and continues at the second line.

This is how I draw the string:
- Code: Select all
currentTextString="Have you tried a \"Mindbreaker\" yet? This parasite was recently discovered.";
font.draw(batch, currentTextString.substring(0, (int)textDrawLength), 0,0, 663,Align.left,true);
I increase the text flow:
- Code: Select all
if ((int)textDrawLength < currentTextString.length())
{
textDrawLength+=(0.5f*TEXTSPEED);
}
It's not a big deal breaker, just looks a little weird.