Aaron Franke f70a8accdb [4.2] GLTF: Fix bad pointer to ImporterMeshInstance3D root node at runtime hace 5 meses
..
doc_classes 50a240916a [Doc] Fix some incorrect uses of "children" hace 1 año
editor 31017f89ce Update vertex color import to handle Blender 4.2 upwards hace 4 meses
extensions f70a8accdb [4.2] GLTF: Fix bad pointer to ImporterMeshInstance3D root node at runtime hace 3 semanas
structures 517e9f8aef [Modules] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicable hace 1 año
README.md 7b8f9a0e8e GLTF: Organize structures into a subfolder hace 2 años
SCsub 39facb35a0 SCons: Unify tools/target build type configuration hace 2 años
config.py a222bdf83f GLTF: Rename GLTFCollider class to GLTFPhysicsShape hace 1 año
gltf_defines.h d95794ec8a One Copyright Update to rule them all hace 2 años
gltf_document.cpp f70a8accdb [4.2] GLTF: Fix bad pointer to ImporterMeshInstance3D root node at runtime hace 3 semanas
gltf_document.h 7513a79555 Fix crash when importing a GLTF file with a skeleton as the root hace 1 año
gltf_state.cpp 2413952a4c Fix "as" capitalization in editor strings hace 1 año
gltf_state.h 51ed3aef63 Vertex and attribute compression to reduce the size of the vertex format. hace 1 año
gltf_template_convert.h d95794ec8a One Copyright Update to rule them all hace 2 años
register_types.cpp 5444afae63 Merge pull request #76572 from acazuc/ktx_format_support hace 1 año
register_types.h d95794ec8a One Copyright Update to rule them all hace 2 años

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.