This commit is contained in:
Razmoth
2023-09-22 20:31:55 +04:00
parent d594f90fec
commit 6ebeaeee3f
48 changed files with 5886 additions and 81 deletions

View File

@@ -297,6 +297,7 @@ namespace AssetStudio
public class MeshBlendShape
{
public string name;
public uint firstVertex;
public uint vertexCount;
public bool hasNormals;
@@ -308,7 +309,7 @@ namespace AssetStudio
if (version[0] == 4 && version[1] < 3) //4.3 down
{
var name = reader.ReadAlignedString();
name = reader.ReadAlignedString();
}
firstVertex = reader.ReadUInt32();
vertexCount = reader.ReadUInt32();