static int _m_Begin_xlua_st_(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);



            try {
                {
                    UnityEngine.GameObject go = (UnityEngine.GameObject)translator.GetObject(L, 1, typeof(UnityEngine.GameObject));
                    float duration            = (float)LuaAPI.lua_tonumber(L, 2);
                    UnityEngine.Vector2 centerPos; translator.Get(L, 3, out centerPos);
                    float radius     = (float)LuaAPI.lua_tonumber(L, 4);
                    float fromDegree = (float)LuaAPI.lua_tonumber(L, 5);
                    float toDegree   = (float)LuaAPI.lua_tonumber(L, 6);

                    xc.ui.ugui.TweenCircleAnchoredPosition __cl_gen_ret = xc.ui.ugui.TweenCircleAnchoredPosition.Begin(go, duration, centerPos, radius, fromDegree, toDegree);
                    translator.Push(L, __cl_gen_ret);



                    return(1);
                }
            } catch (System.Exception __gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + __gen_e));
            }
        }
        static int _s_set_value(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

            try {
                xc.ui.ugui.TweenCircleAnchoredPosition __cl_gen_to_be_invoked = (xc.ui.ugui.TweenCircleAnchoredPosition)translator.FastGetCSObj(L, 1);
                __cl_gen_to_be_invoked.value = (float)LuaAPI.lua_tonumber(L, 2);
            } catch (System.Exception __gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + __gen_e));
            }
            return(0);
        }
        static int _g_get_toDegree(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

            try {
                xc.ui.ugui.TweenCircleAnchoredPosition __cl_gen_to_be_invoked = (xc.ui.ugui.TweenCircleAnchoredPosition)translator.FastGetCSObj(L, 1);
                LuaAPI.lua_pushnumber(L, __cl_gen_to_be_invoked.toDegree);
            } catch (System.Exception __gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + __gen_e));
            }
            return(1);
        }
        static int _g_get_centerPos(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

            try {
                xc.ui.ugui.TweenCircleAnchoredPosition __cl_gen_to_be_invoked = (xc.ui.ugui.TweenCircleAnchoredPosition)translator.FastGetCSObj(L, 1);
                translator.PushUnityEngineVector2(L, __cl_gen_to_be_invoked.centerPos);
            } catch (System.Exception __gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + __gen_e));
            }
            return(1);
        }
        static int _s_set_centerPos(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

            try {
                xc.ui.ugui.TweenCircleAnchoredPosition __cl_gen_to_be_invoked = (xc.ui.ugui.TweenCircleAnchoredPosition)translator.FastGetCSObj(L, 1);
                UnityEngine.Vector2 __cl_gen_value; translator.Get(L, 2, out __cl_gen_value);
                __cl_gen_to_be_invoked.centerPos = __cl_gen_value;
            } catch (System.Exception __gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + __gen_e));
            }
            return(0);
        }
        static int __CreateInstance(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

            try {
                if (LuaAPI.lua_gettop(L) == 1)
                {
                    xc.ui.ugui.TweenCircleAnchoredPosition __cl_gen_ret = new xc.ui.ugui.TweenCircleAnchoredPosition();
                    translator.Push(L, __cl_gen_ret);
                    return(1);
                }
            }
            catch (System.Exception __gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + __gen_e));
            }
            return(LuaAPI.luaL_error(L, "invalid arguments to xc.ui.ugui.TweenCircleAnchoredPosition constructor!"));
        }
        static int _m_SetEndToCurrentValue(RealStatePtr L)
        {
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


            xc.ui.ugui.TweenCircleAnchoredPosition __cl_gen_to_be_invoked = (xc.ui.ugui.TweenCircleAnchoredPosition)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));
            }
        }