initial tracked commit
This commit is contained in:
commit
74f7fb4aea
10 changed files with 8579 additions and 0 deletions
13
Engine/shaders/basicFragment.fs
Normal file
13
Engine/shaders/basicFragment.fs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#version 330 core
|
||||
out vec4 FragColor;
|
||||
|
||||
in vec3 ourColor;
|
||||
in vec2 TexCoord;
|
||||
|
||||
uniform sampler2D ourTexture;
|
||||
uniform sampler2D decal;
|
||||
|
||||
void main()
|
||||
{
|
||||
FragColor = mix(texture(ourTexture, TexCoord), texture(decal, TexCoord), 0.2);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue