mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-10 07:07:03 +07:00
11 lines
175 B
GLSL
11 lines
175 B
GLSL
#ifdef GL_ES
|
|
precision mediump float;
|
|
#endif
|
|
|
|
varying vec3 v_texCoords;
|
|
|
|
uniform samplerCube u_cubemap;
|
|
|
|
void main(){
|
|
gl_FragColor = textureCube(u_cubemap, v_texCoords);
|
|
} |