Esempio n. 1
0
        static int _m_SetContentScaleFactor(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                FairyGUI.GRoot gen_to_be_invoked = (FairyGUI.GRoot)translator.FastGetCSObj(L, 1);


                int gen_param_count = LuaAPI.lua_gettop(L);

                if (gen_param_count == 3 && LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2) && LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 3))
                {
                    int _designResolutionX = LuaAPI.xlua_tointeger(L, 2);
                    int _designResolutionY = LuaAPI.xlua_tointeger(L, 3);

                    gen_to_be_invoked.SetContentScaleFactor(
                        _designResolutionX,
                        _designResolutionY);



                    return(0);
                }
                if (gen_param_count == 4 && LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2) && LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 3) && translator.Assignable <FairyGUI.UIContentScaler.ScreenMatchMode>(L, 4))
                {
                    int _designResolutionX = LuaAPI.xlua_tointeger(L, 2);
                    int _designResolutionY = LuaAPI.xlua_tointeger(L, 3);
                    FairyGUI.UIContentScaler.ScreenMatchMode _screenMatchMode; translator.Get(L, 4, out _screenMatchMode);

                    gen_to_be_invoked.SetContentScaleFactor(
                        _designResolutionX,
                        _designResolutionY,
                        _screenMatchMode);



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

            return(LuaAPI.luaL_error(L, "invalid arguments to FairyGUI.GRoot.SetContentScaleFactor!"));
        }
Esempio n. 2
0
        static StackObject *SetContentScaleFactor_2(ILIntepreter __intp, StackObject *__esp, IList <object> __mStack, CLRMethod __method, bool isNewObj)
        {
            ILRuntime.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain;
            StackObject *ptr_of_this_method;
            StackObject *__ret = ILIntepreter.Minus(__esp, 3);

            ptr_of_this_method = ILIntepreter.Minus(__esp, 1);
            System.Int32 @designResolutionY = ptr_of_this_method->Value;

            ptr_of_this_method = ILIntepreter.Minus(__esp, 2);
            System.Int32 @designResolutionX = ptr_of_this_method->Value;

            ptr_of_this_method = ILIntepreter.Minus(__esp, 3);
            FairyGUI.GRoot instance_of_this_method = (FairyGUI.GRoot) typeof(FairyGUI.GRoot).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack));
            __intp.Free(ptr_of_this_method);

            instance_of_this_method.SetContentScaleFactor(@designResolutionX, @designResolutionY);

            return(__ret);
        }