From 997afb55788bf115cde69a3912a66e7d62fd1499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=91=E5=8D=B4?= <479813005@qq.com> Date: Mon, 1 Jul 2019 16:04:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B8=B8=E8=A7=81=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E8=A7=A3=E7=AD=94=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/source/src/v1/guide/FastQA.md | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 docs/source/src/v1/guide/FastQA.md diff --git a/docs/source/src/v1/guide/FastQA.md b/docs/source/src/v1/guide/FastQA.md new file mode 100644 index 00000000..fc7e3fb0 --- /dev/null +++ b/docs/source/src/v1/guide/FastQA.md @@ -0,0 +1,35 @@ +--- +title: 常见问题解答 +type: guide +order: 1030 +--- + + +[master]:https://github.com/Ourpalm/ILRuntime + +[CLR自动分析绑定]:https://ourpalm.github.io/ILRuntime/public/v1/guide/bind.html + + +## 版本 + +- Unity2018.3以上需要用最新ilruntime。 +- V1.4已过时,示例工程内的版本已过时,当前最新版本为[master]分支。 + +## 打包 + +### 用mono打包的时候,ILRuntime相关的功能都正常,改用IL2Cpp之后,注册的所有委托都不执行了? + +- 注册委托只能写在主工程里,不能写在热更工程里。 +- 检查是否做了[CLR自动分析绑定]。 + +### ExecutionEngineException: Attempting to call method 'Scene::GetModule' for which no ahead of time (AOT) code was generated.电脑运行没问题,安卓上报这个错 + +- 检查是否做了[CLR自动分析绑定]。 +- CLRBindings.Initialize(appdomain); 要调用这一句,放在最后.是否漏了这句。 + + + + +## 疑难杂症 + +