Asset manager is now in charge of the loaded assets.

This commit is contained in:
2021-11-13 22:06:41 -08:00
parent 636040289c
commit bf48712b63
6 changed files with 66 additions and 74 deletions

View File

@ -8,5 +8,5 @@ out vec4 FragColor;
void main() {
vec4 color1 = texture(u_Text0, TexCoord);
vec4 color2 = texture(u_Text1, TexCoord);
FragColor = color1 * color2.r;
FragColor = color1 + color2;
}