static int SetCurrentValueToEnd(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         BCTweenTweener obj = (BCTweenTweener)ToLua.CheckObject <BCTweenTweener>(L, 1);
         obj.SetCurrentValueToEnd();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
    static int set_tweenlist(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            BCTweenTweener obj = (BCTweenTweener)o;
            System.Collections.Generic.List <BCUITweener> arg0 = (System.Collections.Generic.List <BCUITweener>)ToLua.CheckObject(L, 2, typeof(System.Collections.Generic.List <BCUITweener>));
            obj.tweenlist = arg0;
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o, "attempt to index tweenlist on a nil value"));
        }
    }
    static int get_tweenlist(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            BCTweenTweener obj = (BCTweenTweener)o;
            System.Collections.Generic.List <BCUITweener> ret = obj.tweenlist;
            ToLua.PushSealed(L, ret);
            return(1);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o, "attempt to index tweenlist on a nil value"));
        }
    }