Skip to content

Commit

Permalink
[v0.2.6] Fix for ResourcesAsset
Browse files Browse the repository at this point in the history
  • Loading branch information
g0dzZz-coder committed Feb 4, 2024
1 parent d3e4d74 commit cbc2458
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Runtime/Files.Resource/ResourcesAsset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public IEnumerable<IAssetUri> Dependencies() =>
.GetDependencies(_path.Project, recursive: false)
.Select(path => new AssetName(path));
#else
return Array.Empty<IAssetUri>();
Array.Empty<IAssetUri>();
#endif

void IDisposable.Dispose() => Unload();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.depra.assets.unity",
"version": "0.2.5",
"version": "0.2.6",
"displayName": "Depra.Assets",
"description": "Provides an API for loading Unity asset files in multiple ways through a single interface.",
"unity": "2021.3",
Expand Down

0 comments on commit cbc2458

Please sign in to comment.