Created
January 22, 2025 02:26
-
-
Save conholdate-gists/9611ecb8ef2c826ead0056bde334c22e to your computer and use it in GitHub Desktop.
Convert FBX to OBJ in C# | FBX to OBJ 3D Converter
This file contains hidden or 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(dataDir + "output.obj", FileFormat.WavefrontOBJ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment