SetEndToCurrentValue() private method

private SetEndToCurrentValue ( ) : void
return void
    private static int SetEndToCurrentValue(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 1);
        TweenRotation tweenRotation = (TweenRotation)LuaScriptMgr.GetUnityObjectSelf(L, 1, "TweenRotation");

        tweenRotation.SetEndToCurrentValue();
        return(0);
    }
 static public int SetEndToCurrentValue(IntPtr l)
 {
     try {
         TweenRotation self = (TweenRotation)checkSelf(l);
         self.SetEndToCurrentValue();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Beispiel #3
0
 static int SetEndToCurrentValue(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         TweenRotation obj = (TweenRotation)ToLua.CheckObject(L, 1, typeof(TweenRotation));
         obj.SetEndToCurrentValue();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
Beispiel #4
0
    public static int SetEndToCurrentValue(IntPtr l)
    {
        int result;

        try
        {
            TweenRotation tweenRotation = (TweenRotation)LuaObject.checkSelf(l);
            tweenRotation.SetEndToCurrentValue();
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
        static int _m_SetEndToCurrentValue(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


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


            try {
                {
                    __cl_gen_to_be_invoked.SetEndToCurrentValue(  );



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