Added research data, testing blender mesh generation

This commit is contained in:
2021-05-23 15:34:33 -05:00
parent f2efb7c42d
commit 505df54a1e
205 changed files with 124004 additions and 40 deletions

View File

@@ -321,7 +321,7 @@ class ModelConverter(softimage.SIModel):
vertex.weights = weight_values
vertex.deformers = deformers
vertex.deformer_indices = deformer_indices
def get_weights(self):
'''Gets weights and deformers, returns a list of four weight value
@@ -573,7 +573,7 @@ class ModelConverter(softimage.SIModel):
positions = self.export.xsi.ZET_GetVertexPositions(self.geo, False)
vertex_to_node_indices = self.export.xsi.ZET_GetVertexToNodeIndices(self.geo)
uvs = self.export.xsi.ZET_GetUVs(self.geo, 0)
for n in xrange(len(vertex_to_node_indices)):
vert = msh2.ClothVertex((positions[n * 3],
positions[n * 3 + 1],