Created
April 1, 2020 09:24
-
-
Save openroomxyz/dd3c57b15abc42fb72616e801f0b93ab to your computer and use it in GitHub Desktop.
Unity : How can i generate easily mesh that is bigger than 65535 vertex ? (The 16-bit limit)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mesh = new Mesh(); | |
mesh.indexFormat = UnityEngine.Rendering.IndexFormat.UInt32; //using 32 bit index insted 16 bit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment