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

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.