There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
An FBX reader and writer for .NET
FBX manipulation for .NET
Read FBX binary files (Done)
Read FBX ASCII files (Done)
Write fully compliant FBX binary files (Done)
Write FBX ASCII files (Done)
Format detection (TODO)
Store and manipulate raw FBX object data (Done)
Higher level processing of FBX nodes (TODO)
Optional integration with DotNetZip for more efficient compression (TODO)
using Fbx;classFbxExample{staticvoidMain(string[]args){// Read a filevardocumentNode= FbxIO.ReadBinary("MyModel.fbx");// Update a property
documentNode["Creator"].Value ="My Application";// Preview the file in the consolevarwriter=new FbxAsciiWriter(Console.OpenStandardOutput());
writer.Write(documentNode);// Write the updated binary
FbxIO.WriteBinary(documentNode,"MyModel_patched.fbx");}}