diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-07-24 14:20:50 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-07-24 17:16:51 -0500 |
commit | 7b8f9a0e8e6adec71cde6e38977686c8c0c59575 (patch) | |
tree | 95a2d74b4ca733d0e5861be7f2c238d3d461e078 /modules/gltf/README.md | |
parent | a1f0ea5d19dfdd086eea2960e7f7b2f618fb5334 (diff) | |
download | redot-engine-7b8f9a0e8e6adec71cde6e38977686c8c0c59575.tar.gz |
GLTF: Organize structures into a subfolder
Diffstat (limited to 'modules/gltf/README.md')
-rw-r--r-- | modules/gltf/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/gltf/README.md b/modules/gltf/README.md new file mode 100644 index 0000000000..5d8966b201 --- /dev/null +++ b/modules/gltf/README.md @@ -0,0 +1,11 @@ +# Godot GLTF import and export module + +In a nutshell, the GLTF module works like this: + +* The [`structures/`](structures/) folder contains GLTF structures, the + small pieces that make up a GLTF file, represented as C++ classes. +* The [`extensions/`](extensions/) folder contains GLTF extensions, which + are optional features that build on top of the base GLTF spec. +* [`GLTFState`](gltf_state.h) holds collections of structures and extensions. +* [`GLTFDocument`](gltf_document.h) operates on GLTFState and its elements. +* The [`editor/`](editor/) folder uses GLTFDocument to import and export 3D models. |