first and last commit
This commit is contained in:
commit
c9e78fd810
381 changed files with 37141 additions and 0 deletions
8
shaders/lightmap.fsh
Normal file
8
shaders/lightmap.fsh
Normal file
|
@ -0,0 +1,8 @@
|
|||
out vec4 FragColor;
|
||||
|
||||
uniform float fog;
|
||||
uniform vec3 color;
|
||||
|
||||
void main() {
|
||||
FragColor = vec4(color, fog);
|
||||
}
|
Reference in a new issue