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

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

        try
        {
            ClientActorActPlayAnimation o = new ClientActorActPlayAnimation();
            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_animationName(IntPtr l)
    {
        int result;

        try
        {
            ClientActorActPlayAnimation clientActorActPlayAnimation = (ClientActorActPlayAnimation)LuaObject.checkSelf(l);
            string animationName;
            LuaObject.checkType(l, 2, out animationName);
            clientActorActPlayAnimation.m_animationName = animationName;
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }