parcel-plugin-glslify
v0.1.0
Published
A parcel plugin for GLSL files with glslify support forked from @seep's version
Downloads
12
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,
});
}