FLUJOS/VISUALIZACION/node_modules/three/examples/jsm/shaders/BasicShader.js
2025-11-07 00:06:12 +01:00

29 lines
351 B
JavaScript
Executable file

/**
* Simple test shader
*/
const BasicShader = {
name: 'BasicShader',
uniforms: {},
vertexShader: /* glsl */`
void main() {
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
}`,
fragmentShader: /* glsl */`
void main() {
gl_FragColor = vec4( 1.0, 0.0, 0.0, 0.5 );
}`
};
export { BasicShader };