本文整理汇总了Java中com.badlogic.gdx.scenes.scene2d.ui.Table.setHeight方法的典型用法代码示例。如果您正苦于以下问题:Java Table.setHeight方法的具体用法?Java Table.setHeight怎么用?Java Table.setHeight使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.badlogic.gdx.scenes.scene2d.ui.Table
的用法示例。
在下文中一共展示了Table.setHeight方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: initGuiInGame
import com.badlogic.gdx.scenes.scene2d.ui.Table; //导入方法依赖的package包/类
private void initGuiInGame() {
mGuiStage = new Stage(new ScreenViewport());
Table gameScore = new Table();
if (DEBUG_RENDERER) {
gameScore.debug();
}
float scorePanelWidth = Gdx.graphics.getWidth() * 0.8f; // 80 % of screen
float scorePanelHeight = Gdx.graphics.getHeight() * 0.2f; // 20 % of screen
gameScore.setWidth(scorePanelWidth);
gameScore.setHeight(scorePanelHeight);
gameScore.setY(Gdx.graphics.getHeight() - (scorePanelHeight + 30.f));
gameScore.setX((Gdx.graphics.getWidth() - scorePanelWidth) * 0.5f);
gameScore.setBackground(new NinePatchDrawable(
new NinePatch(new Texture(Gdx.files.internal("red_button13.png")), 24, 24, 24, 24)));
gameScore.pad(32.f);
Label scoreLabel = new Label("Score", new Label.LabelStyle(
mDefaultFont, COLOR_FONT));
scoreLabel.setFontScale(1.2f);
gameScore.add(scoreLabel).expand();
gameScore.row();
mScoreLabel = new Label("" + mPointTotal, new Label.LabelStyle(
mDefaultFont, COLOR_FONT));
mScoreLabel.setFontScale(2.0f);
gameScore.add(mScoreLabel).expand();
mGuiStage.addActor(gameScore);
}
开发者ID:tgobbens,项目名称:fluffybalance,代码行数:37,代码来源:Balanceball.java示例2: create
import com.badlogic.gdx.scenes.scene2d.ui.Table; //导入方法依赖的package包/类
public void create() {
Stage stage = new Stage(new ScreenViewport());
getComponentByType(GuiComponent.class).stage = stage;
Table gameScore = new Table();
float scorePanelWidth = Gdx.graphics.getWidth() * 0.8f; // 80 % of screen
float scorePanelHeight = Gdx.graphics.getHeight() * 0.2f; // 20 % of screen
gameScore.setWidth(scorePanelWidth);
gameScore.setHeight(scorePanelHeight);
gameScore.setY(Gdx.graphics.getHeight() - (scorePanelHeight + 30.f));
gameScore.setX((Gdx.graphics.getWidth() - scorePanelWidth) * 0.5f);
gameScore.setBackground(new NinePatchDrawable(
new NinePatch(new Texture(Gdx.files.internal("red_button13.png")), 24, 24, 24, 24)));
gameScore.pad(32.f);
Label scoreLabel = new Label("Score", new Label.LabelStyle(
mFont, COLOR_FONT));
scoreLabel.setFontScale(1.2f);
gameScore.add(scoreLabel).expand();
gameScore.row();
mScoreLabel = new Label("" + 0, new Label.LabelStyle(mFont, COLOR_FONT));
mScoreLabel.setFontScale(2.0f);
gameScore.add(mScoreLabel).expand();
stage.addActor(gameScore);
}
开发者ID:tgobbens,项目名称:fluffybalance,代码行数:34,代码来源:IngameGuiEntity.java示例3: initGuiGameOver
import com.badlogic.gdx.scenes.scene2d.ui.Table; //导入方法依赖的package包/类
private void initGuiGameOver() {
mGuiGameOverStage = new Stage(new ScreenViewport());
Table rootTable = new Table();
if (DEBUG_RENDERER) {
rootTable.debug();
}
// add margin on the bottom for iOS
final float dialogBottomOffset = (Gdx.app.getType() == Application.ApplicationType.iOS) ? 220 : 0;
final float dialogMargin = 50.f;
final float dialogWidth = Gdx.graphics.getWidth() - (dialogMargin * 2.f);
final float dialogHeight = Gdx.graphics.getHeight() - (dialogMargin * 2.f) - dialogBottomOffset;
rootTable.setWidth(dialogWidth);
rootTable.setHeight(dialogHeight);
rootTable.setPosition(dialogMargin, dialogMargin + dialogBottomOffset);
rootTable.background(
new NinePatchDrawable(
new NinePatch(new Texture(Gdx.files.internal("blue_panel.png")), 24, 24, 24, 24)));
Label label = new Label("GAME OVER", mSkin);
label.setFontScale(2.f);
label.setStyle(new Label.LabelStyle(mDefaultFont, COLOR_FONT));
rootTable.add(label).expand().padTop(dialogHeight * 0.025f);
rootTable.row();
TextButton restartButton = new TextButton("RESTART", mSkin);
restartButton.getLabel().setFontScale(1.f);
restartButton.getLabel().setStyle(new Label.LabelStyle(mDefaultFont, COLOR_FONT));
restartButton.addCaptureListener(new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y) {
onStartGame();
}
});
Array<Integer> highScores = fetchHighScores();
mHighScoreLabel = new Array<Label>();
for (int i = 0; i < highScores.size; i++) {
Label scoreLabel = new Label("high score: " + highScores.get(i), mSkin);
scoreLabel.setFontScale(1.0f);
scoreLabel.setStyle(new Label.LabelStyle(mDefaultFont, COLOR_FONT));
rootTable.add(scoreLabel).expand();
rootTable.row();
mHighScoreLabel.add(scoreLabel);
}
// don't like the scene2d interface, if has bad defaults and documentation
// try to correctly position the bottom restart button
rootTable.add(restartButton).expand().width(
dialogWidth - (dialogMargin * 4.f)).height(dialogHeight * 0.1f).bottom().padBottom(dialogHeight * 0.05f);
mGuiGameOverStage.addActor(rootTable);
}
开发者ID:tgobbens,项目名称:fluffybalance,代码行数:62,代码来源:Balanceball.java示例4: create
import com.badlogic.gdx.scenes.scene2d.ui.Table; //导入方法依赖的package包/类
@Override
public void create() {
Stage stage = new Stage(new ScreenViewport());
getComponentByType(GuiComponent.class).stage = stage;
Table rootTable = new Table();
// add margin on the bottom for iOS
final float dialogBottomOffset = (Gdx.app.getType() == Application.ApplicationType.iOS) ? 220 : 0;
final float dialogMargin = 50.f;
final float dialogWidth = Gdx.graphics.getWidth() - (dialogMargin * 2.f);
final float dialogHeight = Gdx.graphics.getHeight() - (dialogMargin * 2.f) - dialogBottomOffset;
mDefaultMargin = dialogWidth * 0.03f;
rootTable.setWidth(dialogWidth);
rootTable.setHeight(dialogHeight);
rootTable.setPosition(dialogMargin, dialogMargin + dialogBottomOffset);
rootTable.background(
new NinePatchDrawable(
new NinePatch(new Texture(Gdx.files.internal("blue_panel.png")), 24, 24, 24, 24)));
// HEADER
Label label = new Label("LEADERBOARD", mSkin);
label.setFontScale(1.6f);
label.setStyle(new Label.LabelStyle(mFont, COLOR_FONT));
rootTable.add(label)
.expand(true, false)
.padTop(dialogHeight * 0.05f)
.padBottom(mDefaultMargin * 0.5f);
rootTable.row();
mScrollPaneTable = new Table(mSkin);
ScrollPane scrollPane = new ScrollPane(mScrollPaneTable);
rootTable.add(scrollPane)
.fill()
.expand()
.padTop(mDefaultMargin * 0.5f)
.padBottom(mDefaultMargin * 0.5f);
rootTable.row();
// RESTART button
TextButton restartButton = new TextButton("RESTART", mSkin);
restartButton.getLabel().setFontScale(1.f);
restartButton.getLabel().setStyle(new Label.LabelStyle(mFont, COLOR_FONT));
restartButton.addCaptureListener(new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y) {
mEngine.getFirstEntityOfType(GameStateEntity.class).onStartGame();
}
});
// try to correctly position the bottom restart button
rootTable.add(restartButton)
.expand(true, false)
.width(dialogWidth - (dialogMargin * 4.f))
.height(dialogHeight * 0.08f)
.padTop(mDefaultMargin * 0.5f)
.padBottom(mDefaultMargin)
.padLeft(mDefaultMargin)
.padRight(mDefaultMargin)
.center();
stage.addActor(rootTable);
}
开发者ID:tgobbens,项目名称:fluffybalance,代码行数:70,代码来源:LeaderBoardGuiEntity.java本文标签属性:
示例:示例英语
代码:代码大全可复制
java:javascript18岁
Table:table和desk的区别
setHeight:setHeight