- [Core] fix parsing issues [ExA]
This commit is contained in:
@@ -155,7 +155,7 @@ namespace AssetStudio
|
||||
m_Streams = new List<StreamInfo>();
|
||||
for (int i = 0; i < numStreams; i++)
|
||||
{
|
||||
m_Streams[i] = new StreamInfo(reader);
|
||||
m_Streams.Add(new StreamInfo(reader));
|
||||
}
|
||||
|
||||
if (version[0] < 4) //4.0 down
|
||||
@@ -706,6 +706,11 @@ namespace AssetStudio
|
||||
int m_CollisionVertexCount = reader.ReadInt32();
|
||||
}
|
||||
|
||||
if (reader.Game.Type.IsExAstris())
|
||||
{
|
||||
var m_ColliderType = reader.ReadInt32();
|
||||
}
|
||||
|
||||
int m_MeshUsageFlags = reader.ReadInt32();
|
||||
|
||||
if (version[0] > 2022 || (version[0] == 2022 && version[1] >= 1)) //2022.1 and up
|
||||
|
||||
Reference in New Issue
Block a user