Address review
This commit is contained in:
parent
35d753406b
commit
41874769aa
@ -36,12 +36,6 @@ namespace Components
|
|||||||
// like later versions of the game do
|
// like later versions of the game do
|
||||||
if (!trace->startsolid || elevatorSetting >= Elevators::ENABLED)
|
if (!trace->startsolid || elevatorSetting >= Elevators::ENABLED)
|
||||||
{
|
{
|
||||||
pml->groundTrace = *trace;
|
|
||||||
|
|
||||||
const auto fraction = trace->fraction;
|
|
||||||
ps->origin[0] += fraction * (point[0] - ps->origin[0]);
|
|
||||||
ps->origin[1] += fraction * (point[1] - ps->origin[1]);
|
|
||||||
ps->origin[2] += fraction * (point[2] - ps->origin[2]);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -58,6 +52,13 @@ namespace Components
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pml->groundTrace = *trace;
|
||||||
|
|
||||||
|
const auto fraction = trace->fraction;
|
||||||
|
ps->origin[0] += fraction * (point[0] - ps->origin[0]);
|
||||||
|
ps->origin[1] += fraction * (point[1] - ps->origin[1]);
|
||||||
|
ps->origin[2] += fraction * (point[2] - ps->origin[2]);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user