Animator2: improve docs

This commit is contained in:
Emux 2018-02-16 11:00:14 +02:00
parent ba18ccf967
commit 7e0d4f64dd
No known key found for this signature in database
GPG Key ID: 89C6921D7AF2BDD0

View File

@ -46,17 +46,17 @@ public class Animator2 extends Animator {
private static final float DEFAULT_MIN_VISIBLE_CHANGE_SCALE = 1f;
/**
* The friction scalar for fling movements (1 as default).
* The friction scalar for fling movements (1 as base).
*/
public static float FLING_FRICTION_MOVE = 1.0f;
/**
* The friction scalar for fling rotations (1.2 as default).
* The friction scalar for fling rotations (1 as base).
*/
public static float FLING_FRICTION_ROTATE = 1.2f;
/**
* The friction scalar for fling scales (1.2 as default).
* The friction scalar for fling scales (1 as base).
*/
public static float FLING_FRICTION_SCALE = 1.2f;