Aspose.3D for Java 18.10 - October 2018
Improvements and Changes
Summary | Category |
---|---|
Support for .NET Core platform | New Feature |
Allow user to turn off compression when saving FBX binary files | New Feature |
Improve FBX import performance | Enhancement |
Improve FBX Binary write performance | Enhancement |
ImportException while opening huge FBX files | Bug |
Problem with UnitScaleFactor property | Bug |
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);