Black screen instead of block text on android

Hello!
I want to create a block with a lot of text (about 100 lines).
As an example, I take this example Phaser - Examples - Scrolling Text Box
If i add 30 lines to this example:
everything looks good on desktop, but in a mobile browser (only android), it’s just a black screen instead of text.
I noticed - if you reduce the text size, then small text is displayed. Or reduce the amount of text - then it is also displayed.
What is the best way to add a large amount of text?

I guess you might have exceeded the max texture dimensions, although it doesn’t seem very large. Log text.width and text.height. You could split them into separate text objects and then align those.

Try it without a mask also.

1 Like

This way is not helped.

Yes, it’s worked. Thanks.