Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
- [Core] fix issue with parsing Mesh [LoD]
Browse files Browse the repository at this point in the history
  • Loading branch information
Razmoth committed Jan 21, 2024
1 parent 52ad0d3 commit 090225f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions AssetStudio/Classes/Mesh.cs
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,11 @@ public BlendShapeData(ObjectReader reader)
shapes.Add(new MeshBlendShape(reader));
}

if (reader.Game.Type.IsLoveAndDeepspace())
{
reader.AlignStream();
}

int numChannels = reader.ReadInt32();
channels = new List<MeshBlendShapeChannel>();
for (int i = 0; i < numChannels; i++)
Expand Down

0 comments on commit 090225f

Please sign in to comment.