restore cabin ambient and celestial bodies

This commit is contained in:
milek7
2018-10-18 20:04:23 +02:00
parent 455ca1cacf
commit cae7f67797
3 changed files with 125 additions and 39 deletions

View File

@@ -7,6 +7,6 @@ out vec2 f_coord;
void main()
{
gl_Position = (projection * modelview) * vec4(v_vert, 1.0f);
gl_Position = (projection * modelview) * vec4(v_vert * param[1].x, 1.0f);
f_coord = v_coord;
}