I need to display large amounts of similar geometry (e.g. cubes, sphere, cylinders). Each shape would have the same mesh, just translated, scaled, or rotated. It might have different attributes like color.
Below is simple example of doing this in a loop for a 50x10x50 grid:
https://www.babylonjs-playground.com/#3QW4J1#1637
It starts to drag after this (7fps in the example)
What I want to get closer to is 1000x1000x1000 (but 100x100x100 would work). Can you suggest some better technique to doing this? I’ve seen a few folks play with voxels in babylon.js which might be a similar problem.