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博客

相关推荐
谢斯7 小时前
[vscode] 使用unity打开vscode的取消.csproj的显示
ide·vscode·unity
魔术师Dix7 小时前
StartGame:Unity TDD 外部工程指南
学习·游戏·unity·c#·测试驱动开发
hsw8157739431 天前
第10章 软件架构的演化和维护 — 系统架构设计师
unity·系统架构·游戏引擎
tealcwu1 天前
【尝鲜】Unity 6.7alpha版本测试
unity·游戏引擎
懒狗跑ai的程序员Brain2 天前
如何利用粒子系统在unity制作一个烟花(粒子系统学习向)
学习·unity·游戏引擎
xcLeigh2 天前
Unity基础:材质与纹理入门——给物体穿上“衣服“
unity·游戏引擎·材质
unityのkiven2 天前
理解 GUILayout 与 EditorGUILayout,并探究 ScrollView 滚轮失效可能的原因
unity