Skybox view matrix includes local transform

This commit is contained in:
Josip Miskovic 2022-08-18 09:36:45 +02:00 committed by Bjorn
parent f515346e20
commit 11f2d052ef
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ vec4 lovrmain() {
vec2 uv = uvs[VertexIndex % 6];
vec3 ray = vec3(uv, -1.);
mat3 inverseViewOrientation = transpose(mat3(View));
mat3 inverseViewOrientation = transpose(mat3(ViewFromLocal));
Normal = normalize(inverseViewOrientation * (InverseProjection * vec4(ray, 1.)).xyz);
return vec4(uv, 0, 1);
}