mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-06-03 00:58:13 -04:00
Fix for m_MuscleClipSize
This commit is contained in:
parent
185348d9b8
commit
6ea1ff3e96
@ -1168,17 +1168,15 @@ namespace AssetStudio
|
|||||||
if (version >= 4)//4.0 and up
|
if (version >= 4)//4.0 and up
|
||||||
{
|
{
|
||||||
m_MuscleClipSize = reader.ReadUInt32();
|
m_MuscleClipSize = reader.ReadUInt32();
|
||||||
if (m_MuscleClipSize > 0)
|
if (!version.IsTuanjie)
|
||||||
{
|
{
|
||||||
if (version.IsTuanjie)
|
m_MuscleClip = new ClipMuscleConstant(reader);
|
||||||
{
|
}
|
||||||
_ = reader.ReadUInt32();
|
else if (m_MuscleClipSize > 0)
|
||||||
}
|
{
|
||||||
|
_ = reader.ReadInt32();
|
||||||
m_MuscleClip = new ClipMuscleConstant(reader); //m_AnimData (Tuanjie)
|
m_MuscleClip = new ClipMuscleConstant(reader); //m_AnimData (Tuanjie)
|
||||||
if (version.IsTuanjie)
|
m_StreamingInfo = new StreamingInfo(reader);
|
||||||
{
|
|
||||||
m_StreamingInfo = new StreamingInfo(reader);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (version >= (4, 3)) //4.3 and up
|
if (version >= (4, 3)) //4.3 and up
|
||||||
|
Loading…
x
Reference in New Issue
Block a user