欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

XLua使用过程中的异常记录

程序员文章站 2024-02-10 13:12:58
...

记录腾讯的开源Lua计划XLua的使用过程中遇到的各种异常/解决记录

1.LuaException: c# exception:Non-static method requires a target.,stack: at System.Reflection.MonoMethod.Invoke
调用非静态方法的时候要使用‘:’,而不能使用‘.’

    //Test.class
    public class Test {
      public void PrintStr()
      {
            Debug.Log("...");
       }
    }
--Test.lua
  function start()
    //--CS.Test().PrintStr()<-Wrong
    CS.Test():PrintStr();
  end

InvalidCastException: This delegate must add to CSharpCallLua: System.Action
可能造成的因素之一:代码还没有生成
解决办法:XLua->Generate Code
可能造成的因素之二:没有将用到的类型加到CSharpCallLua编译列表中

public static List<Type> CSharpCallLua = new List<Type>()
    {
        typeof(Action),
        //添加需要使用的泛型
        typeof(Action<bool>),
        typeof(UnityAction),
    };