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

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.