yanghui1860
yanghui1860
public static void Push(IntPtr L, LuaByteBuffer bb) { LuaDLL.lua_pushlstring(L, bb.buffer, bb.buffer.Length); } 是不是应该改为 public static void Push(IntPtr L, LuaByteBuffer bb) { LuaDLL.lua_pushlstring(L, bb.buffer, bb.Length); }
vscode版本1.68.0, 插件版本0.4.19,设置了emmylua.colors.global后,"scope":"support.function.lua"和"scope":"support.function.library.lua"设置的foreground颜色都无效

配置信息: vscode为1.91.1 EmmyLua为0.9.19 Unity2019 + xlua launch.json配置: { "type": "emmylua_new", "request": "launch", "name": "EmmyLua New Debug", "host": "localhost", "port": 9876, "ext": [ ".lua", ".lua.txt", ".lua.bytes" ], "ideConnectDebugger": false }, 使用下面的代码连上调试器后...