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 42d3dbb commit 0f98db6Copy full SHA for 0f98db6
Libraries/GameFramework.dll
0 Bytes
Scripts/Runtime/Resource/ResourceComponent.cs
@@ -1393,9 +1393,9 @@ public IResourceGroupCollection GetResourceGroupCollection(params string[] resou
1393
/// </summary>
1394
/// <param name="resourceGroupNames">要获取的资源组名称的集合。</param>
1395
/// <returns>要获取的资源组集合。</returns>
1396
- public void GetResourceGroupCollection(List<string> resourceGroupNames)
+ public IResourceGroupCollection GetResourceGroupCollection(List<string> resourceGroupNames)
1397
{
1398
- m_ResourceManager.GetResourceGroupCollection(resourceGroupNames);
+ return m_ResourceManager.GetResourceGroupCollection(resourceGroupNames);
1399
}
1400
1401
/// <summary>
0 commit comments