Add on for input.Mouse

I’d like to add the following to CVS if that’s ok:



To com.jme.input.Mouse




    protected float _speed = 1.0f;
    /**
     * Sets the speed multiplier for updating the cursor position
     * @param speed
     */
    public void setSpeed( float speed) {
       _speed = speed;
    }



Change to com.jme.input.AbsoluteMouse in update() method


        localTranslation.x += mouse.getXDelta() * _speed;
        localTranslation.y += mouse.getYDelta() * _speed;



Change to com.jme.input.RelativeMouse


        localTranslation.x = mouse.getXDelta() * _speed;
        localTranslation.y = mouse.getYDelta() * _speed;



Pending Mojo's approval of course :).

Well, ok, couldn’t wait. Went ahead and checked it in since it shouldn’t effect regression tests.

Sorry, busy day. I have no problem with that check in.