- Home /
64k vertices limitation
Hi, I got a problem with the 64k limitation. Is there any way to get arount this limitation? I do a huge landscape visualisation with a high res DLM imported as a .obj and converted to a Unity terrain to get a LOD system. But Unity splits it into 100 parts. So I need to get around this limitation!! Any ideas?
Answer by mviuk · Jun 27, 2012 at 09:30 AM
The limitation is because the indexes that uploaded to the GPU are stored as 16 bit unsigned integers which means a limit like you say of 65536 vertices per mesh. Unity splitting the mesh into batches is itself Unity getting around the limitation. This is the default limitation built into the underlying API (OpenGL or DirectX). I believe both OpenGL and DirectX have options for using 32 bit indexes (could be wrong about this bit), but as far as I'm aware there's no way in Unity3D to access that.
Answer by MarvRaue · Jun 29, 2012 at 12:18 PM
Thank you, that explains alot. I think Ill find a way to join my mosaik terrains. Its just gonne be a lot of cosmetic work ;)
Your answer
Follow this Question
Related Questions
Set Vertices to Ground 1 Answer
How to make a procedural mesh that can be edited on a per- vertices basis 1 Answer
get terrain vertices? 2 Answers
Generate terrain tutorial by brackeys not working 0 Answers
Editing Terrain Topology at Runtime 0 Answers