HomeSort by relevance Sort by last modified time
    Searched defs:amountX (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);
29 amountX = x;
34 return amountX;
38 amountX = x;
ScaleByAction.java 22 private float amountX, amountY;
25 target.scaleBy(amountX * percentDelta, amountY * percentDelta);
29 amountX = x;
34 amountX = scale;
39 return amountX;
43 this.amountX = x;
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TexturePacker.java 172 int amountX = settings.paddingX / 2;
176 for (int i = 1; i <= amountX; i++) {
191 for (int i = 1; i <= amountX; i++) {
199 for (int i = 1; i <= amountX; i++) {
212 for (int i = 1; i <= amountX; i++) {
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
ScrollPane.java 63 float amountX, amountY;
130 setScrollX(amountX + areaWidth * (x < hKnobBounds.x ? -1 : 1));
186 amountX -= deltaX;
221 setScrollX(amountX + getMouseWheelX() * amount);
252 scrollX(overscrollX ? MathUtils.clamp(amountX, -overscrollDistance, maxX + overscrollDistance)
253 : MathUtils.clamp(amountX, 0, maxX));
286 amountX -= velocityX * alpha * delta;
291 if (amountX == -overscrollDistance) velocityX = 0;
292 if (amountX >= maxX + overscrollDistance) velocityX = 0;
310 if (visualAmountX != amountX) {
    [all...]

Completed in 246 milliseconds