DAZ Script | |
---|---|
Boolean | canExport ( String filename ) |
DzError | exportFile ( String fileName, Number exporterIndex, DzFileIOSettings options ) |
DzError | exportFile ( String fileName, Number exporterIndex ) |
DzExporter | findExporter ( String filename ) |
DzExporter | findExporterByClassName ( String className ) |
Number | findExporterIndex ( String filename ) |
DzExporter | getExporter ( Number i ) |
String | getExportPath () |
Number | getNumExporters () |
void | makeExportFileFilter ( DzFileFilter filter, String defaultFilter=“” ) |
void | setExportPath ( String path ) |
void | fileExported () |
void | fileExportStarting () |
There is only one instance of this manager in an application. This instance is created and owned by DzApp. Don't create an instance of this class, but rather request a pointer to it from DzApp via DzApp::getExportMgr().
See Also:
Boolean : canExport( String filename )
Uses the extension from each of the exporters and attempts to match an exporter with the extension of the filename.
Parameter(s):
Return Value:
DzError : exportFile( String fileName, Number exporterIndex, DzFileIOSettings options )
Export the scene contents to a file.
Parameter(s):
Return Value:
DzError : exportFile( String fileName, Number exporterIndex )
Export the scene contents to a file.
Parameter(s):
Return Value:
DzExporter : findExporter( String filename )
Uses the extension from each of the exporters and attempts to match an exporter with the extension of the filename.
Parameter(s):
Return Value:
DzExporter : findExporterByClassName( String className )
Uses the class name of each of the exporters and attempts to find an exporter with the given class name.
Parameter(s):
Return Value:
Number : findExporterIndex( String filename )
Uses the extension from each of the exporters and attempts to match an exporter with the extension of the filename.
Parameter(s):
Return Value:
DzExporter : getExporter( Number i )
Parameter(s):
Return Value:
String : getExportPath()
Return Value:
Return Value:
void : makeExportFileFilter( DzFileFilter filter, String defaultFilter=“” )
Populates the given filter with all the types recognized by the export manager.
Parameter(s):
void : setExportPath( String path )
Sets the default directory that files are exported to.
Parameter(s):
void : fileExported()
Signature:“fileExported()”
Emitted when a file export operation is finished
TODO: Add description.
void : fileExportStarting()
Signature:“fileExportStarting()”
Emitted when a file export operation is started
TODO: Add description.