使用AluminumLua我有一个lua文件,我将函数设置为如下变量:
local Start = function() print("Inside Start!") end
在.NET中我尝试加载这个文件,但它只是挂在解析方法上,永远不会从它返回。
class Program
{
static void Main(string[] args)
{
var context = new LuaContext();
context.AddBasicLibrary();
context.AddIoLibrary();
var parser = new LuaParser(context, "test.lua");
parser.Parse();
}
}
任何想法为什么会挂?
答案 0 :(得分:2)
我还没有尝试过AluminiumLua,但我多次使用过LuaInterface。如果您希望在启动时加载您的函数,请在文件中包含或DoFile / DoString并运行如下函数:
本地开始=功能()打印(“启动”)结束
开始()
如果您正在尝试从lua定义钩子,可以将LuaInterface与KopiLua一起使用,然后按照以下方式:
C#:
static List<LuaFunction> hooks = new List<LuaFunction>();
// Register this void
public void HookIt(LuaFunction func)
{
hooks.Add(func);
}
public static void WhenEntityCreates(Entity ent)
{
// We want to delete entity If we're returning true as first arg on lua
// And hide it If second arg is true on lua
foreach (var run in hooks)
{
var obj = run.Call(ent);
if (obj.Length > 0)
{
if ((bool)obj[0] == true) ent.Remove();
if ((bool)obj[1] == true) ent.Hide();
}
}
}
LUA:
function enthascreated(ent)
if ent.Name == "Chest" then
return true, true
elseif ent.Name == "Ninja" then
return false, true
end
return false, false
end