{"id":50120082,"url":"https://github.com/doramas-ga-jo/blender-addon-template","last_synced_at":"2026-05-23T18:05:28.767Z","repository":{"id":358962603,"uuid":"1243875971","full_name":"doramas-ga-jo/blender-addon-template","owner":"doramas-ga-jo","description":"Structured starting point for developing Blender add-ons.","archived":false,"fork":false,"pushed_at":"2026-05-19T19:26:09.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-19T22:57:05.497Z","etag":null,"topics":["addon","blender","dcc","template"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/doramas-ga-jo.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":"2026-05-19T18:49:02.000Z","updated_at":"2026-05-19T19:23:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/doramas-ga-jo/blender-addon-template","commit_stats":null,"previous_names":["doramas-ga-jo/blender-addon-template"],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/doramas-ga-jo/blender-addon-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doramas-ga-jo%2Fblender-addon-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doramas-ga-jo%2Fblender-addon-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doramas-ga-jo%2Fblender-addon-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doramas-ga-jo%2Fblender-addon-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doramas-ga-jo","download_url":"https://codeload.github.com/doramas-ga-jo/blender-addon-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doramas-ga-jo%2Fblender-addon-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33406505,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T04:15:53.637Z","status":"ssl_error","status_checked_at":"2026-05-23T04:15:53.242Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["addon","blender","dcc","template"],"created_at":"2026-05-23T18:04:56.789Z","updated_at":"2026-05-23T18:05:28.740Z","avatar_url":"https://github.com/doramas-ga-jo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Blender Add-on Template\n![Python][python_badge]\n![Blender][blender_badge]\n\nStructured starting point for developing **Blender** add-ons.\n\n## Set Up Instructions\nThis guide shows how to set up a custom scripts folder so you can reload your add-on without restarting **Blender**.\n\n1. **Open preferences**:\n    Open **Blender** preferences by pressing `Ctrl + ,` or going to `Edit → Preferences` in the **Blender** topbar menu.\\\n    ![][blender_addon_01]\n\n2. **Add custom scripts directory**:\n    In the File Paths section, add a custom scripts directory.\n    Make sure there is a directory named `addons` (lowercase) inside the selected folder and place the addon inside it.\\\n    ![][blender_addon_02]\n\n3. **Save preferences**:\nSave your preferences so the settings persist between **Blender** sessions.\n\n5. **Refresh local add-ons**:\n    Refresh local add-ons. Your add-on should now appear in the list for enabling/disabling.\n    Reload your add-on during development by refreshing local add-ons again with no need to restart Blender.\\\n    ![][blender_addon_03]\n\n6. **Activate the addon**:\n    Search for your add-on and activate it.\\\n    ![][blender_addon_04]\n\n## Custom Scripts Directory Structure\nHere’s an example of how your custom scripts directory might be organized when adding **Blender** add-ons.\n\n\u003e [!NOTE]\n\u003e **Blender** supports both single-file and folder-based add-ons.\n\n```\ncustom scripts directory/\n    └── addons/\n        ├── addon.py              # Single-file add-on\n        └── addon_folder/         # Folder-based add-on\n            ├── __init__.py\n            ├── other_module.py\n            └── ...\n```\n\n[python_badge]: https://img.shields.io/badge/Python-3.13+-3776AB?logo=python\u0026logoColor=white\n[blender_badge]: https://img.shields.io/badge/Blender-4.5.0+-F5792A?logo=blender\u0026logoColor=white\n[blender_addon_01]: https://res.cloudinary.com/difrkkpmx/image/upload/v1777570428/blender_addon_01_aq1xpo.webp\n[blender_addon_02]: https://res.cloudinary.com/difrkkpmx/image/upload/v1777570428/blender_addon_02_c5mdoj.webp\n[blender_addon_03]: https://res.cloudinary.com/difrkkpmx/image/upload/v1777570428/blender_addon_03_toy8gf.webp\n[blender_addon_04]: https://res.cloudinary.com/difrkkpmx/image/upload/v1777570428/blender_addon_04_cvnbbn.webp\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoramas-ga-jo%2Fblender-addon-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoramas-ga-jo%2Fblender-addon-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoramas-ga-jo%2Fblender-addon-template/lists"}