Mindustry/core/assets/shaders/planet.frag

10 lines
108 B
GLSL
Raw Normal View History

2020-01-11 08:27:10 +07:00
#ifdef GL_ES
precision mediump float;
#endif
varying vec4 v_col;
void main(){
2020-02-27 02:44:06 +07:00
gl_FragColor = v_col;
2020-01-11 08:27:10 +07:00
}