【m】插件上传

This commit is contained in:
2026-04-28 16:48:04 +08:00
parent 459db5ec01
commit 753878bdbb
631 changed files with 91583 additions and 11 deletions

View File

@@ -0,0 +1,23 @@
using System; //Action
using UnityEditor.PackageManager; //PackageInfo
using UnityEditor.PackageManager.Requests; //Request<T>
namespace Unity.RenderStreaming.Editor
{
class SearchAllRequestInfo
{
internal bool OfflineMode;
internal Action<Request<PackageInfo[]>> OnSuccessAction;
internal Action<Request<PackageInfo[]>> OnFailAction;
internal SearchAllRequestInfo(bool offlineMode,
Action<Request<PackageInfo[]>> onSuccess, Action<Request<PackageInfo[]>> onFail)
{
OfflineMode = offlineMode;
OnSuccessAction = onSuccess;
OnFailAction = onFail;
}
}
} //namespace Unity.RenderStreaming.Editor