Explorar el Código

Bugfix: added useGroups parameter to mergeBufferGeometries declaration in BufferGeometryUtils

Eric Sherouse hace 6 años
padre
commit
c11c5f0634
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/jsm/utils/BufferGeometryUtils.d.ts

+ 1 - 1
examples/jsm/utils/BufferGeometryUtils.d.ts

@@ -1,7 +1,7 @@
 import { BufferAttribute, BufferGeometry } from '../../../src/Three';
 
 export namespace BufferGeometryUtils {
-    export function mergeBufferGeometries(geometries: BufferGeometry[]): BufferGeometry;
+    export function mergeBufferGeometries(geometries: BufferGeometry[], useGroups: boolean): BufferGeometry;
     export function computeTangents(geometry: BufferGeometry): null;
     export function mergeBufferAttributes(attributes: BufferAttribute[]): BufferAttribute;
 }