parcel-plugin-obj
v0.1.0
Published
A parcel plugin for OBJ files
Downloads
3
Maintainers
Readme
parcel-plugin-glsl
Import .glsl
files as strings with parcel. The shader
contents are available as the default export of the file.
Example
import { ShaderMaterial } from 'three';
import vertexShader from './vert-shader.glsl';
import fragmentShader from './frag-shader.glsl';
export function CustomShaderMaterial() {
return new ShaderMaterial({
uniforms: { ... },
vertexShader,
fragmentShader,
});
}