Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 748 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 748 Bytes

parcel-plugin-glsl

Import .glsl files as strings with parcel. The shader contents are available as the default export of the file.

This expand's on @seep's version by adding support for other file types including

  • .vert
  • .frag
  • .vs
  • .fs

This also includes glslify support. You'll have to make sure to include that in your package.json as well.

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,
  });
  
}