2

使用 AluminumLua 我有一个 lua 文件,我在其中将函数设置为如下所示的变量:

local Start = function() print("Inside Start!") end

在 .NET 中,我尝试加载此文件,但它只是挂在 parse 方法上并且永远不会从它返回。

class Program
{
    static void Main(string[] args)
    {
        var context = new LuaContext();

        context.AddBasicLibrary();
        context.AddIoLibrary();

        var parser = new LuaParser(context, "test.lua");

        parser.Parse();

    }
}

任何想法为什么它挂起?

4

1 回答 1

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();
        }
    }
}

路亚:

function enthascreated(ent)
    if ent.Name == "Chest" then
          return true, true
    elseif ent.Name == "Ninja" then
          return false, true
    end
    return false, false
end
于 2013-10-24T14:08:50.617 回答