Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active December 23, 2021 07:18
Show Gist options
  • Save aspose-com-gists/5d7b8c62f14b2ab3a72c56274e59be3c to your computer and use it in GitHub Desktop.
Save aspose-com-gists/5d7b8c62f14b2ab3a72c56274e59be3c to your computer and use it in GitHub Desktop.
C# Convert FBX to RVM or RVM to FBX Programmatically in .NET
// Load input FBX file
Scene document = new Scene("Test.fbx");
// Initialize an object of RvmSaveOptions class
RvmSaveOptions options = new RvmSaveOptions();
// Save output RVM file
document.Save("output.rvm", options);
// Load input RVM file
Scene document = new Scene("Test.rvm");
// Initialize FbxSaveOptions class object
FbxSaveOptions options = new FbxSaveOptions();
// Save output FBX file
document.Save("output.fbx", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment