- Fixed: Vel3DFromAngle's internal function call had the pitch and angle parameters backwards:

This commit is contained in:
Major Cooke 2017-06-07 17:45:22 -05:00 committed by Christoph Oelckers
parent 8b19ae98ea
commit 15df231a95

View file

@ -8137,7 +8137,7 @@ DEFINE_ACTION_FUNCTION(AActor, Vel3DFromAngle)
PARAM_FLOAT(speed);
PARAM_ANGLE(angle);
PARAM_ANGLE(pitch);
self->Vel3DFromAngle(pitch, angle, speed);
self->Vel3DFromAngle(angle, pitch, speed);
return 0;
}