mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-27 22:00:23 -04:00
Fixed #344
This commit is contained in:
parent
903be743ac
commit
be091ecebb
@ -499,8 +499,11 @@ namespace AssetStudio
|
|||||||
|
|
||||||
private string GetTransformPath(Transform transform)
|
private string GetTransformPath(Transform transform)
|
||||||
{
|
{
|
||||||
var frame = transformDictionary[transform];
|
if (transformDictionary.TryGetValue(transform, out var frame))
|
||||||
return GetFramePath(frame);
|
{
|
||||||
|
return GetFramePath(frame);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string GetFramePath(ImportedFrame frame)
|
private static string GetFramePath(ImportedFrame frame)
|
||||||
|
Loading…
Reference in New Issue
Block a user