Halved the sky background rotation speed
This commit is contained in:
parent
154dc15b02
commit
9058caa13a
|
@ -22,7 +22,7 @@
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub Update()
|
Public Sub Update()
|
||||||
Yaw += 0.0002F
|
Yaw += 0.0001F
|
||||||
While Yaw > MathHelper.TwoPi
|
While Yaw > MathHelper.TwoPi
|
||||||
Yaw -= MathHelper.TwoPi
|
Yaw -= MathHelper.TwoPi
|
||||||
End While
|
End While
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
Else
|
Else
|
||||||
RenderHalf(FOV, MathHelper.TwoPi, 0.0F, True, TextureMoon, 16, 1.0F) ' Draw the Moon.
|
RenderHalf(FOV, MathHelper.TwoPi, 0.0F, True, TextureMoon, 16, 1.0F) ' Draw the Moon.
|
||||||
End If
|
End If
|
||||||
RenderHalf(FOV, MathHelper.TwoPi - Yaw, 0.0F, True, GetCloudsTexture(), 12, GetCloudAlpha) ' Draw the clouds.
|
RenderHalf(FOV, MathHelper.TwoPi - Yaw * 2, 0.0F, True, GetCloudsTexture(), 12, GetCloudAlpha) ' Draw the clouds.
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
If Screen.Level.World.EnvironmentType = World.EnvironmentTypes.Cave Or Screen.Level.World.EnvironmentType = World.EnvironmentTypes.Forest Then
|
If Screen.Level.World.EnvironmentType = World.EnvironmentTypes.Cave Or Screen.Level.World.EnvironmentType = World.EnvironmentTypes.Forest Then
|
||||||
|
|
Loading…
Reference in New Issue