HomeSort by relevance Sort by last modified time
    Searched defs:amountY (Results 1 - 4 of 4) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
MoveByAction.java 22 private float amountX, amountY;
25 target.moveBy(amountX * percentDelta, amountY * percentDelta);
30 amountY = y;
42 return amountY;
46 amountY = y;
ScaleByAction.java 22 private float amountX, amountY;
25 target.scaleBy(amountX * percentDelta, amountY * percentDelta);
30 amountY = y;
35 amountY = scale;
47 return amountY;
51 this.amountY = y;
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TexturePacker.java 173 int amountY = settings.paddingY / 2;
177 for (int j = 1; j <= amountY; j++) {
185 for (int i = 1; i <= amountY; i++) {
200 for (int j = 1; j <= amountY; j++) {
208 for (int i = 1; i <= amountY; i++) {
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
ScrollPane.java 63 float amountX, amountY;
143 setScrollY(amountY + areaHeight * (y < vKnobBounds.y ? 1 : -1));
187 amountY += deltaY;
219 setScrollY(amountY + getMouseWheelY() * amount);
254 scrollY(overscrollY ? MathUtils.clamp(amountY, -overscrollDistance, maxY + overscrollDistance)
255 : MathUtils.clamp(amountY, 0, maxY));
287 amountY -= velocityY * alpha * delta;
293 if (amountY == -overscrollDistance) velocityY = 0;
294 if (amountY >= maxY + overscrollDistance) velocityY = 0;
317 if (visualAmountY != amountY) {
    [all...]

Completed in 270 milliseconds