mostly implemented skybox and fixed box verts

This commit is contained in:
devZoGok
2021-10-18 19:04:20 +03:00
parent fd09cbf762
commit 03f65e62f5
22 changed files with 227 additions and 106 deletions
+11
View File
@@ -0,0 +1,11 @@
#version 330 core
in vec3 texCoords;
out vec4 FragColor;
uniform samplerCube skybox;
void main(){
FragColor=texture(skybox,texCoords);
}