Package com.badlogic.gdx.scenes.scene2d.ui.Value

Examples of com.badlogic.gdx.scenes.scene2d.ui.Value.Fixed


    return this;
  }

  /** Padding at the bottom edge of the table. */
  public Table padBottom (float padBottom) {
    this.padBottom = new Fixed(padBottom);
    sizeInvalid = true;
    return this;
  }
View Full Code Here


    return this;
  }

  /** Padding at the right edge of the table. */
  public Table padRight (float padRight) {
    this.padRight = new Fixed(padRight);
    sizeInvalid = true;
    return this;
  }
View Full Code Here

    return this;
  }

  /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */
  public Cell<T> size (float size) {
    size(new Fixed(size));
    return this;
  }
View Full Code Here

    return this;
  }

  /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */
  public Cell<T> size (float width, float height) {
    size(new Fixed(width), new Fixed(height));
    return this;
  }
View Full Code Here

    return this;
  }

  /** Sets the minWidth, prefWidth, and maxWidth to the specified value. */
  public Cell<T> width (float width) {
    width(new Fixed(width));
    return this;
  }
View Full Code Here

    return this;
  }

  /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */
  public Cell<T> height (float height) {
    height(new Fixed(height));
    return this;
  }
View Full Code Here

    return this;
  }

  /** Sets the minWidth and minHeight to the specified value. */
  public Cell<T> minSize (float size) {
    minSize(new Fixed(size));
    return this;
  }
View Full Code Here

    return this;
  }

  /** Sets the minWidth and minHeight to the specified values. */
  public Cell<T> minSize (float width, float height) {
    minSize(new Fixed(width));
    return this;
  }
View Full Code Here

    minSize(new Fixed(width));
    return this;
  }

  public Cell<T> minWidth (float minWidth) {
    this.minWidth = new Fixed(minWidth);
    return this;
  }
View Full Code Here

    this.minWidth = new Fixed(minWidth);
    return this;
  }

  public Cell<T> minHeight (float minHeight) {
    this.minHeight = new Fixed(minHeight);
    return this;
  }
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.scenes.scene2d.ui.Value.Fixed

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.