godot/modules/gltf
Aaron Franke b72dc0de89
Make used extensions stored in GLTFState
This allows GLTFDocumentExtension classes to add to the used extensions array.
2022-09-19 19:39:49 -05:00
..
doc_classes Make used extensions stored in GLTFState 2022-09-19 19:39:49 -05:00
editor Rename String plus_file to path_join 2022-08-29 19:38:13 -05:00
extensions Minor enhancements to the GLTF module (lights and docs) 2022-09-18 22:33:21 -05:00
structures Don't try to read values from null cameras and lights in GLTF 2022-09-04 09:52:25 -05:00
config.py Add fbx2gltf support for importing .fbx files 2022-03-30 15:22:46 +02:00
gltf_defines.h Minor enhancements to the GLTF module (lights and docs) 2022-09-18 22:33:21 -05:00
gltf_document.cpp Make used extensions stored in GLTFState 2022-09-19 19:39:49 -05:00
gltf_document.h Make used extensions stored in GLTFState 2022-09-19 19:39:49 -05:00
gltf_document_extension.cpp Improve gltf extension GLTFDocument api. 2022-05-20 06:58:48 -07:00
gltf_document_extension.h GLTF: Organize structures into a subfolder 2022-07-24 17:16:51 -05:00
gltf_document_extension_convert_importer_mesh.cpp Improve gltf extension GLTFDocument api. 2022-05-20 06:58:48 -07:00
gltf_document_extension_convert_importer_mesh.h Code quality: Fix header guards consistency 2022-07-25 11:17:40 +02:00
gltf_state.cpp Make used extensions stored in GLTFState 2022-09-19 19:39:49 -05:00
gltf_state.h Make used extensions stored in GLTFState 2022-09-19 19:39:49 -05:00
gltf_template_convert.h Replace Array return types with TypedArray 3 2022-08-24 12:53:36 +02:00
README.md GLTF: Organize structures into a subfolder 2022-07-24 17:16:51 -05:00
register_types.cpp Fix some errors affecting the Web editor 2022-09-12 16:29:45 +02:00
register_types.h Refactor module initialization 2022-05-04 17:34:51 +02:00
SCsub Minor enhancements to the GLTF module (lights and docs) 2022-09-18 22:33:21 -05: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.