pandemonium_engine/editor_modules/gltf
2024-09-20 10:03:06 +02:00
..
doc_classes Re-extracted class docs. 2024-09-20 10:03:06 +02:00
extensions Fix type hints in GLTFDocumentExtension virtual methods 2024-07-14 07:51:24 +02:00
structures File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
config.py Ported: [3.x] Implement physics support in the GLTF module 2023-05-01 12:46:55 +02:00
editor_scene_exporter_gltf_plugin.cpp File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
editor_scene_exporter_gltf_plugin.h File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
editor_scene_importer_gltf.cpp File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
editor_scene_importer_gltf.h File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
gltf_defines.h File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
gltf_document.cpp Verify GLTF indices to prevent crash with corrupt files 2024-09-07 09:24:37 +02:00
gltf_document.h File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
gltf_state.cpp File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
gltf_state.h GLTF: Fixed external images getting embedded on import 2024-09-07 09:24:05 +02:00
gltf_template_convert.h File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
packed_scene_gltf.cpp File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
packed_scene_gltf.h File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
README.md Ported: [3.x] GLTF: Organize structures and extensions into subfolders 2022-12-11 19:39:24 +01:00
register_types.cpp File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
register_types.h File copyright header updates pt4. 2023-12-17 22:50:00 +01:00
SCsub Ported: [3.x] GLTF: Organize structures and extensions into subfolders 2022-12-11 19:39:24 +01:00

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.