diff options
author | tetrapod00 <145553014+tetrapod00@users.noreply.github.com> | 2024-08-15 10:32:42 -0700 |
---|---|---|
committer | tetrapod00 <145553014+tetrapod00@users.noreply.github.com> | 2024-08-15 10:41:47 -0700 |
commit | 012ce1eaff3be1ed4f1d4f10d29f545af4aac984 (patch) | |
tree | 917767a8fc974a7909b15143e293add76bf34173 /modules/gltf/README.md | |
parent | ee363af0ed65f6ca9a906f6065d0bd9c19dcf9e4 (diff) | |
download | redot-engine-012ce1eaff3be1ed4f1d4f10d29f545af4aac984.tar.gz |
Fix glTF capitalization in class reference
Diffstat (limited to 'modules/gltf/README.md')
-rw-r--r-- | modules/gltf/README.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/gltf/README.md b/modules/gltf/README.md index 5d8966b201..2d1e92e070 100644 --- a/modules/gltf/README.md +++ b/modules/gltf/README.md @@ -1,11 +1,11 @@ -# Godot GLTF import and export module +# Godot glTF import and export module -In a nutshell, the GLTF module works like this: +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. +* 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. |