I wonder what is the mean option of EnableCompression

Aspose.3D for .NET
I wonder what is the mean option of EnableCompression.
It mean polygon diet?
Please refer to the code below.

FBXSaveOptions saveOpts = new FBXSaveOptions(FileFormat.FBX7200Binary);
saveOpts.EnableCompression = true;
scene.Save(“d:\output.fbx”, saveOpts);

@max0312

Thank you for contacting support.

A big chunk of data like animation, polygon indices, control points, texture coordinates, normal vectors etc will be compressed using zlib algorithms if this property is set to true. We will be reflecting this additional information in API references as well.

Thank you for your answer.