View Single Post
02-09-18, 10:44 PM   #2
dssd
A Fallenroot Satyr
Join Date: May 2016
Posts: 25
I'd guess that you're hitting the vertex or index buffer limit. SetColorTexture will create a texture of that color and would prevent render batching. Instead use SetColorTexture(1, 1, 1, 1) to create a white texture and then use :SetVertexColor to tint them. That should allow everything to be batched.
  Reply With Quote