0.1.0 • Published 7 years ago
parcel-plugin-obj v0.1.0
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,
  });
  
}0.1.0
7 years ago