You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optional integration with DotNetZip for more efficient compression (TODO)
usingFbx;classFbxExample{staticvoidMain(string[]args){// Read a filevardocumentNode=FbxIO.ReadBinary("MyModel.fbx");// Update a propertydocumentNode["Creator"].Value="My Application";// Preview the file in the consolevarwriter=newFbxAsciiWriter(Console.OpenStandardOutput());writer.Write(documentNode);// Write the updated binaryFbxIO.WriteBinary(documentNode,"MyModel_patched.fbx");}}