FBX file (.fbx
) low-level Parser in C#.
FBX is just a hierarchical structual format like json(.json
), xml(.xml
), and so on.
.fbx
file has some format version.
- ver7.4
- ver7.5
- Any other versions (NOT SUPPORTED of this parser)
Parsing is very easy.
using System.IO;
using FbxTools;
using var stream = File.OpenRead("your_file.fbx");
using var fbxObj = FbxParser.Parse(stream);
// Use fbx object here.
// Its memory is released when disposed.
This is licensed under MIT.
ikorin24 (github)