#gltf #csharp #library #3d #format #decoder #encoder #gamedev #asset #pipeline
|
|
há 1 mês atrás | |
|---|---|---|
| .github | há 1 mês atrás | |
| build | há 2 meses atrás | |
| examples | há 1 mês atrás | |
| src | há 1 mês atrás | |
| tests | há 1 mês atrás | |
| .editorconfig | há 3 anos atrás | |
| .gitignore | há 3 anos atrás | |
| Directory.Packages.props | há 1 mês atrás | |
| LICENSE | há 7 anos atrás | |
| NuGet.Config | há 3 anos atrás | |
| README.md | há 1 ano atrás | |
| SharpGLTF.Build.sh | há 1 ano atrás | |
| SharpGLTF.ruleset | há 5 anos atrás | |
| SharpGLTF.slnx | há 1 mês atrás | |
| stylecop.json | há 7 anos atrás |
SharpGLTF is a 100% .NET Standard library designed to support Khronos Group glTF 2.0 file format.
The library is divided into these main packages:
|Library|Nuget|Function|
|-|-|-|
|SharpGLTF.Core||Read/Write file support, and low level access to the glTF models.|
|SharpGLTF.Runtime|
|Helper classes to simplify gltf model rendering.|
|SharpGLTF.Toolkit|
|Convenience utilities to help create, manipulate and evaluate glTF models.|
Additionally, there's some optional extension libraries available:
A simple example of loading a glTF file and saving it as GLB:
var model = SharpGLTF.Schema2.ModelRoot.Load("model.gltf");
model.SaveGLB("model.glb");
More examples can be found here and in the Test project.