web3d / node_modules /three /src /core /InstancedBufferGeometry.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
445 Bytes
import { BufferGeometry } from './BufferGeometry';
/**
* @see <a href="https://github.com/mrdoob/three.js/blob/master/src/core/InstancedBufferGeometry.js">src/core/InstancedBufferGeometry.js</a>
*/
export class InstancedBufferGeometry extends BufferGeometry {
constructor();
groups: { start: number; count: number; instances: number }[];
maxInstancedCount: number;
addGroup(start: number, count: number, instances: number): void;
}