Aaron Franke ad10c6185d GLTF: Fix nasty bug with incorrect buffer indices 3 nedēļas atpakaļ
..
doc_classes 61ff5f1bdd GLTF: Support 64-bit sizes in glTF import and export 1 mēnesi atpakaļ
editor f11aff3841 Editor: Restructure editor code 3 nedēļas atpakaļ
extensions 94282d88f9 Core: Use `Math` namespace for constants 3 mēneši atpakaļ
structures 61ff5f1bdd GLTF: Support 64-bit sizes in glTF import and export 1 mēnesi atpakaļ
tests f11aff3841 Editor: Restructure editor code 3 nedēļas atpakaļ
README.md 012ce1eaff Fix glTF capitalization in class reference 11 mēneši atpakaļ
SCsub 9f9ee0c813 SCons: Add unobtrusive type hints in SCons files 10 mēneši atpakaļ
config.py f1f33169d9 SCons: Specify optional dependencies for modules 6 mēneši atpakaļ
gltf_defines.h 324512e11c Style: Replace header guards with `#pragma once` 4 mēneši atpakaļ
gltf_document.cpp ad10c6185d GLTF: Fix nasty bug with incorrect buffer indices 3 nedēļas atpakaļ
gltf_document.h ad10c6185d GLTF: Fix nasty bug with incorrect buffer indices 3 nedēļas atpakaļ
gltf_state.cpp 02d8c6eefe GLTF: Add extract_path and extract_prefix settings 8 mēneši atpakaļ
gltf_state.h 324512e11c Style: Replace header guards with `#pragma once` 4 mēneši atpakaļ
gltf_template_convert.h 8ae16699c5 Do not use Dictionary::keys() for Dictionary iteration. 3 mēneši atpakaļ
register_types.cpp f11aff3841 Editor: Restructure editor code 3 nedēļas atpakaļ
register_types.h 324512e11c Style: Replace header guards with `#pragma once` 4 mēneši atpakaļ
skin_tool.cpp a11a64fbf4 Comments spelling fixes 1 mēnesi atpakaļ
skin_tool.h a56b3a93d3 Implement naming version system for FBX and Blend importers like glTF 1 mēnesi 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.