Rémi Verschelde d71ff49cc9 Merge pull request #98879 from aaronfranke/4.1-gltf-preserve-visibility 4 miesięcy temu
..
doc_classes 201ccb7aeb [Doc] Fix some incorrect uses of "children" 1 rok temu
editor e69ecee8ef Update vertex color import to handle Blender 4.2 upwards 4 miesięcy temu
extensions fd108689f3 [4.1] GLTF: Preserve node visibility on import 4 miesięcy temu
structures 25b2f1780a Style: Harmonize header includes in modules 1 rok temu
README.md 7b8f9a0e8e GLTF: Organize structures into a subfolder 2 lat temu
SCsub 39facb35a0 SCons: Unify tools/target build type configuration 2 lat temu
config.py a222bdf83f GLTF: Rename GLTFCollider class to GLTFPhysicsShape 1 rok temu
gltf_defines.h d95794ec8a One Copyright Update to rule them all 2 lat temu
gltf_document.cpp 49c95e7bbb Fix GLTF exporting invalid meshes and attempting to export gizmo meshes 1 rok temu
gltf_document.h 7da93a0bc0 Add support for extending GLTF with more texture formats & support WebP 1 rok temu
gltf_state.cpp 5e139c2ab9 Add a get_node_index method to GLTFState 1 rok temu
gltf_state.h 5e139c2ab9 Add a get_node_index method to GLTFState 1 rok temu
gltf_template_convert.h d95794ec8a One Copyright Update to rule them all 2 lat temu
register_types.cpp cdc26082aa Make blend file importer warnings translatable 1 rok temu
register_types.h d95794ec8a One Copyright Update to rule them all 2 lat temu

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.