mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 18:50:00 +02:00
lower threshold for ignoring rotation updates
one hundred fold smaller
This commit is contained in:
parent
3230857b0d
commit
0456cb298f
1 changed files with 1 additions and 1 deletions
|
@ -1002,7 +1002,7 @@ void EntityItem::computeShapeInfo(ShapeInfo& info) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
const float MIN_POSITION_DELTA = 0.0001f;
|
const float MIN_POSITION_DELTA = 0.0001f;
|
||||||
const float MIN_ALIGNMENT_DOT = 0.9999f;
|
const float MIN_ALIGNMENT_DOT = 0.999999f;
|
||||||
const float MIN_VELOCITY_DELTA = 0.01f;
|
const float MIN_VELOCITY_DELTA = 0.01f;
|
||||||
const float MIN_DAMPING_DELTA = 0.001f;
|
const float MIN_DAMPING_DELTA = 0.001f;
|
||||||
const float MIN_GRAVITY_DELTA = 0.001f;
|
const float MIN_GRAVITY_DELTA = 0.001f;
|
||||||
|
|
Loading…
Reference in a new issue