UNPKG

three-stdlib

Version:

stand-alone library of threejs examples

14 lines (13 loc) 351 B
const BasicShader = { uniforms: {}, vertexShader: [ "void main() {", " gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );", "}" ].join("\n"), fragmentShader: ["void main() {", " gl_FragColor = vec4( 1.0, 0.0, 0.0, 0.5 );", "}"].join("\n") }; export { BasicShader }; //# sourceMappingURL=BasicShader.js.map