UNPKG

@tresjs/cientos

Version:

Collection of useful helpers and fully functional, ready-made abstractions for Tres

13 lines (12 loc) 407 B
import { AnimationClip, Object3D } from 'three'; interface gltfExporterOptions { fileName?: string; trs?: boolean; onlyVisible?: boolean; binary?: boolean; maxTextureSize?: number; animations?: AnimationClip[]; includeCustomExtensions?: boolean; } export declare function useGLTFExporter(object3D: Object3D | Object3D[], options?: gltfExporterOptions): Promise<void>; export {};