Unity ILRuntime 笔记

Unity版本:2022.3.48 f1c1


1、新建一个Unity项目

2、导入 ILRuntime 包:

2.1 项目 Packages/manifest.json 添加 :

|----------------------------------------------------------------------------------------------------------------------------|
| "scopedRegistries": [ { "name": "ILRuntime", "url": "https://registry.npmjs.org", "scopes": [ "com.ourpalm" ] } ], |

注意: 不是在dependencies": { ... } 里面添加 , 是和 "dependencies" 同级

2.2 回到Unity,会弹界面,点Close

2.3 Unity 2022以上版本 :项目设置 - Package Manager - 勾选 Enable Preview Packages和 Show Dependencies

2.4 包管理 - Myxxx - 找到 ILRuntime 安装

3、 VS 构建 热更dll

3.1 VS 新建一个 .Net Framework 为 4.7或 4.8 的 类库 项目 (可引用 UnityEngine.dll)

3.1 写一个静态类,写一个静态方法 用于测试

3.2 发布出一个 dll

4、Unity 调用代码:

cs 复制代码
using UnityEngine;
using System.Collections;
using System.IO;
using ILRuntime.Runtime.Enviorment;


public class HelloWorld : MonoBehaviour
{
    //AppDomain是ILRuntime的入口,最好是在一个单例类中保存,整个游戏全局就一个,这里为了示例方便,每个例子里面都单独做了一个
    //大家在正式项目中请全局只创建一个AppDomain
    AppDomain appdomain;

    public string dllPath; //dll文件路径

    MemoryStream fs;



    void Start()
    {
        appdomain = new ILRuntime.Runtime.Enviorment.AppDomain();
        byte[] dllBytes = System.IO.File.ReadAllBytes(dllPath);
        fs = new MemoryStream(dllBytes);
        appdomain.LoadAssembly(fs);
        InitializeILRuntime();

        //调用(静态类名(可带命名空间), 静态方法名) 
        appdomain.Invoke("NNTest", "TestFun", null, null);
    }



    void InitializeILRuntime()
    {
#if DEBUG && (UNITY_EDITOR || UNITY_ANDROID || UNITY_IPHONE)
        //由于Unity的Profiler接口只允许在主线程使用,为了避免出异常,需要告诉ILRuntime主线程的线程ID才能正确将函数运行耗时报告给Profiler
        appdomain.UnityMainThreadID = System.Threading.Thread.CurrentThread.ManagedThreadId;
#endif
        //这里做一些ILRuntime的注册,HelloWorld示例暂时没有需要注册的
    }


    private void OnDestroy()
    {
        if (fs != null)
            fs.Close();
        fs = null;
    }

}

参考:从零开始 --- ILRuntime

Unity ILRuntime 用法-CSDN博客

相关推荐
nnsix3 小时前
Unity API 兼容的 .NET Standard 2.1 和 .NET Framework 区别
unity·游戏引擎·.net
mxwin3 小时前
Unity Shader 制作半透明物体 使用多Pass提前写入深度的方式 避免穿模
unity·游戏引擎
nnsix5 小时前
Unity HybridCLR 笔记
笔记·unity·游戏引擎
nnsix6 小时前
Unity Addressables 笔记
unity·游戏引擎
RReality6 小时前
【Unity Shader URP】视差贴图 实战教程
ui·平面·unity·游戏引擎·图形渲染·贴图
小清兔21 小时前
Addressable的设置打包流程
笔记·游戏·unity·c#
3D霸霸1 天前
Sourcetree 拉取新工程
数据仓库·unity
程序员正茂1 天前
Unity3d中RawImage显示视频画面偏白的解决方法
unity·视频·rawimage
mxwin1 天前
Unity SetPassCall和DrawCall的区别是什么
unity·游戏引擎·shader