Browse our Products
Aspose.3D for Java 18.11 - November 2018
This page contains release notes for Aspose.3D for Java 18.11.
Improvements and Changes
Summary | Category |
---|---|
Problem with UnitScaleFactor property | Bug |
Problem with Embedded Textures | 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);