2
0
Эх сурвалжийг харах

TS: Update DRACOExporter.

Mugen87 5 жил өмнө
parent
commit
7cdeceba22

+ 3 - 3
examples/jsm/exporters/DRACOExporter.d.ts

@@ -1,6 +1,6 @@
 import {
-	BufferGeometry,
-	Geometry
+	Mesh,
+	Points
 } from '../../../src/Three';
 
 export interface DRACOExporterOptions {
@@ -17,6 +17,6 @@ export class DRACOExporter {
 
 	constructor();
 
-	parse( geometry: BufferGeometry | Geometry, options: DRACOExporterOptions ): Int8Array;
+	parse( object: Mesh | Points, options: DRACOExporterOptions ): Int8Array;
 
 }