F

FBXExport

Introduced

6.02

Description

Exports an FBX file. You can customize what information to export by running any of the FBXExport* commands before running this command. The available FBXExport* commands are listed in the See Also section on this page.

Note: The FBXExport* commands are the scripting equivalent of setting the same values for exporting FBX files through the UI (FBX Exporter dialog).

Scripting Syntax

FBXExport( FilePathName )

Parameters

Parameter

Type

Description

FilePathName

String

Full path and filename of FBX file to export to.

Default Value: If not specified, a file browser pops up to specify the file to export.

Return Value

Boolean value indicating whether command succeeded or failed.

Examples

Python Example

#
# This example demonstrates how to export an FBX file, 
# temporarily preserving XSI effectors
#
app = Application

# First get the old effects setting
oldEffPref = app.FBXExportKeepXSIEffectors()

# Now set up the export to preserve effectors
app.FBXExportKeepXSIEffectors( 1 )

# Export to FBX and then restore the original setting
app.FBXExport( "C:\\temp\\testing.fbx" )
app.FBXExportKeepXSIEffectors( oldEffPref )

See Also

FBXImport

FBXExportAnimation

FBXExportCameras

FBXExportConvert2Tif

FBXExportEmbedMedias

FBXExportFrameRate

FBXExportGeometries

FBXExportKeepXSIEffectors

FBXExportLights

FBXExportScaleFactor

FBXExportShapes

FBXExportSkins

Exporting FBX

 

 

 



Autodesk Softimage v7.5