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

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.