private static int SetStartToCurrentValue(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 1);
        TweenWidth tweenWidth = (TweenWidth)LuaScriptMgr.GetUnityObjectSelf(L, 1, "TweenWidth");

        tweenWidth.SetStartToCurrentValue();
        return(0);
    }
示例#2
0
 static public int SetStartToCurrentValue(IntPtr l)
 {
     try {
         TweenWidth self = (TweenWidth)checkSelf(l);
         self.SetStartToCurrentValue();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#3
0
 static int SetStartToCurrentValue(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         TweenWidth obj = (TweenWidth)ToLua.CheckObject(L, 1, typeof(TweenWidth));
         obj.SetStartToCurrentValue();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
示例#4
0
    public static int SetStartToCurrentValue(IntPtr l)
    {
        int result;

        try
        {
            TweenWidth tweenWidth = (TweenWidth)LuaObject.checkSelf(l);
            tweenWidth.SetStartToCurrentValue();
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
示例#5
0
        static int _m_SetStartToCurrentValue(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


            TweenWidth __cl_gen_to_be_invoked = (TweenWidth)translator.FastGetCSObj(L, 1);


            try {
                {
                    __cl_gen_to_be_invoked.SetStartToCurrentValue(  );



                    return(0);
                }
            } catch (System.Exception __gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + __gen_e));
            }
        }