godot/modules/gltf
clayjohn abde3b53da
Fix wrong indexing when generating dummy tangents in GLTF import
(cherry picked from commit 14c776f798)
2024-03-11 15:00:43 +01:00
..
doc_classes Link to runtime loading/saving tutorial and improve Image documentation 2023-11-14 12:05:54 +01:00
editor Added proper timeout for blender rpc connection 2024-03-11 15:00:41 +01:00
extensions
structures
README.md
SCsub
config.py
gltf_defines.h
gltf_document.cpp Fix wrong indexing when generating dummy tangents in GLTF import 2024-03-11 15:00:43 +01:00
gltf_document.h
gltf_state.cpp
gltf_state.h
gltf_template_convert.h
register_types.cpp
register_types.h

README.md

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.