Mark object polys as Object surface type

This commit is contained in:
Jarrod Doyle 2025-01-26 12:57:17 +00:00
parent cae43f12ad
commit 007b4f8f1c
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ public enum SurfaceType
{ {
Solid, Solid,
Sky, Sky,
Water, Object,
Air, Air,
} }
@ -144,7 +144,7 @@ public class MeshBuilder
polyVertices.Add(vertex); polyVertices.Add(vertex);
} }
AddPolygon(polyVertices, SurfaceType.Solid); AddPolygon(polyVertices, SurfaceType.Object);
} }
} }
} }