Newer
Older
HuangJiPC / public / static / three / examples / jsm / exporters / ColladaExporter.d.ts
@zhangdeliang zhangdeliang on 21 Jun 429 bytes update
import { Object3D } from '../../../src/Three';

export interface ColladaExporterOptions {
	author?: string;
	textureDirectory?: string;
	version?: string;
}

export interface ColladaExporterResult {
	data: string;
	textures: object[];
}

export class ColladaExporter {

	constructor();

	parse( object: Object3D, onDone: ( res: ColladaExporterResult ) => void, options: ColladaExporterOptions ): ColladaExporterResult | null;

}