Skip to content

Commit

Permalink
Merge pull request #12 from ogxd/#11
Browse files Browse the repository at this point in the history
Fix dependencies should be collected recursively
  • Loading branch information
ogxd authored Jul 8, 2022
2 parents f764ab5 + d9820af commit b9cce31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/AssetInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public AssetInfo(string path)

public string[] GetDependencies()
{
return AssetDatabase.GetDependencies(path);
return AssetDatabase.GetDependencies(path, recursive: false);
}

public void ClearIncludedStatus()
Expand Down

0 comments on commit b9cce31

Please sign in to comment.