Rémi Verschelde 21fcb56547 Remove unused `EditorSceneFormatImporter::_get_import_flags` 3 weken geleden
..
doc_classes a676465b79 Remove trailing double quote from link in GLTFState class documentation 1 maand geleden
editor 21fcb56547 Remove unused `EditorSceneFormatImporter::_get_import_flags` 3 weken geleden
extensions 01a26c5c8b GLTF: Don't write unused light properties 3 weken geleden
structures 73d85f46c9 Remove unused headers in scene. 1 maand geleden
tests 34d8255947 Force build editor with regex module, remove checking code. 1 maand geleden
README.md 012ce1eaff Fix glTF capitalization in class reference 5 maanden geleden
SCsub 9f9ee0c813 SCons: Add unobtrusive type hints in SCons files 4 maanden geleden
config.py f1f33169d9 SCons: Specify optional dependencies for modules 1 maand geleden
gltf_defines.h 4b66a25f52 GLTF: Implement the glTF Object Model to support JSON pointer properties 3 maanden geleden
gltf_document.cpp f134769506 Fix various typos 1 maand geleden
gltf_document.h f134769506 Fix various typos 1 maand geleden
gltf_state.cpp 02d8c6eefe GLTF: Add extract_path and extract_prefix settings 3 maanden geleden
gltf_state.h 73d85f46c9 Remove unused headers in scene. 1 maand geleden
gltf_template_convert.h 9903e6779b Enforce template syntax `typename` over `class` 11 maanden geleden
register_types.cpp 4b66a25f52 GLTF: Implement the glTF Object Model to support JSON pointer properties 3 maanden geleden
register_types.h d95794ec8a One Copyright Update to rule them all 2 jaren geleden
skin_tool.cpp 0468bea899 Add per-bone meta to Skeleton3D 4 maanden geleden
skin_tool.h 652ef966f9 Add new scene import option to import as Skeleton 11 maanden geleden

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.