Fix skybox orientation in forward third person camera. (Thanks 123DMWM)

This commit is contained in:
UnknownShadow200 2016-07-17 09:06:01 +10:00
parent db86bee196
commit 9e90ef6ed5

View file

@ -170,7 +170,7 @@ namespace ClassicalSharp {
}
public override Vector2 GetCameraOrientation() {
return new Vector2( -player.HeadYawRadians, -player.PitchRadians );
return new Vector2( player.HeadYawRadians + (float)Math.PI, -player.PitchRadians );
}
float dist = 3;