SetEndToCurrentValue() private method

private SetEndToCurrentValue ( ) : void
return void
コード例 #1
0
ファイル: Lua_TweenColor.cs プロジェクト: zhaozw/poker-client
 static public int SetEndToCurrentValue(IntPtr l)
 {
     try {
         TweenColor self = (TweenColor)checkSelf(l);
         self.SetEndToCurrentValue();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #2
0
 static int SetEndToCurrentValue(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         TweenColor obj = (TweenColor)ToLua.CheckObject <TweenColor>(L, 1);
         obj.SetEndToCurrentValue();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
コード例 #3
0
    public static int SetEndToCurrentValue(IntPtr l)
    {
        int result;

        try
        {
            TweenColor tweenColor = (TweenColor)LuaObject.checkSelf(l);
            tweenColor.SetEndToCurrentValue();
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
コード例 #4
0
        static int _m_SetEndToCurrentValue(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


            TweenColor __cl_gen_to_be_invoked = (TweenColor)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));
            }
        }