Reputation: 199
I tying to using Text component for explain the terms and conditions but If I enter more than 15000 characters then error occurred with "ArgumentException: Mesh can not have more than 65000 vertices"
So is there any good way for handle very long sentences in Unity?
Upvotes: 1
Views: 715
Reputation: 1015
So to get around this limit we will need to split the text across multiple meshes. You can do this by either;
Upvotes: 2