How to implement a slider when you drag your finger across the screen?
everywhere in the examples for scrolling a keyboard is involved:
OrthographicCamera camera; ... public void render () { if (Gdx.input.isKeyPressed(Input.Keys.LEFT)){ camera.position.x -= 5; ...
and how to realize the movement of the camera when you hold your finger across the screen?
Thank.