Instanced Rendering
One cube mesh + one instance stream, with 125,000 independently animated cubes.
export type InstanceCount = 50 | 100;
export interface InstancedRenderingControls { readonly count: InstanceCount }
export const DEFAULT_INSTANCED_RENDERING_CONTROLS: InstancedRenderingControls = { count: 50 };