Mark object polys as Object surface type
This commit is contained in:
parent
cae43f12ad
commit
007b4f8f1c
|
@ -11,7 +11,7 @@ public enum SurfaceType
|
|||
{
|
||||
Solid,
|
||||
Sky,
|
||||
Water,
|
||||
Object,
|
||||
Air,
|
||||
}
|
||||
|
||||
|
@ -144,7 +144,7 @@ public class MeshBuilder
|
|||
polyVertices.Add(vertex);
|
||||
}
|
||||
|
||||
AddPolygon(polyVertices, SurfaceType.Solid);
|
||||
AddPolygon(polyVertices, SurfaceType.Object);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue