mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-08 14:24:52 +07:00
9 lines
131 B
GLSL
9 lines
131 B
GLSL
|
|
varying vec3 v_texCoords;
|
|
|
|
uniform samplerCube u_cubemap;
|
|
|
|
void main(){
|
|
gl_FragColor = textureCube(u_cubemap, v_texCoords);
|
|
}
|