Fix accidentally removed SectorPlane assignment. Added missing HitVector support.
This commit is contained in:
parent
bc4a8190bf
commit
069c5aa90a
3 changed files with 4 additions and 0 deletions
|
|
@ -4902,6 +4902,7 @@ bool P_LineTrace(AActor *t1, DAngle angle, double distance,
|
|||
outdata->HitLine = trace.Line;
|
||||
outdata->HitSector = trace.Sector;
|
||||
outdata->Hit3DFloor = trace.ffloor;
|
||||
outdata->SectorPlane = (trace.HitType == TRACE_HitCeiling) ? 1 : 0;
|
||||
if ( trace.HitType == TRACE_HitWall )
|
||||
{
|
||||
outdata->LineSide = trace.Side;
|
||||
|
|
@ -4928,6 +4929,7 @@ bool P_LineTrace(AActor *t1, DAngle angle, double distance,
|
|||
}
|
||||
else outdata->HitTexture = trace.HitTexture;
|
||||
outdata->HitLocation = trace.HitPos;
|
||||
outdata->HitDir = trace.HitVector;
|
||||
outdata->Distance = trace.Distance;
|
||||
outdata->NumPortals = TData.NumPortals;
|
||||
outdata->HitType = trace.HitType;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue