AeThex-Engine-Core/engine/modules/gltf
2026-02-24 04:30:27 +00:00
..
doc_classes 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
editor 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
extensions 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
structures 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
tests new file: LOGO_CONFIG_GUIDE.md 2026-02-24 04:30:27 +00:00
config.py 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
gltf_defines.h 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
gltf_document.cpp new file: LOGO_CONFIG_GUIDE.md 2026-02-24 04:30:27 +00:00
gltf_document.h 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
gltf_state.compat.inc 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
gltf_state.cpp 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
gltf_state.h 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
gltf_template_convert.h 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
README.md 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
register_types.cpp 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
register_types.h 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
SCsub 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
skin_tool.cpp 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00:00
skin_tool.h 🚀 AeThex Engine v1.0 - Complete Fork 2026-02-23 05:01:56 +00: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.