pandemonium_engine_minimal/editor_modules/gltf
2023-12-14 23:20:45 +01:00
..
doc_classes Added back the editor. 2023-12-14 23:20:45 +01:00
extensions Added back the editor. 2023-12-14 23:20:45 +01:00
structures Added back the editor. 2023-12-14 23:20:45 +01:00
config.py Added back the editor. 2023-12-14 23:20:45 +01:00
editor_scene_exporter_gltf_plugin.cpp Added back the editor. 2023-12-14 23:20:45 +01:00
editor_scene_exporter_gltf_plugin.h Added back the editor. 2023-12-14 23:20:45 +01:00
editor_scene_importer_gltf.cpp Added back the editor. 2023-12-14 23:20:45 +01:00
editor_scene_importer_gltf.h Added back the editor. 2023-12-14 23:20:45 +01:00
gltf_defines.h Added back the editor. 2023-12-14 23:20:45 +01:00
gltf_document.cpp Added back the editor. 2023-12-14 23:20:45 +01:00
gltf_document.h Added back the editor. 2023-12-14 23:20:45 +01:00
gltf_state.cpp Added back the editor. 2023-12-14 23:20:45 +01:00
gltf_state.h Added back the editor. 2023-12-14 23:20:45 +01:00
gltf_template_convert.h Added back the editor. 2023-12-14 23:20:45 +01:00
packed_scene_gltf.cpp Added back the editor. 2023-12-14 23:20:45 +01:00
packed_scene_gltf.h Added back the editor. 2023-12-14 23:20:45 +01:00
README.md Added back the editor. 2023-12-14 23:20:45 +01:00
register_types.cpp Added back the editor. 2023-12-14 23:20:45 +01:00
register_types.h Added back the editor. 2023-12-14 23:20:45 +01:00
SCsub Added back the editor. 2023-12-14 23:20:45 +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.