fixed block breaking transparency

This commit is contained in:
Valerie Wolfe 2024-05-08 13:53:40 -04:00
parent e4c5715b3f
commit c36e1076f7
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#version 120
varying vec2 texcoord;
uniform sampler2D texture;
void main() {
gl_FragData[0] = texture2D(texture, texcoord);
}

View file

@ -0,0 +1,4 @@
#version 120
#include "/module/empty.vert"