{"id":31688348,"url":"https://github.com/itslebi/gddraco","last_synced_at":"2025-10-08T10:55:18.756Z","repository":{"id":316774489,"uuid":"1061412622","full_name":"itslebi/GDDraco","owner":"itslebi","description":"Godot GDExtension: Draco-Compressed GLTF/GLB Import Support","archived":false,"fork":false,"pushed_at":"2025-09-26T17:05:42.000Z","size":47544,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-26T17:33:28.806Z","etag":null,"topics":["draco","gltf-extensions","godot"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itslebi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-21T21:13:46.000Z","updated_at":"2025-09-26T17:05:45.000Z","dependencies_parsed_at":"2025-09-26T17:44:07.330Z","dependency_job_id":null,"html_url":"https://github.com/itslebi/GDDraco","commit_stats":null,"previous_names":["itslebi/gddraco"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/itslebi/GDDraco","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itslebi%2FGDDraco","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itslebi%2FGDDraco/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itslebi%2FGDDraco/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itslebi%2FGDDraco/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itslebi","download_url":"https://codeload.github.com/itslebi/GDDraco/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itslebi%2FGDDraco/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278931662,"owners_count":26070788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["draco","gltf-extensions","godot"],"created_at":"2025-10-08T10:55:13.379Z","updated_at":"2025-10-08T10:55:18.750Z","avatar_url":"https://github.com/itslebi.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GDDraco\n#### Godot GDExtension: Draco-Compressed GLTF/GLB Import Support\n\nThis GDExtension adds support to the Godot Engine for importing `.gltf` and `.glb` files with **Draco-compressed meshes** via the [`KHR_draco_mesh_compression`](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_draco_mesh_compression/README.md) extension.\n\nThis extension uses the Draco Decoder found in Blender's [Draco SDK Wrapper](https://github.com/blender/blender/tree/2d4984493155e3f23eed34dcae8e7afe08aefbde) and it uses the official [Draco SDK](https://github.com/google/draco/commit/3abbc66fdf5597b1560c44ce7840aac76900b3f7) version 1.5.7.\n\n---\n\n## Index\n\n- [Features](#features)\n- [How to Use](#how-to-use)\n  - [Prerequisites](#prerequisites)\n  - [1. Download the Latest Release](#1-download-the-latest-release)\n  - [2. Add it to your Project](#2-add-it-to-your-project)\n  - [3. Done](#3-done)\n- [Developer Build](#developer-build)\n  - [Prerequisites](#prerequisites-1)\n  - [1. Clone the Repository](#1-clone-the-repository)\n  - [2. Building](#2-building)\n  - [3. Testing](#3-testing)\n- [License](#license)\n- [Credits](#credits)\n\n---\n\n## Features\n\n- Full support for loading Draco-compressed geometry in glTF 2.0 files.\n- Seamless integration with Godot's existing GLTF/GLB import pipeline.\n- Built as a GDExtension — no need to recompile the engine.\n- Cross-platform support (depending on how you build the Draco library).\n\n---\n\n## How to Use\n\n### Prerequisites\n\n- **[Godot 4.5](https://godotengine.org/)**  \n  _⚠️ This extension was tested with **Godot 4.5**. It may work with other 4.x versions, but compatibility is not guaranteed._\n\n### 1. Download the Latest Release\nYou can find the latest release for Windows and Linux in [Releases](https://github.com/itslebi/GDDraco/releases).\nFor MacOs users you can follow the guide on the developer build to build your own release.\n\n### 2. Add it to your project\nUnzip the file from the release and add the resulting folder on your main project directory. \n\n### 3. Done\nYou can import your `.glb` and `.gltf` now.\n\n---\n\n## Developer Build\n\n### Prerequisites\n\n- **[Godot 4.5](https://godotengine.org/)**  \n  _⚠️ This extension was tested with **Godot 4.5**. It may work with other 4.x versions, but compatibility is not guaranteed._  \n- C++ build environment (GCC/Clang/MSVC)\n- [Python](https://www.python.org/)\n- [SCons](https://scons.org/) (used for building)  \n_⚠️ [Godot CPP](https://github.com/godotengine/godot-cpp) is used by this project and is provided in the source code already._\n_⚠️ [Draco SDK](https://github.com/google/draco) is used by this project and is provided in the source code already._\n_⚠️ [VS Code](https://code.visualstudio.com/) is recommended and the base import path settings are provided._\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/itslebi/GDDraco\ncd GDDraco\n````\n\n### 2. Building\n\nRun the following command inside the main `GDDraco` folder:\n\n```bash\nscons target=template_release\n```\n_⚠️ If [Godot CPP](https://github.com/godotengine/godot-cpp) does not build automatically please refer to their documentation and build it manually._  \n\n\u003e ⚙️ This will build the GDExtension and output the compiled binary (`.dll` or `.so`) in the ```demo/bin/``` directory.\n\n### 3. Testing\n_⚠️ Remember to verify if your compiled binary is present in the `gddraco.gdextension` file._\nUse the demo project in the `demo/` folder:\n\n* Open the project with Godot\n* Reimport the existing `.glb` file with Draco compression\n* Or try importing your own files\n\n---\n\n## License\n\n**GDDraco** is open source and licensed under the **MIT License**.\nYou are free to use, modify, and distribute this software as long as the original license and copyright notice are included.\n\nPlease note:\n\n* [Google Draco](https://github.com/google/draco) is licensed under the **Apache 2.0 License**\n* [Blender](https://www.blender.org/) source code used for the wrapper is licensed under **Apache 2.0 License** (note that blender's source code is actually under GPL but these files contain an header stating otherwise).\n\nMake sure to verify compatibility based on how you distribute or bundle binaries.\n\n---\n\n## Credits\n**This extension was made by me alone but it would not be possible without the below open source projects!**\n* [Godot Engine](https://godotengine.org/) - the engine it is built for\n* [Google Draco](https://github.com/google/draco) - for the Draco SDK\n* [Blender Foundation](https://www.blender.org/) — for the Draco wrapper code\n* [Khronos Group](https://www.khronos.org/) — for the glTF format and specifications\n\n\n\u003e © 2025 [@itslebi](https://github.com/itslebi) — Contributions welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitslebi%2Fgddraco","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitslebi%2Fgddraco","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitslebi%2Fgddraco/lists"}