Files
Mindustry/core/assets/shaders/planet.frag

10 lines
108 B
GLSL
Raw Normal View History

2020-01-10 20:27:10 -05:00
#ifdef GL_ES
precision mediump float;
#endif
varying vec4 v_col;
void main(){
2020-02-26 14:44:06 -05:00
gl_FragColor = v_col;
2020-01-10 20:27:10 -05:00
}