mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
mostly implemented skybox and fixed box verts
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
#version 330 core
|
||||
|
||||
in vec3 texCoords;
|
||||
|
||||
out vec4 FragColor;
|
||||
|
||||
uniform samplerCube skybox;
|
||||
|
||||
void main(){
|
||||
FragColor=texture(skybox,texCoords);
|
||||
}
|
||||
Reference in New Issue
Block a user