Skip to content

ikorin24/FbxParser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Ā 

History

48 Commits
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 

Repository files navigation

FBX Parser

GitHub license nuget

FBX file (.fbx) low-level Parser in C#.

FBX is just a hierarchical structual format like json(.json), xml(.xml), and so on.

Supported Format Version

.fbx file has some format version.

  • ver7.4
  • ver7.5
  • Any other versions (NOT SUPPORTED of this parser)

How to Use

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.

License

This is licensed under MIT.

Author

ikorin24 (github)