We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb6bd0 commit 8f215bbCopy full SHA for 8f215bb
DemoProject/Assets/Scripts/TestEntry/MonoEntry.cs
@@ -21,9 +21,8 @@ public static void Main()
21
}catch(Exception e)
22
{
23
Debug.Log(e.ToString());
24
- PureScript.Mono.ScriptEngine.OnException(e.ToString());
+ throw new Exception(e.ToString());
25
}
26
-
27
28
29
README.md
@@ -78,7 +78,7 @@
78
1. 需要热更新的程序集可以使用UnityEditor上的菜单PureScript/Build构建。
79
2. 目前iOS平台带的mono库为arm64指令集没有开启bitcode,如有其它需求请自己构建一个替换。
80
3. 如果是windows平台记得根据上面说明生成ScriptEngine.dll 替换导出目录中的dll
81
-4. Unity2020编辑器默release模式导出失败,需要在右下角修改为debug模式即可正常导出。
+4. 暂时不支持Unity2020
82
5. 建议所有网络或文件IO操作统一在il2cpp内执行,配置为Adapter提供给Mono使用。
83
84
--------------------------------------------
0 commit comments