Prevent water ice-textures from moving around.
This commit is contained in:
parent
0ef38014ad
commit
b43a04895c
2 changed files with 2 additions and 1 deletions
|
@ -563,7 +563,7 @@ void main(void)
|
|||
|
||||
|
||||
// add ice
|
||||
vec4 ice_texel = texture2D(ice_texture, vec2(waterTex2) * 0.2 );
|
||||
vec4 ice_texel = texture2D(ice_texture, gl_TexCoord[0].st);
|
||||
|
||||
float nSum = 0.5 * (noise_250m + noise_50m);
|
||||
float mix_factor = smoothstep(1.0 - ice_cover, 1.04-ice_cover, nSum);
|
||||
|
|
|
@ -87,6 +87,7 @@ void main(void)
|
|||
|
||||
mat4 RotationMatrix;
|
||||
|
||||
gl_TexCoord[0] = gl_MultiTexCoord0;
|
||||
|
||||
vec3 shadedFogColor = vec3(0.55, 0.67, 0.88);
|
||||
rawPos = (osg_ViewMatrixInverse *gl_ModelViewMatrix * gl_Vertex).xyz;
|
||||
|
|
Loading…
Reference in a new issue