pandemonium_engine/editor_modules/gltf
2023-12-17 22:50:00 +01:00
..
doc_classes Re-extracted class docs. 2023-10-12 01:59:32 +02:00
extensions File copyright header updates pt4. 2023-12-17 22:50:00 +01: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 File copyright header updates pt4. 2023-12-17 22:50:00 +01: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 File copyright header updates pt4. 2023-12-17 22:50:00 +01: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.