[three] Fixed InstancedBufferAttribute definition (#34142)

This commit is contained in:
Nicholas Sunderland
2019-03-30 05:14:08 +01:00
committed by Ron Buckton
parent 2e44c5c855
commit d612bb2ee1

View File

@@ -1477,7 +1477,7 @@ export namespace GeometryUtils {
* @see <a href="https://github.com/mrdoob/three.js/blob/master/src/core/InstancedBufferAttribute.js">src/core/InstancedBufferAttribute.js</a>
*/
export class InstancedBufferAttribute extends BufferAttribute {
constructor(data: ArrayLike<number>, itemSize: number, meshPerAttribute?: number);
constructor(array: ArrayLike<number>, itemSize: number, normalized?: boolean, meshPerAttribute?: number);
meshPerAttribute: number;
}