1
0
Fork 0

Melchior FRANZ:

I think the ufo turns a bit too fast. 25 is better.
This commit is contained in:
ehofman 2003-12-08 18:08:27 +00:00
parent 0b3159ec0c
commit 44ce4cdb97

View file

@ -158,7 +158,7 @@ void FGUFO::update( double dt ) {
// angle of turn
double turn_rate = sin(roll) * SGD_PI_4; // radians/sec
double turn = turn_rate * time_step;
double yaw = fabs(Rudder) < .2 ? 0.0 : Rudder / (10 + fabs(speed) * .1);
double yaw = fabs(Rudder) < .2 ? 0.0 : Rudder / (25 + fabs(speed) * .1);
// update (lon/lat) position
double lat2, lon2, az2;