You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
blocks/assets/shaders/chunk.frag

8 lines
136 B

#version 430
layout(location = 0) out vec4 out_color;
// uniform vec3 color;
void main() {
out_color = vec4(1.0, 0.0, 0.5, 1.0);
}