mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 07:37:59 -05:00
Match LegoNavController::CalculateNewPosDir & LegoNavController::CalculateNewTargetVel (#723)
This commit is contained in:
parent
2e5d54c03e
commit
6464486800
1 changed files with 2 additions and 2 deletions
|
@ -236,7 +236,7 @@ float LegoNavController::CalculateNewTargetVel(int p_pos, int p_center, float p_
|
|||
float newVel;
|
||||
int diff = p_pos - p_center;
|
||||
|
||||
if (diff > m_deadZone) {
|
||||
if (diff < m_deadZone) {
|
||||
newVel = (diff - m_deadZone) * p_max / (p_center - m_deadZone);
|
||||
}
|
||||
else if (diff < -m_deadZone) {
|
||||
|
@ -375,7 +375,7 @@ MxBool LegoNavController::CalculateNewPosDir(
|
|||
}
|
||||
|
||||
delta_pos[1] += m_unk0x60;
|
||||
VPV3(p_newPos, new_pos, delta_pos);
|
||||
VPV3(p_newPos, delta_pos, new_pos);
|
||||
|
||||
if (m_unk0x68 != 0.0f) {
|
||||
float delta_rad = DTOR(m_unk0x68);
|
||||
|
|
Loading…
Reference in a new issue