#gltf #csharp #library #3d #format #decoder #encoder #gamedev #asset #pipeline

vpenades 5153478a20 fixed new action пре 1 месец
.github 5153478a20 fixed new action пре 1 месец
build 91d33f560f Added KHR_NodeVisibility пре 2 месеци
examples bc12cac0a0 improved and documented monogame runtime пре 1 месец
src fd4b790a1e improving support for visibility пре 1 месец
tests fd4b790a1e improving support for visibility пре 1 месец
.editorconfig c0aed7c82c Preliminar changes to support trimmed assemblies. пре 3 година
.gitignore 9918aaff7f Code cleanup пре 3 година
Directory.Packages.props b40762ab8d nugets++ пре 1 месец
LICENSE 9e2e0531f4 Initial commit пре 7 година
NuGet.Config a047f8e3f7 Added testAttachment nunit helper пре 3 година
README.md 03c1f87423 readme++ пре 1 година
SharpGLTF.Build.sh 451088e8ba actions++ пре 1 година
SharpGLTF.ruleset ee789d20f5 Updated nuget packages. пре 5 година
SharpGLTF.slnx 56f9f735b4 Added alternative publish method пре 1 месец
stylecop.json 4d29fdd7c1 stylecop change! пре 7 година

README.md

GitHub Nuget (with prereleases)

Overview

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|Nuget (with prereleases)|Read/Write file support, and low level access to the glTF models.| |SharpGLTF.Runtime|Nuget (with prereleases)|Helper classes to simplify gltf model rendering.| |SharpGLTF.Toolkit|Nuget (with prereleases)|Convenience utilities to help create, manipulate and evaluate glTF models.|

Additionally, there's some optional extension libraries available:

Quickstart

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.

Appendix