[CLI] Fix export of some fbx models

This commit is contained in:
VaDiM
2025-03-31 18:35:17 +03:00
parent e1e43439c3
commit 40e0bd0248
2 changed files with 9 additions and 11 deletions

View File

@@ -57,16 +57,13 @@ namespace AssetStudio
public void SetAssetFilter(params ClassIDType[] classIDTypes)
{
if (filteredAssetTypesList.Count == 0)
filteredAssetTypesList.UnionWith(new[]
{
filteredAssetTypesList.UnionWith(new HashSet<ClassIDType>
{
ClassIDType.AssetBundle,
ClassIDType.ResourceManager,
ClassIDType.GameObject,
ClassIDType.Transform,
});
}
ClassIDType.AssetBundle,
ClassIDType.ResourceManager,
ClassIDType.GameObject,
ClassIDType.Transform,
});
if (classIDTypes.Contains(ClassIDType.MonoBehaviour))
{