exportFile
Exports/downloads a 3D file of your format’s choosing, of the current scene. Options can be added.
exportFile(
format: Export3DFormats,
options?: ExportOptions
): Promise<void>Parameters
Description
Type
options
fbx:'ASCII'(default) |'Binary'applyParentMatrix:booleanexportOnlyUsedUVs:boolean
Usage:
await modelApi.exportFile('FBX', {fbx: 'Binary'});Last updated