AeThex-Engine-Core/engine/modules/gltf
2026-03-06 15:31:39 -07:00
..
doc_classes 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
editor AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
extensions AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
structures AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
tests AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
config.py 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
gltf_defines.h AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
gltf_document.cpp AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
gltf_document.h AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
gltf_state.compat.inc 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
gltf_state.cpp AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
gltf_state.h AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
gltf_template_convert.h AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
README.md 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
register_types.cpp AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
register_types.h AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
SCsub 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
skin_tool.cpp AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00
skin_tool.h AeThex AI module architecture and cloud services integration 2026-03-06 15:31:39 -07:00

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.