mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2024-12-15 02:59:55 +08:00
10 lines
167 B
GLSL
10 lines
167 B
GLSL
precision mediump float;
|
|
|
|
uniform vec4 u_fillColour;
|
|
|
|
varying float v_lighting;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(u_fillColour.rgb * v_lighting, u_fillColour.a);
|
|
}
|