You can find more details at: Convert FBX to Wavefront OBJ or PDF File Programmatically using C#
Convert FBX to Wavefront OBJ | Export FBX to PDF in C#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load the FBX file to be converted | |
Scene scene = new Scene(dataDir + "Test1.fbx"); | |
// Save in wavefront OBJ file format | |
scene.Save(dir + "output.obj", FileFormat.WavefrontOBJ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load the FBX file to be converted | |
Scene scene = new Scene(dataDir + "Test1.fbx"); | |
// Save output in PDF file format | |
scene.Save(dir + "output.pdf", FileFormat.PDF); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment