mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2024-12-21 03:09:14 +08:00
10 lines
152 B
GLSL
10 lines
152 B
GLSL
precision mediump float;
|
|
|
|
uniform vec3 u_fillColour;
|
|
|
|
varying float v_lighting;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(u_fillColour * v_lighting, 1.0);
|
|
}
|