zip压缩加载测试
This commit is contained in:
17
Assets/Main/Script/Runtime/Fsm/FsmLoadSystem.cs
Normal file
17
Assets/Main/Script/Runtime/Fsm/FsmLoadSystem.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class FsmLoadSystem : FsmSystem , IFsmSystem
|
||||
{
|
||||
private OpenDomainType OpenDomainType { get; set; }
|
||||
|
||||
|
||||
public void SetOpenDomainType(OpenDomainType type)
|
||||
{
|
||||
this.OpenDomainType = type;
|
||||
}
|
||||
public OpenDomainType GetOpenDomainType()
|
||||
{
|
||||
return this.OpenDomainType;
|
||||
}
|
||||
}
|
||||
}
|
||||
3
Assets/Main/Script/Runtime/Fsm/FsmLoadSystem.cs.meta
Normal file
3
Assets/Main/Script/Runtime/Fsm/FsmLoadSystem.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1f012ae5832b467a802b8d775b1dae1e
|
||||
timeCreated: 1744710396
|
||||
257
Assets/Main/Script/Runtime/Fsm/HotFixState.cs
Normal file
257
Assets/Main/Script/Runtime/Fsm/HotFixState.cs
Normal file
@@ -0,0 +1,257 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using Cysharp.Threading.Tasks;
|
||||
using HybridCLR;
|
||||
using UnityEngine;
|
||||
using YooAsset;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class HotFixState : AbstractFSMIState
|
||||
{
|
||||
public string[] PatchedAOTAssemblyList = new string[]
|
||||
{
|
||||
"System.Core.dll",
|
||||
"UnityEngine.CoreModule.dll",
|
||||
"mscorlib.dll",
|
||||
"DOTween.dll",
|
||||
"InformationSave.RunTime.dll",
|
||||
"UIFarme.RunTime.dll",
|
||||
"UniTask.dll",
|
||||
"YooAsset.dll",
|
||||
"com.stary.evo.runtime.dll"
|
||||
|
||||
};
|
||||
public HotFixState(IFsmSystem system) : base(system)
|
||||
{
|
||||
}
|
||||
|
||||
public override async UniTask OnEnterAsync<T>(T param)
|
||||
{
|
||||
DomainConfig domainConfig = param as DomainConfig;
|
||||
Debug.Log("UnityEvo:热更脚本...");
|
||||
var package = YooAssets.GetPackage(AppConfig.ASSETPACKGENAME);
|
||||
// Editor环境下,HotUpdate.dll.bytes已经被自动加载,不需要加载,重复加载反而会出问题。
|
||||
|
||||
|
||||
// 添加类型存在性检查
|
||||
string fullClassName = $"{domainConfig.@namespace}.{domainConfig.className}";
|
||||
|
||||
#if EDITOR_SIMULATEMODE
|
||||
// Editor下无需加载,直接查找获得HotUpdate程序集
|
||||
Assembly hotUpdateAss = System.AppDomain.CurrentDomain.GetAssemblies()
|
||||
.First(a => a.GetName().Name == $"HotUpdate_{AppConfig.ASSETPACKGENAME}");
|
||||
#else
|
||||
string hotUpdateAssemblyName = $"HotUpdate_{AppConfig.ASSETPACKGENAME}";
|
||||
|
||||
|
||||
Type assemblyType = IsAssetLoaded(fullClassName);
|
||||
if (assemblyType!=null)
|
||||
{
|
||||
Debug.Log($"UnityEvo:热更程序集:{hotUpdateAssemblyName} 已经加载过了");
|
||||
FsmSystem.SetCurState(nameof(LoadResState), domainConfig, assemblyType);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
//判断DLL是否下载成功
|
||||
foreach (var aot in PatchedAOTAssemblyList)
|
||||
{
|
||||
var aotName = $"Android_{aot}";
|
||||
var handle = package.LoadAssetAsync<TextAsset>(aotName);
|
||||
await handle;
|
||||
if (handle.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
var assetObj = handle.AssetObject as TextAsset;
|
||||
_sAssetDatas.Add(assetObj);
|
||||
Debug.Log($"UnityEvo:dll:{aotName} ,下载成功");
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.Log($"UnityEvo:dll:{aotName} ,下载失败");
|
||||
}
|
||||
}
|
||||
|
||||
//先补元数据
|
||||
LoadMetadataForAOTAssemblies();
|
||||
|
||||
// 加载热更dll
|
||||
var hotfixDll = package.LoadAssetAsync<TextAsset>($"Android_HotUpdate_{AppConfig.ASSETPACKGENAME}.dll");
|
||||
await hotfixDll;
|
||||
var hotfixPdb = package.LoadAssetAsync<TextAsset>($"Android_HotUpdate_{AppConfig.ASSETPACKGENAME}.pdb");
|
||||
await hotfixPdb;
|
||||
Assembly hotUpdateAss = null;
|
||||
if (hotfixDll.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
var hotfixDllAsset = hotfixDll.AssetObject as TextAsset;
|
||||
if (hotfixPdb.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
Debug.Log($"UnityEvo:dll:加载成功!!");
|
||||
var hotfixPdbAsset = hotfixPdb.AssetObject as TextAsset;
|
||||
hotUpdateAss = Assembly.Load(hotfixDllAsset.bytes, hotfixPdbAsset.bytes);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (hotfixDllAsset != null)
|
||||
hotUpdateAss = Assembly.Load(hotfixDllAsset.bytes);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError($"UnityEvo:Android_HotUpdate_{AppConfig.ASSETPACKGENAME}.dll加载失败!!!!!");
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
if (hotUpdateAss != null)
|
||||
{
|
||||
|
||||
Type type = hotUpdateAss.GetType(fullClassName);
|
||||
|
||||
if (type == null)
|
||||
{
|
||||
Debug.LogError($"UnityEvo:热更类不存在!程序集: {hotUpdateAss.FullName}\n" +
|
||||
$"期望类名: {fullClassName}\n" +
|
||||
$"可用类型列表:{string.Join("\n", hotUpdateAss.GetTypes().Select(t => t.FullName))}");
|
||||
return;
|
||||
}
|
||||
|
||||
// 添加方法存在性检查
|
||||
MethodInfo onEnterMethod = type.GetMethod("OnEnter");
|
||||
MethodInfo onEnterAsyncMethod = type.GetMethod("OnEnterAsync");
|
||||
|
||||
if (onEnterMethod == null || onEnterAsyncMethod == null)
|
||||
{
|
||||
Debug.LogError($"UnityEvo:热更类进入方法缺失!\n" +
|
||||
$"存在方法:{string.Join(", ", type.GetMethods().Select(m => m.Name))}");
|
||||
return;
|
||||
}
|
||||
|
||||
MethodInfo onExitMethod = type.GetMethod("OnExit");
|
||||
MethodInfo onExitAsyncMethod = type.GetMethod("OnExitAsync");
|
||||
if (onExitMethod == null || onExitAsyncMethod == null)
|
||||
{
|
||||
Debug.LogError($"UnityEvo:热更类退出方法缺失!\n" +
|
||||
$"存在方法:{string.Join(", ", type.GetMethods().Select(m => m.Name))}");
|
||||
return;
|
||||
}
|
||||
Debug.Log($"UnityEvo:dll:Type检查成功!!");
|
||||
// AppConfig.SetDefaultHotfixType(type);
|
||||
FsmSystem.SetCurState(nameof(LoadResState), domainConfig, type);
|
||||
// // 创建热更类实例
|
||||
// DomainBase hotfixInstance = AppConfig.HOTFIXBASE.AddComponent(type) as DomainBase;
|
||||
//
|
||||
// if (hotfixInstance == null)
|
||||
// {
|
||||
// Debug.LogError($"热更类{fullClassName}实例创建失败!必须继承MonoBehaviour");
|
||||
// return;
|
||||
// }
|
||||
//
|
||||
//
|
||||
// // 原有调用逻辑修改为使用实例
|
||||
// onEnterMethod.Invoke(hotfixInstance, new object[] { "" }); // 第一个参数改为实例对象
|
||||
// onEnterAsyncMethod.Invoke(hotfixInstance, new object[] { "" });
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError($"UnityEvo:热更类不存在!程序集: hotUpdateAss 不存在\n" +
|
||||
$"期望类名: {fullClassName}\n" +
|
||||
$"可用类型列表:{string.Join("\n", hotUpdateAss.GetTypes().Select(t => t.FullName))}");
|
||||
}
|
||||
}
|
||||
|
||||
public override UniTask OnEnterAsync()
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
|
||||
public override UniTask OnEnterAsync<T1, T2>(T1 param1, T2 param2)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
|
||||
#region 补充元数据
|
||||
|
||||
// //补充元数据dll的列表
|
||||
// //通过RuntimeApi.LoadMetadataForAOTAssembly()函数来补充AOT泛型的原始元数据
|
||||
// private List<string> AOTMetaAssemblyFiles { get; } =new()
|
||||
// {
|
||||
// "Android_mscorlib.dll", "Android_System.dll", "Android_System.Core.dll",
|
||||
// };
|
||||
|
||||
private readonly List<TextAsset> _sAssetDatas = new List<TextAsset>();
|
||||
|
||||
|
||||
// public byte[] ReadBytesFromStreamingAssets(string dllName)
|
||||
// {
|
||||
// if (_sAssetDatas.ContainsKey(dllName))
|
||||
// {
|
||||
// return _sAssetDatas[dllName].bytes;
|
||||
// }
|
||||
//
|
||||
// return Array.Empty<byte>();
|
||||
// }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 为aot assembly加载原始metadata, 这个代码放aot或者热更新都行。
|
||||
/// 一旦加载后,如果AOT泛型函数对应native实现不存在,则自动替换为解释模式执行
|
||||
/// </summary>
|
||||
private void LoadMetadataForAOTAssemblies()
|
||||
{
|
||||
HomologousImageMode mode = HomologousImageMode.SuperSet;
|
||||
// foreach (var aotDllName in AOTGenericReferences.PatchedAOTAssemblyList)
|
||||
foreach (var aotDll in _sAssetDatas)
|
||||
{
|
||||
// var aotName = $"Android_{aotDllName}";
|
||||
//
|
||||
// byte[] dllBytes = ReadBytesFromStreamingAssets(aotName);
|
||||
if (aotDll != null)
|
||||
{
|
||||
byte[] dllBytes = aotDll.bytes;
|
||||
// 添加元数据加载校验
|
||||
if (dllBytes == null || dllBytes.Length == 0)
|
||||
{
|
||||
Debug.LogError($"AOT元数据加载失败:{aotDll.name}");
|
||||
continue;
|
||||
}
|
||||
|
||||
LoadImageErrorCode err = HybridCLR.RuntimeApi.LoadMetadataForAOTAssembly(dllBytes, mode);
|
||||
|
||||
Debug.Log($"UnityEvo:【补元】{aotDll.name} 加载结果: {err} 字节数: {dllBytes.Length}");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Type IsAssetLoaded(string assemblyName)
|
||||
{
|
||||
var assemblies = AppDomain.CurrentDomain.GetAssemblies();
|
||||
foreach (var assembly in assemblies)
|
||||
{
|
||||
Type assemblyType = assembly.GetType(assemblyName);
|
||||
if (assemblyType!=null)
|
||||
{
|
||||
|
||||
Debug.Log("type:" + assemblyType);
|
||||
return assemblyType;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public override void OnUpdate()
|
||||
{
|
||||
base.OnUpdate();
|
||||
}
|
||||
|
||||
public override UniTask OnExitAsync()
|
||||
{
|
||||
_sAssetDatas.Clear();
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
}
|
||||
}
|
||||
3
Assets/Main/Script/Runtime/Fsm/HotFixState.cs.meta
Normal file
3
Assets/Main/Script/Runtime/Fsm/HotFixState.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 693e2ecffc1b43caa7c7818e3aba708c
|
||||
timeCreated: 1741165298
|
||||
88
Assets/Main/Script/Runtime/Fsm/LoadResMainState.cs
Normal file
88
Assets/Main/Script/Runtime/Fsm/LoadResMainState.cs
Normal file
@@ -0,0 +1,88 @@
|
||||
using Cysharp.Threading.Tasks;
|
||||
using Main;
|
||||
using UnityEngine;
|
||||
using YooAsset;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class LoadResMainState : AbstractFSMIState
|
||||
{
|
||||
private string _doMain = "Main";
|
||||
|
||||
public LoadResMainState(IFsmSystem system) : base(system)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override async UniTask OnEnterAsync()
|
||||
{
|
||||
Debug.Log("加载资源...");
|
||||
var package = YooAssets.GetPackage(_doMain);
|
||||
|
||||
DomainConfig config = null;
|
||||
//加载热更配置文件
|
||||
var loadHotfixSettingsOp = package.LoadAssetAsync<DomainConfig>("Config_DomainConfig");
|
||||
await loadHotfixSettingsOp;
|
||||
if (loadHotfixSettingsOp.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
//更新成功
|
||||
Debug.Log($"UnityEvo:加载主配置文件 loadHotfixSettings : 【成功】");
|
||||
config = loadHotfixSettingsOp.AssetObject as DomainConfig;
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError($"UnityEvo:加载主配置文件 loadHotfixSettings : 【失败】");
|
||||
}
|
||||
|
||||
// 加载热更资源
|
||||
var loadOperation = package.LoadAssetAsync<GameObject>(config.mainPrefab);
|
||||
|
||||
await loadOperation;
|
||||
if (loadOperation.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
GameObject loadhotfix = loadOperation.InstantiateSync();
|
||||
AppConfig.SetDefaultMainInstance(loadhotfix);
|
||||
if (loadhotfix != null)
|
||||
{
|
||||
DomainBase hotfixInstance = loadhotfix.GetComponent<MainDomain>();
|
||||
if (hotfixInstance == null)
|
||||
{
|
||||
hotfixInstance = loadhotfix.AddComponent<MainDomain>();
|
||||
}
|
||||
|
||||
if (hotfixInstance == null)
|
||||
{
|
||||
Debug.LogError($"热更类{loadhotfix.name}实例创建失败!必须继承MonoBehaviour");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
// 原有调用逻辑修改为使用实例
|
||||
hotfixInstance.OnEnter("");
|
||||
hotfixInstance.OnEnterAsync("");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public override UniTask OnEnterAsync<T>(T param)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
public override UniTask OnEnterAsync<T1, T2>(T1 param1, T2 param2)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
public override void OnUpdate()
|
||||
{
|
||||
base.OnUpdate();
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override UniTask OnExitAsync()
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
}
|
||||
}
|
||||
3
Assets/Main/Script/Runtime/Fsm/LoadResMainState.cs.meta
Normal file
3
Assets/Main/Script/Runtime/Fsm/LoadResMainState.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c0fed0de80c04e7fb0f513ce21fed7b9
|
||||
timeCreated: 1744361114
|
||||
92
Assets/Main/Script/Runtime/Fsm/LoadResState.cs
Normal file
92
Assets/Main/Script/Runtime/Fsm/LoadResState.cs
Normal file
@@ -0,0 +1,92 @@
|
||||
using System;
|
||||
using Cysharp.Threading.Tasks;
|
||||
using Stary.Evo.InformationSave;
|
||||
using UnityEngine;
|
||||
using YooAsset;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class LoadResState : AbstractFSMIState
|
||||
{
|
||||
public GameObject mainPrefab;
|
||||
|
||||
public LoadResState(IFsmSystem system) : base(system)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
public override UniTask OnEnterAsync()
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
|
||||
public override UniTask OnEnterAsync<T>(T param)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
|
||||
public override async UniTask OnEnterAsync<T1, T2>(T1 param1, T2 param2)
|
||||
{
|
||||
Debug.Log("加载资源...");
|
||||
DomainConfig domainConfig = param1 as DomainConfig;
|
||||
Type type = param2 as Type;
|
||||
var package = YooAssets.GetPackage(domainConfig.domain);
|
||||
|
||||
// 加载热更资源
|
||||
var loadOperation = package.LoadAssetAsync<GameObject>(domainConfig.mainPrefab);
|
||||
|
||||
await loadOperation;
|
||||
if (loadOperation.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
mainPrefab = loadOperation.InstantiateSync();
|
||||
LocalTransformInfo info = mainPrefab.GetComponentInChildren<LocalTransformInfo>();
|
||||
FsmLoadSystem fsmLoadSystem = FsmSystem as FsmLoadSystem;
|
||||
|
||||
if (fsmLoadSystem.GetOpenDomainType() == OpenDomainType.DEFAULT)
|
||||
{
|
||||
info.Switch(0);
|
||||
}
|
||||
else if (fsmLoadSystem.GetOpenDomainType() == OpenDomainType.VIOICE)
|
||||
{
|
||||
info.Switch(1);
|
||||
}
|
||||
if (mainPrefab != null)
|
||||
{
|
||||
DomainBase hotfixInstance = mainPrefab.GetComponent(type) as DomainBase;
|
||||
if (hotfixInstance == null)
|
||||
{
|
||||
hotfixInstance = mainPrefab.AddComponent(type) as DomainBase;
|
||||
}
|
||||
|
||||
hotfixInstance.DomainName = domainConfig.domain;
|
||||
if (hotfixInstance == null)
|
||||
{
|
||||
Debug.LogError($"热更类{type.Name}实例创建失败!必须继承MonoBehaviour");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
// 原有调用逻辑修改为使用实例
|
||||
hotfixInstance.OnEnter("");
|
||||
hotfixInstance.OnEnterAsync("");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public override void OnUpdate()
|
||||
{
|
||||
base.OnUpdate();
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override async UniTask OnExitAsync()
|
||||
{
|
||||
Debug.Log("UnityEvo:Domain退出...");
|
||||
DomainBase domainBase = mainPrefab.GetComponent<DomainBase>();
|
||||
domainBase.OnExit();
|
||||
await domainBase.OnExitAsync();
|
||||
GameObject.Destroy(domainBase.gameObject);
|
||||
}
|
||||
}
|
||||
}
|
||||
3
Assets/Main/Script/Runtime/Fsm/LoadResState.cs.meta
Normal file
3
Assets/Main/Script/Runtime/Fsm/LoadResState.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f689e40cd4654793a8f1d3ce69ba3532
|
||||
timeCreated: 1741165763
|
||||
247
Assets/Main/Script/Runtime/Fsm/ResStartState.cs
Normal file
247
Assets/Main/Script/Runtime/Fsm/ResStartState.cs
Normal file
@@ -0,0 +1,247 @@
|
||||
using System;
|
||||
using Cysharp.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Assertions;
|
||||
using UnityEngine.Networking;
|
||||
using YooAsset;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class ResStartState : AbstractFSMIState
|
||||
{
|
||||
public ResStartState(IFsmSystem system) : base(system)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public override async UniTask OnEnterAsync()
|
||||
{
|
||||
Debug.Log("UnityEvo:启动开始资源初始化...");
|
||||
|
||||
|
||||
//初始化读取资源配置表
|
||||
HotfixMainResDomain hotfixMainResDomain = Resources.Load<HotfixMainResDomain>("HotfixMainResDomain");
|
||||
if (hotfixMainResDomain != null)
|
||||
{
|
||||
AppConfig.IPCONFIG = hotfixMainResDomain.hotfixMainResDomainEntity.ipconfig;
|
||||
AppConfig.USERNAME = hotfixMainResDomain.hotfixMainResDomainEntity.username;
|
||||
AppConfig.PASSWORD = hotfixMainResDomain.hotfixMainResDomainEntity.password;
|
||||
}
|
||||
Debug.Log($"UnityEvo:读取资源配置表成功...{ AppConfig.IPCONFIG}{AppConfig.USERNAME}{AppConfig.PASSWORD}");
|
||||
// 初始化资源系统
|
||||
YooAssets.Initialize();
|
||||
|
||||
|
||||
//自定义网络请求器
|
||||
// 设置自定义请求委托
|
||||
YooAssets.SetDownloadSystemUnityWebRequest(NasWebRequester);
|
||||
|
||||
|
||||
//初始化资源加载模块
|
||||
// 增加包存在性检查
|
||||
var package = YooAssets.TryGetPackage(AppConfig.ASSETPACKGENAME);
|
||||
if (package == null)
|
||||
{
|
||||
Debug.LogWarning($"UnityEvo:资源包 {AppConfig.ASSETPACKGENAME} 不存在,正在尝试创建...");
|
||||
package = YooAssets.CreatePackage(AppConfig.ASSETPACKGENAME);
|
||||
}
|
||||
|
||||
YooAssets.SetDefaultPackage(package);
|
||||
|
||||
// 初始化资源包
|
||||
#if EDITOR_SIMULATEMODE
|
||||
await EDITOR_SIMULATEMODE(package);
|
||||
AppConfig.IPCONFIGVideo = "http://192.168.31.100:9527/";
|
||||
#elif OFFLINE_PLAYMODE
|
||||
await OFFLINE_PLAYMODE(package);
|
||||
AppConfig.IPCONFIGVideo = Application.streamingAssetsPath + "/";
|
||||
|
||||
#elif HOST_PLAYMODE
|
||||
if (package.PackageName.Equals("Main"))
|
||||
{
|
||||
await OFFLINE_PLAYMODE(package);
|
||||
}
|
||||
else
|
||||
{
|
||||
await HOST_PLAYMODE(package);
|
||||
}
|
||||
|
||||
AppConfig.IPCONFIGVideo = "http://192.168.31.100:9527/";
|
||||
#elif WEB_PLAYMODE
|
||||
// IRemoteServices remoteServices = new RemoteServices(defaultHostServer, fallbackHostServer);
|
||||
// var webServerFileSystemParams = FileSystemParameters.CreateDefaultWebServerFileSystemParameters();
|
||||
// var webRemoteFileSystemParams =
|
||||
// FileSystemParameters.CreateDefaultWebRemoteFileSystemParameters(remoteServices); //支持跨域下载
|
||||
//
|
||||
// var initParameters = new WebPlayModeParameters();
|
||||
// initParameters.WebServerFileSystemParameters = webServerFileSystemParams;
|
||||
// initParameters.WebRemoteFileSystemParameters = webRemoteFileSystemParams;
|
||||
//
|
||||
// var initOperation = package.InitializeAsync(initParameters);
|
||||
// await initOperation;
|
||||
//
|
||||
// if (initOperation.Status == EOperationStatus.Succeed)
|
||||
// Debug.Log("UnityEvo:资源包初始化成功!");
|
||||
// else
|
||||
// Debug.LogError($"UnityEvo:资源包初始化失败:{initOperation.Error}");
|
||||
|
||||
Debug.LogError($"UnityEvo:暂不支持");
|
||||
#endif
|
||||
|
||||
FsmSystem.SetCurState(nameof(ResUpdateServerState));
|
||||
}
|
||||
|
||||
public override UniTask OnEnterAsync<T>(T param)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
public override UniTask OnEnterAsync<T1, T2>(T1 param1, T2 param2)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
public override void OnUpdate()
|
||||
{
|
||||
base.OnUpdate();
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override UniTask OnExitAsync()
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
|
||||
private async UniTask EDITOR_SIMULATEMODE(ResourcePackage package)
|
||||
{
|
||||
var buildResult = EditorSimulateModeHelper.SimulateBuild(AppConfig.ASSETPACKGENAME);
|
||||
var packageRoot = buildResult.PackageRootDirectory;
|
||||
var editorFileSystemParameters = FileSystemParameters.CreateDefaultEditorFileSystemParameters(packageRoot);
|
||||
var initParams = new EditorSimulateModeParameters();
|
||||
initParams.EditorFileSystemParameters = editorFileSystemParameters;
|
||||
var initialization = package.InitializeAsync(initParams);
|
||||
await initialization;
|
||||
if (initialization.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
Assert.AreEqual(EOperationStatus.Succeed, initialization.Status);
|
||||
Debug.Log("UnityEvo:资源包初始化成功!");
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError($"UnityEvo:资源包初始化失败:{initialization.Error}");
|
||||
}
|
||||
}
|
||||
|
||||
private async UniTask OFFLINE_PLAYMODE(ResourcePackage package)
|
||||
{
|
||||
var buildinFileSystemParams = FileSystemParameters.CreateDefaultBuildinFileSystemParameters();
|
||||
var initParameters = new OfflinePlayModeParameters();
|
||||
initParameters.BuildinFileSystemParameters = buildinFileSystemParams;
|
||||
var initOperation = package.InitializeAsync(initParameters);
|
||||
await initOperation;
|
||||
|
||||
if (initOperation.Status == EOperationStatus.Succeed)
|
||||
Debug.Log("UnityEvo:从本地加载资源包,初始化成功!");
|
||||
else
|
||||
Debug.LogError($"UnityEvo:从本地加载资源包,初始化失败:{initOperation.Error}");
|
||||
}
|
||||
|
||||
public async UniTask HOST_PLAYMODE(ResourcePackage package)
|
||||
{
|
||||
// 新增平台判断代码
|
||||
#if UNITY_EDITOR
|
||||
BuildTarget buildTarget = UnityEditor.EditorUserBuildSettings.activeBuildTarget;
|
||||
string platformName = buildTarget.ToString();
|
||||
#else
|
||||
string platformName = Application.platform.ToString();
|
||||
#endif
|
||||
Debug.Log($"目标平台标识: {platformName}");
|
||||
//从服务器加载配置列表
|
||||
WebRequestSystem webRequestSystem = new WebRequestSystem();
|
||||
string URL =
|
||||
$"{AppConfig.IPCONFIG}/HybridclrConfigData/{AppConfig.ASSETPACKGENAME}/{platformName}/{Application.productName}.json";
|
||||
Debug.Log("UnityEvo: 服务器配置文件地址:" + URL);
|
||||
string text = await webRequestSystem.Get(URL, GetAuthorization(AppConfig.USERNAME, AppConfig.PASSWORD));
|
||||
if (!string.IsNullOrEmpty(text))
|
||||
{
|
||||
try
|
||||
{
|
||||
Debug.Log("UnityEvo: 服务器配置文件读取成功:" + text);
|
||||
text = text.Trim('\uFEFF'); // 移除 BOM 字符
|
||||
HotfixMainResDomainEntity hotfixMainResDomainEntity =
|
||||
JsonConvert.DeserializeObject<HotfixMainResDomainEntity>(text);
|
||||
if (hotfixMainResDomainEntity != null &&
|
||||
hotfixMainResDomainEntity.domain == AppConfig.ASSETPACKGENAME)
|
||||
{
|
||||
AppConfig.IPCONFIG = hotfixMainResDomainEntity.ipconfig;
|
||||
AppConfig.PATHCONFIG = hotfixMainResDomainEntity.pathconfig;
|
||||
AppConfig.ASSETPACKGENAME = hotfixMainResDomainEntity.domain;
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new Exception("服务器配置文件中Domain与指定domain不匹配,进程中断,请排查:" + AppConfig.ASSETPACKGENAME);
|
||||
}
|
||||
}
|
||||
catch (JsonException e)
|
||||
{
|
||||
Debug.LogError($"UnityEvo:JSON解析失败: {e.Message}\n原始内容: {text}");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError("UnityEvo:从服务器获取的配置数据为空");
|
||||
}
|
||||
|
||||
|
||||
string defaultHostServer = $"{AppConfig.IPCONFIG}/{AppConfig.PATHCONFIG}";
|
||||
string fallbackHostServer = $"{AppConfig.IPCONFIG}/{AppConfig.PATHCONFIG}";
|
||||
|
||||
Debug.Log($"UnityEvo:正在初始化远程资源包,主服务器:{defaultHostServer}");
|
||||
// 在初始化下载器前添加证书验证配置
|
||||
|
||||
|
||||
var initParameters = new HostPlayModeParameters();
|
||||
IRemoteServices remoteServices = new RemoteServices(defaultHostServer, fallbackHostServer);
|
||||
var cacheFileSystemParams = FileSystemParameters.CreateDefaultCacheFileSystemParameters(remoteServices);
|
||||
cacheFileSystemParams.AddParameter(FileSystemParametersDefine.APPEND_FILE_EXTENSION, true);
|
||||
|
||||
var buildinFileSystemParams = FileSystemParameters.CreateDefaultBuildinFileSystemParameters();
|
||||
buildinFileSystemParams.AddParameter(FileSystemParametersDefine.APPEND_FILE_EXTENSION, true);
|
||||
buildinFileSystemParams.AddParameter(FileSystemParametersDefine.COPY_BUILDIN_PACKAGE_MANIFEST, true);
|
||||
initParameters.BuildinFileSystemParameters = null;
|
||||
initParameters.CacheFileSystemParameters = cacheFileSystemParams;
|
||||
|
||||
var initOperation = package.InitializeAsync(initParameters);
|
||||
|
||||
await initOperation;
|
||||
|
||||
if (initOperation.Status == EOperationStatus.Succeed)
|
||||
Debug.Log("UnityEvo:从远程加载资源包,初始化成功!");
|
||||
else
|
||||
Debug.LogError($"UnityEvo:从远程加载资源包,初始化失败:{initOperation.Error}");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 自定义网络请求器需要登录
|
||||
/// </summary>
|
||||
/// <param name="url"></param>
|
||||
/// <returns></returns>
|
||||
private UnityWebRequest NasWebRequester(string url)
|
||||
{
|
||||
var request = new UnityWebRequest(url, UnityWebRequest.kHttpVerbGET);
|
||||
var authorization = GetAuthorization(AppConfig.USERNAME, AppConfig.PASSWORD);
|
||||
request.SetRequestHeader("AUTHORIZATION", authorization);
|
||||
return request;
|
||||
}
|
||||
|
||||
private string GetAuthorization(string userName, string password)
|
||||
{
|
||||
string auth = userName + ":" + password;
|
||||
var bytes = System.Text.Encoding.GetEncoding("ISO-8859-1").GetBytes(auth);
|
||||
return "Basic " + System.Convert.ToBase64String(bytes);
|
||||
}
|
||||
}
|
||||
}
|
||||
3
Assets/Main/Script/Runtime/Fsm/ResStartState.cs.meta
Normal file
3
Assets/Main/Script/Runtime/Fsm/ResStartState.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2462c737fc9c4b53b35557f8a6aac453
|
||||
timeCreated: 1741165298
|
||||
132
Assets/Main/Script/Runtime/Fsm/ResUpdateLocalState.cs
Normal file
132
Assets/Main/Script/Runtime/Fsm/ResUpdateLocalState.cs
Normal file
@@ -0,0 +1,132 @@
|
||||
using Cysharp.Threading.Tasks;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Assertions;
|
||||
using YooAsset;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class ResUpdateLocalState : AbstractFSMIState
|
||||
{
|
||||
|
||||
|
||||
public ResUpdateLocalState(IFsmSystem system) : base(system)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public override async UniTask OnEnterAsync()
|
||||
{
|
||||
//初始化读取资源配置表
|
||||
var package = YooAssets.GetPackage(AppConfig.ASSETPACKGENAME);
|
||||
|
||||
|
||||
//更新失败
|
||||
|
||||
Debug.Log($"UnityEvo:切换为加载本地缓存资源...");
|
||||
|
||||
// 获取上次成功记录的版本
|
||||
string packageVersion = PlayerPrefs.GetString("GAME_VERSION", string.Empty);
|
||||
if (string.IsNullOrEmpty(packageVersion))
|
||||
{
|
||||
Debug.Log($"UnityEvo:没有找到本地版本记录,需要更新资源!");
|
||||
return;
|
||||
}
|
||||
|
||||
Debug.Log($"UnityEvo:获取资源版本 Version : 【{packageVersion}】");
|
||||
Debug.Log($"UnityEvo:开始加载本地资源...");
|
||||
// Assert.AreEqual(EOperationStatus.Succeed, requetVersionOp.Status);
|
||||
|
||||
|
||||
// 加载本地缓存的资源清单文件
|
||||
var updateManifestOp = package.UpdatePackageManifestAsync(packageVersion);
|
||||
await updateManifestOp;
|
||||
if (updateManifestOp.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
//更新成功
|
||||
Debug.Log($"UnityEvo:更新本地资源清单 updateManifest : 【成功】");
|
||||
}
|
||||
else
|
||||
{
|
||||
//更新失败
|
||||
Debug.LogError($"UnityEvo:加载本地资源清单文件失败,需要更新资源!: 【{updateManifestOp.Error}】");
|
||||
return;
|
||||
}
|
||||
|
||||
Assert.AreEqual(EOperationStatus.Succeed, updateManifestOp.Status);
|
||||
|
||||
|
||||
//4.下载补丁包
|
||||
await Download();
|
||||
|
||||
|
||||
//加载热更配置文件
|
||||
var loadHotfixSettingsOp = package.LoadAssetAsync<DomainConfig>("Config_DomainConfig");
|
||||
await loadHotfixSettingsOp;
|
||||
DomainConfig domainConfig = null;
|
||||
if (loadHotfixSettingsOp.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
//更新成功
|
||||
Debug.Log($"UnityEvo:加载热更配置文件 DomainConfig : 【成功】");
|
||||
domainConfig = loadHotfixSettingsOp.AssetObject as DomainConfig;
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError($"UnityEvo:加载热更配置文件 DomainConfig : 【失败】");
|
||||
}
|
||||
|
||||
if (package.PackageName.Equals("Main"))
|
||||
{
|
||||
FsmSystem.SetCurState(nameof(LoadResMainState));
|
||||
}
|
||||
else
|
||||
{
|
||||
if (domainConfig == null)
|
||||
{
|
||||
Debug.LogError($"UnityEvo:【{package.PackageName}】加载DomainConfig为空,无法继续执行后续流程,请检查!!!");
|
||||
}
|
||||
FsmSystem.SetCurState(nameof(HotFixState), domainConfig);
|
||||
}
|
||||
}
|
||||
|
||||
public override UniTask OnEnterAsync<T>(T param)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
public override UniTask OnEnterAsync<T1, T2>(T1 param1, T2 param2)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
public override void OnUpdate()
|
||||
{
|
||||
base.OnUpdate();
|
||||
}
|
||||
|
||||
|
||||
public override UniTask OnExitAsync()
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
|
||||
#region 下载热更资源
|
||||
|
||||
public async UniTask Download()
|
||||
{
|
||||
int downloadingMaxNum = 1;
|
||||
int failedTryAgain = 1;
|
||||
var package = YooAssets.GetPackage(AppConfig.ASSETPACKGENAME);
|
||||
var downloader = package.CreateResourceDownloader(downloadingMaxNum, failedTryAgain);
|
||||
|
||||
// 在正常开始游戏之前,还需要验证本地清单内容的完整性。
|
||||
if (downloader.TotalDownloadCount > 0)
|
||||
{
|
||||
Debug.Log("UnityEvo:资源内容本地并不完整,需要更新资源!");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: eca158039896455dba3ded1eb703a5da
|
||||
timeCreated: 1742291100
|
||||
214
Assets/Main/Script/Runtime/Fsm/ResUpdateServerState.cs
Normal file
214
Assets/Main/Script/Runtime/Fsm/ResUpdateServerState.cs
Normal file
@@ -0,0 +1,214 @@
|
||||
using Cysharp.Threading.Tasks;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Assertions;
|
||||
using YooAsset;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class ResUpdateServerState : AbstractFSMIState
|
||||
{
|
||||
|
||||
|
||||
|
||||
public ResUpdateServerState(IFsmSystem system) : base(system)
|
||||
{
|
||||
}
|
||||
|
||||
public override async UniTask OnEnterAsync()
|
||||
{
|
||||
Debug.Log("UnityEvo:开始资源更新...");
|
||||
|
||||
|
||||
// //初始化读取资源配置表
|
||||
var package = YooAssets.GetPackage(AppConfig.ASSETPACKGENAME);
|
||||
// 请求资源版本
|
||||
var requetVersionOp = package.RequestPackageVersionAsync();
|
||||
await requetVersionOp;
|
||||
string packageVersion = "";
|
||||
if (requetVersionOp.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
//更新成功
|
||||
packageVersion = requetVersionOp.PackageVersion;
|
||||
PlayerPrefs.SetString("GAME_VERSION", packageVersion);
|
||||
Debug.Log($"UnityEvo:获取资源版本 Version : 【{packageVersion}】");
|
||||
Debug.Log($"UnityEvo:开始加载服务器资源...");
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError($"UnityEvo:获取资源版本失败: 【{requetVersionOp.Error}】");
|
||||
FsmSystem.SetCurState(nameof(ResUpdateLocalState));
|
||||
return;
|
||||
}
|
||||
|
||||
// Assert.AreEqual(EOperationStatus.Succeed, requetVersionOp.Status);
|
||||
|
||||
|
||||
// 更新资源清单
|
||||
var updateManifestOp = package.UpdatePackageManifestAsync(packageVersion);
|
||||
await updateManifestOp;
|
||||
if (updateManifestOp.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
//更新成功
|
||||
Debug.Log($"UnityEvo:更新资源清单 updateManifest : 【成功】");
|
||||
}
|
||||
else
|
||||
{
|
||||
//更新失败
|
||||
Debug.LogError($"UnityEvo:更新资源清单失败: 【{updateManifestOp.Error}】");
|
||||
}
|
||||
|
||||
Assert.AreEqual(EOperationStatus.Succeed, updateManifestOp.Status);
|
||||
|
||||
|
||||
|
||||
|
||||
//4.下载补丁包
|
||||
await Download();
|
||||
|
||||
|
||||
|
||||
|
||||
//加载热更配置文件
|
||||
var loadHotfixSettingsOp = package.LoadAssetAsync<DomainConfig>("Config_DomainConfig");
|
||||
await loadHotfixSettingsOp;
|
||||
DomainConfig domainConfig = null;
|
||||
if (loadHotfixSettingsOp.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
//更新成功
|
||||
Debug.Log($"UnityEvo:加载热更配置文件 loadHotfixSettings : 【成功】");
|
||||
domainConfig = loadHotfixSettingsOp.AssetObject as DomainConfig;
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError($"UnityEvo:加载热更配置文件 loadHotfixSettings : 【失败】");
|
||||
}
|
||||
|
||||
if (package.PackageName.Equals("Main"))
|
||||
{
|
||||
FsmSystem.SetCurState(nameof(LoadResMainState));
|
||||
}
|
||||
else
|
||||
{
|
||||
if (domainConfig == null)
|
||||
{
|
||||
Debug.LogError($"UnityEvo:【{package.PackageName}】加载DomainConfig为空,无法继续执行后续流程,请检查!!!");
|
||||
}
|
||||
FsmSystem.SetCurState(nameof(HotFixState), domainConfig);
|
||||
}
|
||||
}
|
||||
public override UniTask OnEnterAsync<T>(T param)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
public override UniTask OnEnterAsync<T1, T2>(T1 param1, T2 param2)
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
public override void OnUpdate()
|
||||
{
|
||||
base.OnUpdate();
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override UniTask OnExitAsync()
|
||||
{
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
|
||||
#region 下载热更资源
|
||||
|
||||
public async UniTask Download()
|
||||
{
|
||||
// 在任意MonoBehaviour或DomainBase派生类中
|
||||
string[] andUnzipAsyncPath= await ZipTool.DownloadAndUnzipAsync(
|
||||
$"{AppConfig.IPCONFIG}/XOSMOPlug_inLibrary/{AppConfig.ASSETPACKGENAME}/Android/1.0.5/X_02_01_1.0.5.zip",
|
||||
Application.persistentDataPath + "/DownloadedContent",
|
||||
progress => Debug.Log($"下载进度:{progress:P0}"),
|
||||
progress => Debug.Log($"解压进度:{progress:P0}")
|
||||
);
|
||||
var package = YooAssets.GetPackage(AppConfig.ASSETPACKGENAME);
|
||||
var downloader = package.CreateResourceImporter(andUnzipAsyncPath, 3, 3);
|
||||
|
||||
|
||||
|
||||
|
||||
// int downloadingMaxNum = 10;
|
||||
// int failedTryAgain = 3;
|
||||
// var package = YooAssets.GetPackage(AppConfig.ASSETPACKGENAME);
|
||||
// var downloader = package.CreateResourceDownloader(downloadingMaxNum, failedTryAgain);
|
||||
|
||||
// //没有需要下载的资源
|
||||
// if (downloader.TotalDownloadCount == 0)
|
||||
// {
|
||||
// Debug.Log("UnityEvo:没有需要下载的资源,跳过更新");
|
||||
// return;
|
||||
// }
|
||||
//
|
||||
// //需要下载的文件总数和总大小
|
||||
// int totalDownloadCount = downloader.TotalDownloadCount;
|
||||
// long totalDownloadBytes = downloader.TotalDownloadBytes;
|
||||
// Debug.Log($"UnityEvo:需要下载的资源的个数【{totalDownloadCount}】,需要下载的资源的总大小{totalDownloadBytes/1024} MB");
|
||||
// //===================================适应新版本YooAsset插件的修改===================================
|
||||
// //注册回调方法
|
||||
// downloader.DownloadErrorCallback = OnDownloadErrorFunction;
|
||||
// downloader.DownloadUpdateCallback = OnDownloadProgressUpdateFunction;
|
||||
// downloader.DownloadFinishCallback = OnDownloadOverFunction;
|
||||
// downloader.DownloadFileBeginCallback = OnStartDownloadFileFunction;
|
||||
// //===================================适应新版本YooAsset插件的修改===================================
|
||||
//
|
||||
// //开启下载
|
||||
// downloader.BeginDownload();
|
||||
await downloader;
|
||||
|
||||
//检测下载结果
|
||||
if (downloader.Status == EOperationStatus.Succeed)
|
||||
{
|
||||
//下载成功
|
||||
Debug.Log("UnityEvo:资源更新完成");
|
||||
}
|
||||
else
|
||||
{
|
||||
//下载失败
|
||||
Debug.Log("UnityEvo:资源更新失败");
|
||||
}
|
||||
}
|
||||
|
||||
//===================================适应新版本YooAsset插件的修改===================================
|
||||
/// <summary>
|
||||
/// 开始下载
|
||||
/// </summary>
|
||||
private void OnStartDownloadFileFunction(DownloadFileData downloadFileData)
|
||||
{
|
||||
Debug.Log($"UnityEvo:开始下载:文件名:{downloadFileData.FileName},文件大小:{downloadFileData.FileSize/1024f/1024f} MB");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 下载完成
|
||||
/// </summary>
|
||||
private void OnDownloadOverFunction(DownloaderFinishData downloaderFinishData)
|
||||
{
|
||||
Debug.Log("UnityEvo:下载" + (downloaderFinishData.Succeed ? "成功" : "失败"));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 更新中
|
||||
/// </summary>
|
||||
private void OnDownloadProgressUpdateFunction(DownloadUpdateData downloadUpdateData)
|
||||
{
|
||||
Debug.Log($"UnityEvo:文件总数:{downloadUpdateData.TotalDownloadCount},已下载文件数:{downloadUpdateData.CurrentDownloadCount},下载总大小:{downloadUpdateData.TotalDownloadBytes/1024f/1024f} MB,已下载大小{downloadUpdateData.CurrentDownloadBytes/1024f/1024f} MB");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 下载出错
|
||||
/// </summary>
|
||||
/// <param name="errorData"></param>
|
||||
private void OnDownloadErrorFunction(DownloadErrorData errorData)
|
||||
{
|
||||
Debug.Log($"UnityEvo:下载出错:包名:{errorData.PackageName} 文件名:{errorData.FileName},错误信息:{errorData.ErrorInfo}");
|
||||
}
|
||||
//===================================适应新版本YooAsset插件的修改===================================
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bf15fa0d3ca74b0991fd60bef616d007
|
||||
timeCreated: 1741248693
|
||||
Reference in New Issue
Block a user