Aspose.3D for .NET 18.10 - October 2018

Improvements and Changes

KeySummaryCategory
THREEDNET-434Support for .NET Core platformNew Feature
THREEDNET-431Allow user to turn off compression when saving FBX binary filesNew Feature
THREEDNET-424Improve FBX import performanceEnhancement
THREEDNET-432Improve FBX Binary write performanceEnhancement
THREEDNET-428ImportException while opening huge FBX filesBug
THREEDNET-429Problem with UnitScaleFactor propertyBug

Public API and Backwards Incompatible Changes

See 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 .NET. If you have concerns about any change listed, please raise it on the Aspose.3D support forum.

API changes

Added members to class Aspose.ThreeD.Formats.FBXSaveOptions:

         /// <summary>

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

        /// </summary>

        public bool EnableCompression{ get;set;}

Sample Code:

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

        scene.Save("test.fbx", new FBXSaveOptions(FileFormat.FBX7500ASCII) {EnableCompression = false});