public static int get_m_fxName(IntPtr l)
    {
        int result;

        try
        {
            ClientActorActAppear clientActorActAppear = (ClientActorActAppear)LuaObject.checkSelf(l);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, clientActorActAppear.m_fxName);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int constructor(IntPtr l)
    {
        int result;

        try
        {
            ClientActorActAppear o = new ClientActorActAppear();
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, o);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int set_m_fxName(IntPtr l)
    {
        int result;

        try
        {
            ClientActorActAppear clientActorActAppear = (ClientActorActAppear)LuaObject.checkSelf(l);
            string fxName;
            LuaObject.checkType(l, 2, out fxName);
            clientActorActAppear.m_fxName = fxName;
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }