move: fix move_asymptotic_simple for new scheduling behavior
This commit is contained in:
parent
8550018f2c
commit
ce23576c17
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ INLINE MoveParams move_asymptotic_halflife(cmplx vel0, cmplx vel1, double halfli
|
|||
INLINE MoveParams move_asymptotic_simple(cmplx vel, double boost_factor) {
|
||||
// NOTE: this matches the old asymptotic rule semantics exactly
|
||||
double retention = 0.8;
|
||||
return move_asymptotic(vel * (1 + boost_factor * retention), vel, retention);
|
||||
return move_asymptotic(vel * (1 + boost_factor), vel, retention);
|
||||
}
|
||||
|
||||
INLINE MoveParams move_towards(cmplx target, cmplx attraction) {
|
||||
|
|
Loading…
Reference in a new issue