Mark object polys as Object surface type
This commit is contained in:
parent
cae43f12ad
commit
007b4f8f1c
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue