浏览代码

Bugfix: added useGroups parameter to mergeBufferGeometries declaration in BufferGeometryUtils

Eric Sherouse 6 年之前
父节点
当前提交
c11c5f0634
共有 1 个文件被更改,包括 1 次插入1 次删除
  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';
 import { BufferAttribute, BufferGeometry } from '../../../src/Three';
 
 
 export namespace BufferGeometryUtils {
 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 computeTangents(geometry: BufferGeometry): null;
     export function mergeBufferAttributes(attributes: BufferAttribute[]): BufferAttribute;
     export function mergeBufferAttributes(attributes: BufferAttribute[]): BufferAttribute;
 }
 }