Tasharen Entertainment Forum

Support => NGUI 3 Support => Topic started by: ilanmayer on May 07, 2014, 10:14:22 AM

Title: Scroller with text label with large amount of text
Post by: ilanmayer on May 07, 2014, 10:14:22 AM
If the amount of text exceeds a certain amount, no text is rendered, and the error "Too many vertices on one panel: 99608" (number varies) is displayed in the Unity log.
Title: Re: Scroller with text label with large amount of text
Post by: ArenMook on May 08, 2014, 01:30:53 AM
Sounds about right. 100k vertices implies 25,000 characters. Maximum allowed number of vertices in Unity is 64k. If you need to draw an entire novel like that, separate it into different panels, each with its own draw call.

Also don't use the "outline" effect on the label. It multiplies the number of required vertices by a factor of 5.