A Thousand Ships 68f638cf02 Use `(r)find_char` instead of `(r)find` for single characters 5 päivää sitten
..
doc_classes eaebb3f864 Fix more miscellaneous oddities around the class reference 1 viikko sitten
editor 68f638cf02 Use `(r)find_char` instead of `(r)find` for single characters 4 päivää sitten
extensions 924732772b GLTF: Preserve node visibility on import 2 viikkoa sitten
structures 0513943f70 GLTF: Implement KHR_animation_pointer for animating custom properties 2 viikkoa sitten
tests fe34c45d2a Allow passing UID to importer 1 viikko sitten
README.md 012ce1eaff Fix glTF capitalization in class reference 3 kuukautta sitten
SCsub 9f9ee0c813 SCons: Add unobtrusive type hints in SCons files 1 kuukausi sitten
config.py 4b66a25f52 GLTF: Implement the glTF Object Model to support JSON pointer properties 2 viikkoa sitten
gltf_defines.h 4b66a25f52 GLTF: Implement the glTF Object Model to support JSON pointer properties 2 viikkoa sitten
gltf_document.cpp 68f638cf02 Use `(r)find_char` instead of `(r)find` for single characters 4 päivää sitten
gltf_document.h 0513943f70 GLTF: Implement KHR_animation_pointer for animating custom properties 2 viikkoa sitten
gltf_state.cpp 02d8c6eefe GLTF: Add extract_path and extract_prefix settings 2 viikkoa sitten
gltf_state.h ef8aafc2df Merge pull request #94165 from aaronfranke/gltf-khr-anim-ptr 2 viikkoa sitten
gltf_template_convert.h 9903e6779b Enforce template syntax `typename` over `class` 8 kuukautta sitten
register_types.cpp 4b66a25f52 GLTF: Implement the glTF Object Model to support JSON pointer properties 2 viikkoa sitten
register_types.h d95794ec8a One Copyright Update to rule them all 1 vuosi sitten
skin_tool.cpp 0468bea899 Add per-bone meta to Skeleton3D 2 kuukautta sitten
skin_tool.h 652ef966f9 Add new scene import option to import as Skeleton 8 kuukautta sitten

README.md

Godot glTF import and export module

In a nutshell, the glTF module works like this:

  • The structures/ folder contains glTF structures, the small pieces that make up a glTF file, represented as C++ classes.
  • The extensions/ folder contains glTF extensions, which are optional features that build on top of the base glTF spec.
  • GLTFState holds collections of structures and extensions.
  • GLTFDocument operates on GLTFState and its elements.
  • The editor/ folder uses GLTFDocument to import and export 3D models.