Skip to content

Commit 1e64bd7

Browse files
committed
Fixed a bug in ProcessVerticesWithoutWeights
1 parent dc0d21f commit 1e64bd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SuperBMDLib/source/Geometry/Shape.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public void ProcessVerticesWithoutWeights(Mesh mesh, VertexData vertData)
7979

8080
foreach (Face face in mesh.Faces)
8181
{
82-
for (int i = 2; i > 0; i--)
82+
for (int i = 2; i >= 0; i--)
8383
{
8484
Vertex vert = new Vertex();
8585

0 commit comments

Comments
 (0)