Agent skill
threejs-materials
Classic three.js materials (non-Node): MeshStandardMaterial, MeshPhysicalMaterial, Phong/Lambert/Toon/Basic, Line/Points/Sprite materials, MeshMatcapMaterial, MeshNormalMaterial, depth/distance materials, ShaderMaterial and RawShaderMaterial. Use when tuning PBR maps, transparency, depth write, skinning flags, or writing GLSL in ShaderMaterial; for TSL/NodeMaterial/WebGPU shader graphs use threejs-node-tsl instead.
Install this agent skill to your Project
npx add-skill https://github.com/partme-ai/full-stack-skills/tree/main/skills/threejs-skills/threejs-materials
SKILL.md
When to use this skill
ALWAYS use this skill when the user mentions:
- Choosing among built-in mesh materials, map slots (albedo, normal, roughness, metalness, ao, emissive),
envMap - Transparency sorting issues,
alphaTest,depthWrite, blending modes, side/double-sided rendering ShaderMaterial/RawShaderMaterialuniforms, includes, and compatibility with lights pipeline- Line, points, sprite materials for vector overlays and particles
IMPORTANT: classic materials vs node-tsl
| Need | Skill |
|---|---|
| Standard PBR with maps, physical clearcoat/sheen | threejs-materials |
TSL nodes, NodeMaterial, WebGPU-first shading, compute-style graph |
threejs-node-tsl |
| Migrating ShaderMaterial → TSL | threejs-node-tsl (conceptual), keep ShaderMaterial here until cutover |
Trigger phrases include:
- "MeshStandardMaterial", "MeshPhysicalMaterial", "ShaderMaterial", "transparent", "alphaTest"
- "PBR", "物理材质", "透明", "自定义着色器"
How to use this skill
- Select class by lighting model:
MeshBasic(unlit), Lambert/Phong (legacy lit), Standard/Physical (PBR). - Assign maps and ensure color space correctness for albedo vs data maps (link threejs-textures).
- Environment: set
envMapfrom cube or equirect; alignmetalness/roughness; considerMeshPhysicalMaterialfor transmission/IOR when needed. - Transparency: order objects or use
alphaTest/depthWritetrade-offs; mention sorting limitations. - ShaderMaterial: minimize re-lit work unless intentional; document required lights and
lights: trueflag behavior per version docs. - Performance: share materials across meshes; avoid cloning per frame.
- Skinning/morph: set
skinning/morphTargetswhere applicable—mesh side in threejs-objects.
Example: Transparency with alphaTest vs depthWrite
// Option A: alphaTest — hard cutoff, no sorting issues
const matA = new THREE.MeshStandardMaterial({
map: texture, alphaMap: alphaTexture,
alphaTest: 0.5, transparent: true
});
// Option B: depthWrite false — soft transparency, needs manual sorting
const matB = new THREE.MeshStandardMaterial({
map: texture, transparent: true, opacity: 0.6,
depthWrite: false // prevents depth-fighting but requires back-to-front sorting
});
See examples/workflow-pbr-transparent.md.
Doc map (official)
| Docs section | Representative links |
|---|---|
| Materials (core) | https://threejs.org/docs/Material.html |
| PBR | https://threejs.org/docs/MeshStandardMaterial.html |
| Physical | https://threejs.org/docs/MeshPhysicalMaterial.html |
| Custom GLSL | https://threejs.org/docs/ShaderMaterial.html |
Scope
- In scope: Non-Node materials listed under Core Materials in docs (except
*NodeMaterial). - Out of scope: Full Nodes catalog (threejs-node-tsl); post pass materials inside composer (threejs-postprocessing).
Common pitfalls and best practices
- Wrong normal map
normalMapTypeor tangent space breaks lighting; verify geometry has tangents or use appropriate mode. - Premultiplied alpha vs straight alpha mismatches cause fringe halos on foliage.
MeshPhysicalMaterialtransmissionneeds thickness and good env—combine with threejs-textures / PMREM.- Too many unique materials hurts sorting and batching—merge where possible.
Documentation and version
PBR and ShaderMaterial behavior track the Materials section in three.js docs. Color management and default envMap handling changed in modern releases—always pair material answers with renderer/output settings from threejs-renderers when colors look wrong.
Agent response checklist
When answering under this skill, prefer responses that:
- Link
MeshStandardMaterial,MeshPhysicalMaterial, orShaderMaterialpages as appropriate. - Force a clear choice vs threejs-node-tsl when the user asks for “shaders” or “nodes”.
- Separate map roles (albedo vs roughness vs normal) and
colorSpaceexpectations with threejs-textures. - Call out transparency and
depthWritetrade-offs for sorted rendering. - Note that
*NodeMaterialtypes belong to the node skill, not this one.
References
- https://threejs.org/docs/#Materials
- https://threejs.org/docs/MeshStandardMaterial.html
- https://threejs.org/docs/MeshPhysicalMaterial.html
- https://threejs.org/docs/ShaderMaterial.html
Keywords
English: meshstandardmaterial, meshphysicalmaterial, shadermaterial, pbr, transparency, envmap, materials, three.js
中文: 材质、PBR、MeshStandardMaterial、物理材质、透明、环境贴图、ShaderMaterial、three.js
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
ocrmypdf-batch
OCRmyPDF batch processing skill — process multiple PDFs, Docker automation, shell scripting, and CI/CD integration. Use when the user needs to OCR many PDFs, set up automated OCR pipelines, or integrate OCR into workflows.
ocrmypdf-optimize
OCRmyPDF optimization skill — compress PDFs, configure PDF/A output, JBIG2 encoding, and lossless optimization. Use when the user needs to reduce PDF file size, create archival PDF/A files, or optimize OCR output.
ocrmypdf-image
OCRmyPDF image processing skill — deskew, rotate, clean, despeckle, remove border from scanned documents. Use when the user needs to improve scanned PDF quality, fix skewed pages, remove noise, or clean up scanned documents before OCR.
ocrmypdf-api
OCRmyPDF Python API and plugin skill — use OCRmyPDF programmatically from Python, integrate with applications, and extend with plugins (EasyOCR, PaddleOCR, AppleOCR). Use when the user needs to call OCRmyPDF from Python code, build OCR pipelines, or use alternative OCR engines.
ocrmypdf
OCRmyPDF core skill — add searchable OCR text layer to scanned PDFs, convert images to searchable PDFs, support 100+ languages via Tesseract. Use when the user needs to OCR a PDF, make a scanned PDF searchable, or extract text from scanned documents.
svelte
Guides Svelte and SvelteKit development including reactive components, stores, transitions, lifecycle hooks, SSR, file-based routing, and deployment. Use when the user needs to build Svelte components, create SvelteKit applications, implement reactivity patterns, or configure Svelte with Vite.
Didn't find tool you were looking for?