build: make release restore reproducible
This commit is contained in:
parent
b459e0cf0c
commit
c38f6b8852
129 changed files with 16810 additions and 188 deletions
|
|
@ -445,7 +445,9 @@ static void DumpGfxObj(DatCollection dats, uint gfxObjId)
|
|||
$"classify: walls={walls} (outwardFacing={outwardWalls} inwardFacing={inwardWalls}) " +
|
||||
$"floors={floors} ceilings={ceilings} slopes={slopes}");
|
||||
Console.WriteLine("physics polygons:");
|
||||
foreach (var (polyId, poly) in g.PhysicsPolygons.OrderBy(p => p.Key))
|
||||
var physicsPolygons = g.PhysicsPolygons
|
||||
?? throw new InvalidDataException("GfxObj has no physics polygons collection.");
|
||||
foreach (var (polyId, poly) in physicsPolygons.OrderBy(p => p.Key))
|
||||
{
|
||||
Vector3 polyMin = new(float.MaxValue);
|
||||
Vector3 polyMax = new(float.MinValue);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue