Skip to content

Instantly share code, notes, and snippets.

@conholdate-gists
Created January 22, 2025 02:26
Show Gist options
  • Save conholdate-gists/9611ecb8ef2c826ead0056bde334c22e to your computer and use it in GitHub Desktop.
Save conholdate-gists/9611ecb8ef2c826ead0056bde334c22e to your computer and use it in GitHub Desktop.
Convert FBX to OBJ in C# | FBX to OBJ 3D Converter
// 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