Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active December 23, 2021 05:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/c0441a4ce0ad84e46e167e611eac1888 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/c0441a4ce0ad84e46e167e611eac1888 to your computer and use it in GitHub Desktop.
Convert FBX to RVM or RVM to FBX File Programmatically in Java
// 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(FileFormat.FBX7500ASCII);
// 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