using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using UnityEngine;
using UnityEngine.AddressableAssets;
using UnityEngine.ResourceManagement.AsyncOperations;
public class CheckAssetsUpdate : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
// Addressables.LoadAssetAsync<GameObject>("Capsule").Completed += CheckAssetsUpdate_Completed;
Addressables.LoadAssetAsync<TextAsset>("HotUpdate.dll").Completed += CheckAssetsUpdate_Completed;
}
private void CheckAssetsUpdate_Completed(AsyncOperationHandle<TextAsset> obj)
{
Assembly hotUpdateAss = Assembly.Load(obj.Result.bytes);
Type type = hotUpdateAss.GetType("Hello");
type.GetMethod("Run").Invoke(null,null);
}
// Update is called once per frame
void Update()
{
}
}
HybridCLR+Addressables热更新(4)脚本资源热更测试
最新推荐文章于 2025-04-02 08:30:59 发布