HybridCLR+Addressables热更新(4)脚本资源热更测试

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()
    {
        
    }
}

CheckAssetsUpdate 挂载之后  将原来Hello脚本的语句修改

脚本变动重新编译一下  动过的代码重新生成DLL

找到工程目录里的Dll,将其更改名称为HotUpdate.dll.bytes 复制替换热更文件夹下的DLL

出新的代码资源包

需要Load的资源上传服务器

程序输出Hello, Word!33333333333  证明脚本资源热更实现了!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值