@masatomakino/threejs-shader-materials
v0.10.0
Published
Collection of shader materials for three.js
Downloads
12
Readme
threejs-shader-materials
Collection of shader materials for three.js
Demo
Getting Started
Install
npm install @masatomakino/threejs-shader-materials --save-dev
Import
threejs-shader-materials is composed of ES6 modules and TypeScript d.ts files.
At first, import classes,
import { HexGridMaterial } from "threejs-shader-materials";
and set material.
const geo = new SphereGeometry(10, 64, 64);
const mat = new HexGridMaterial();
const mesh = new Mesh(geo, mat);
scene.add(mesh);