I was trying to implement batch mesh of three js into babylon js, which lets you draw different geometries with same material into single draw call. I have managed to port the initial version of it. But it would be cool to have it core the way it is in Three js using webgl multi draw extension
@Bhushan_Wagh Just to clarify: say I have a low poly game. All the level objects (plants, boxes, walls, doors, etc.) share the same (palette) material.
Multi draw means I can leave all these level objects as individual meshes and still only need one draw call. Is that right?
Also, can I add and remove individual meshes to the multi draw call?
Also also, can some of the multi draw meshes be animated?
Super cool! Wondering whats the upper bounds on this? With the SPS system depending on the geometry it will crash around 200k polyhedrons. Could test this quickly if you uncap your slider in the demo.
I guess mine won’t be able to handle that much, since I am recreating meshes, instead of reusing them That would be bottleneck, sps has great api to handle that, it takes number of copies to add with mesh. But while testing I tried around 55k static instances and was working fine and 20k animated instances on each frame.
I was trying to test performance against SPS, I updated the example, so you can test it too. But bit weird thing is SPS updates transformation really well if it has just multiple copies of one mesh only but starts degrading in performance when you have multiple copies of multiple meshes. I add way to check that to in demo.