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 AnimationClip [GI] ( #45)
Browse files Browse the repository at this point in the history
  • Loading branch information
Razmoth committed Jan 4, 2024
1 parent ca36417 commit b306965
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions AssetStudio/Classes/AnimationClip.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,9 @@ public AnimationClip(ObjectReader reader) : base(reader)
{
hasStreamingInfo = true;
m_MuscleClipSize = reader.ReadUInt32();
var pos = reader.Position;
m_MuscleClip = ClipMuscleConstant.ParseGI(reader);
reader.Position = pos + m_MuscleClipSize;
}
else if (muscleClipSize > 0)
{
Expand Down

0 comments on commit b306965

Please sign in to comment.