mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-07-14 02:54:16 -04:00
optimizing
This commit is contained in:
@ -218,7 +218,7 @@ namespace AssetStudio
|
||||
while (parent != nullptr)
|
||||
{
|
||||
exportFrames->Add(parent->Name);
|
||||
parent = (ImportedFrame^)parent->Parent;
|
||||
parent = parent->Parent;
|
||||
}
|
||||
|
||||
List<ImportedBone^>^ boneList = meshListSome->BoneList;
|
||||
@ -232,7 +232,7 @@ namespace AssetStudio
|
||||
while (boneParent != nullptr)
|
||||
{
|
||||
exportFrames->Add(boneParent->Name);
|
||||
boneParent = (ImportedFrame^)boneParent->Parent;
|
||||
boneParent = boneParent->Parent;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user