public void SetText(string text) { for (int i = 0; i < text.Length; i++) { if (i > 0 && i % 50 == 0) { _stringBuilder.Append("\n" + text[i]); } else { _stringBuilder.Append(text[i]); } } _textSprite.Text = _stringBuilder.ToString(); _stringBuilder.Clear(); _textSprite.UpdateAABB(); DrawBubbleSprite(); }