当前位置:   article > 正文

VsCode使用EmmyLua插件调试Unity工程Lua代码_vscode emmy launch debug

vscode emmy launch debug

一、VSCode安装EmmyLua

 二、添加配置文件

三、设置配置文件

执行完第二步会弹出添加好的launch.json配置文件,这个文件只需要修改“ideConnectDebugger” = false,其他一般不用修改。

 

 四、添加Lua断点调试入口

luaEnv变量必须为全局唯一

路径标红的地方配上你的正确路径名

var path = "C:/Users/你的用户名/.vscode/extensions/tangzx.emmylua-0.5.7/debugger/emmy/windows/x64/emmy_core.dll";

  1. private void Awake()
  2. {
  3. luaEnv = new LuaEnv();
  4. #if UNITY_EDITOR_WIN
  5. //链接rider和vscode的lua调试器
  6. var path = "C:/Users/你的用户名/.vscode/extensions/tangzx.emmylua-0.5.7/debugger/emmy/windows/x64/emmy_core.dll";
  7. if (File.Exists(path))
  8. {
  9. path = path.Replace("emmy_core.dll", "?.dll");
  10. bool openDebugFinish = true;
  11. try
  12. {
  13. luaEnv.DoString(
  14. string.Format("package.cpath = package.cpath .. ';{0}'", path) +
  15. "local dbg = require('emmy_core')" +
  16. "dbg.tcpConnect('localhost', 9966)"
  17. );
  18. }
  19. catch (Exception e)
  20. {
  21. openDebugFinish = false;
  22. Debug.LogError("不需要调试请忽略>>>>>\t调试server未能连接:\n" + e.Message);
  23. }
  24. finally
  25. {
  26. if (openDebugFinish)
  27. {
  28. Debug.LogError("成功连接调试server\n" + path);
  29. }
  30. }
  31. }
  32. #endif
  33. m_LuaScripts = new Dictionary<string, byte[]>();
  34. }

五、运行unity测试断点功能首先要确保Lua入口的断点调试代码为true,然后按下F5开启断点调试模式,再运行Unity,否则会报错,这个顺序不能错。连接成功后,VSCode的控制台会看到以下信息,就证明是断点调试开启了

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/904772
推荐阅读
相关标签
  

闽ICP备14008679号