godot-module-template/engine/modules/gltf
Jan van der Weide 7125d019b5 feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
..
doc_classes feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
editor feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
extensions feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
structures feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
README.md feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
SCsub feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
config.py feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
gltf_defines.h feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
gltf_document.cpp feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
gltf_document.h feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
gltf_state.cpp feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
gltf_state.h feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
gltf_template_convert.h feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
register_types.cpp feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
register_types.h feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
skin_tool.cpp feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00
skin_tool.h feat: godot-engine-source-4.3-stable 2025-01-17 16:36:38 +01:00

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.