Esempio n. 1
0
    static int GetMaterial(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

            if (count == 2)
            {
                UIMod  obj             = (UIMod)ToLua.CheckObject <UIMod>(L, 1);
                string arg0            = ToLua.CheckString(L, 2);
                UnityEngine.Material o = obj.GetMaterial(arg0);
                ToLua.Push(L, o);
                return(1);
            }
            else if (count == 3)
            {
                UIMod  obj             = (UIMod)ToLua.CheckObject <UIMod>(L, 1);
                string arg0            = ToLua.CheckString(L, 2);
                bool   arg1            = LuaDLL.luaL_checkboolean(L, 3);
                UnityEngine.Material o = obj.GetMaterial(arg0, arg1);
                ToLua.Push(L, o);
                return(1);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: UIMod.GetMaterial"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }