| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A free resources project containing procedurally generated Blender materials for metals, deformed metals, glass, experimental textures, and more. All materials were automatically generated using a custom-coded Blender add-on.
Check out the full library and interactive showcase on our Official Website.
├── blend-files/ # Contains downloadable .blend files for each material ├── materials/ # Preview images in WebP format (named to match .blend files) ├── materials.json # Structured JSON dataset cataloging all materials └── README.md
The materials.json file catalogs all available materials in the library in a structured format, enabling web apps, add-ons, or external tools to query and display the material index.
[
{
"image": "deformed-metal-1.webp",
"name": "Deformed Metal 1",
"blend-file": "blend-files/deformed-metal-1.blend"
}
]| Field | Type | Description |
|---|---|---|
| image | string | The filename of the WebP preview image located in the materials/ folder. |
| name | string | The human-readable display name of the material. |
| blend-file | string | Relative filepath to the downloadable .blend file. |
MIT
| Back | FazBrowse Home | New Git URL |