We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b4b3ca commit b909a8bCopy full SHA for b909a8b
Runtime/Storage.cs
@@ -19,9 +19,7 @@ private static void Setup()
19
#else
20
var assets = Resources.LoadAll<ScriptableObject>("");
21
#endif
22
- _assets = assets
23
- .Where(x => x is ILoadable)
24
- .ToArray();
+ _assets = assets.Where(x => x is ILoadable).ToArray();
25
}
26
27
public static T Get<T>() where T : ScriptableObject, ILoadable
0 commit comments