Spaces:
Running
Running
File size: 266 Bytes
8194362 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import simpleVertexCode from '../shaders/simpleVertex.glsl'
import copyCode from '../shaders/copy.glsl'
export default {
uniforms: {
tDiffuse: { value: null },
opacity: { value: 1.0 }
},
vertexShader: simpleVertexCode,
fragmentShader: copyCode
}
|