Adjusted default pitch/yaw speed

This commit is contained in:
Seefo 2016-01-29 19:41:34 -05:00
parent 33a01819e3
commit 77050b13dc

View file

@ -62,8 +62,8 @@ const float MAX_WALKING_SPEED = 2.5f; // human walking speed
const float MAX_BOOST_SPEED = 0.5f * MAX_WALKING_SPEED; // keyboard motor gets additive boost below this speed
const float MIN_AVATAR_SPEED = 0.05f; // speed is set to zero below this
const float YAW_SPEED_DEFAULT = 66.0f; // degrees/sec
const float PITCH_SPEED_DEFAULT = 55.0f; // degrees/sec
const float YAW_SPEED_DEFAULT = 120.0f; // degrees/sec
const float PITCH_SPEED_DEFAULT = 90.0f; // degrees/sec
// TODO: normalize avatar speed for standard avatar size, then scale all motion logic
// to properly follow avatar size.