Skip to content

Interface ScaleResponder

Il Kadyrov edited this page Nov 3, 2020 · 1 revision

Interface ScaleResponder provides a callback to be invoked when the scale begins, continues and ends.

Referenced from: TouchInput.

public interface ScaleResponder {
    boolean onScaleBegin();

    boolean onScale(float x, float y, float scale, float velocity);

    boolean onScaleEnd();
}
Clone this wiki locally