Issue: Label with a lot of data

Hello
I have a problem with Label::createWithTTF. When i try to create an Label with createWithTTF (arial.ttf) and with a very big string, say 100 KB, then a long tail of this string will not be visible, also, all characters that are visible looks “fat” )) This problem don’t appear when string is not so big.

Here you can see how the tail of the string is invisible, and characters are fat.

Why this happen? And how can i fix this? Maybe i must use something else for this. I need to show very big strings.
Thanks!

This happen because Label uses SpriteBatchNode, and due to VBO limitations of 2^16 indices range, you can’t have more than 2^16 vertices in one batch. Another question is why authors don’t fix this issue? It is easy to fix it (((