Instancing
Instancing is a rendering technique that allows you to draw many copies of the same mesh with different positions, rotations, and scales using a single draw call. This dramatically improves performance when rendering thousands of similar objects.
This example demonstrates instanced rendering with 10,000 cubes arranged in a sphere formation. Each cube has its own position, rotation, scale, and color, but they're all rendered efficiently as a single mesh.