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

Examples of com.badlogic.gdx.scenes.scene2d.ui.tablelayout.TableLayout


    setStyle(style);

    transform = true;

    final NinePatch background = style.background;
    TableLayout layout = getTableLayout();
    layout.padBottom(Integer.toString((int)(background.getBottomHeight()) + 1));
    layout.padTop(Integer.toString((int)(background.getTopHeight()) + 1));
    layout.padLeft(Integer.toString((int)(background.getLeftWidth()) + 1));
    layout.padRight(Integer.toString((int)(background.getRightWidth()) + 1));
  }
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.scenes.scene2d.ui.tablelayout.TableLayout

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.