Browse our Products

Aspose.3D for Java 18.10 - October 2018

Improvements and Changes

SummaryCategory
Support for .NET Core platformNew Feature
Allow user to turn off compression when saving FBX binary filesNew Feature
Improve FBX import performanceEnhancement
Improve FBX Binary write performanceEnhancement
ImportException while opening huge FBX filesBug
Problem with UnitScaleFactor propertyBug

Public API and Backwards Incompatible Changes

Please view the list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.3D for Java API. If you have concerns about any change listed, please raise it on the Aspose.3D support forum.

API changes:

Added members to class com.aspose.threed.FBXSaveOptions:

     /**

     * Compression large binary data in the FBX file, default value is true.

     */

    public boolean com.aspose.threed.FBXSaveOptions.getEnableCompression();

    /**

     * Compression large binary data in the FBX file, default value is true.

     */

    public void com.aspose.threed.FBXSaveOptions.setEnableCompression(boolean val);

Sample Code:

     Scene scene = new Scene("test.fbx");

    FBXSaveOptions opts = new FBXSaveOptions(FileFormat.FBX7500_BINARY);

    opts.setEnableCompression(false);

    scene.save("test.fbx", opts);


 
 English