우원진
우원진

Reputation: 199

How to handle very long sentences in Unity?

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

Answers (1)

Mateusz Siniarski
Mateusz Siniarski

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

Related Questions