本文整理了Java中com.badlogic.gdx.scenes.scene2d.ui.Table.invalidateHierarchy()
方法的一些代码示例,展示了Table.invalidateHierarchy()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.invalidateHierarchy()
方法的具体详情如下:
包路径:com.badlogic.gdx.scenes.scene2d.ui.Table
类名称:Table
方法名:invalidateHierarchy
暂无
代码示例来源:origin: libgdx/libgdx
public void resize (int width, int height) {
stage.getViewport().update(width, height, true);
table.invalidateHierarchy();
renderer.setProjectionMatrix(stage.getViewport().getCamera().combined);
graphSize = 0.75f * Math.min(stage.getViewport().getWorldWidth(), stage.getViewport().getWorldHeight());
steps = graphSize * 0.5f;
}
代码示例来源:origin: libgdx/libgdx
/** @param background May be null to clear the background. */
public void setBackground (Drawable background) {
if (this.background == background) return;
float padTopOld = getPadTop(), padLeftOld = getPadLeft(), padBottomOld = getPadBottom(), padRightOld = getPadRight();
this.background = background; // The default pad values use the background's padding.
float padTopNew = getPadTop(), padLeftNew = getPadLeft(), padBottomNew = getPadBottom(), padRightNew = getPadRight();
if (padTopOld + padBottomOld != padTopNew + padBottomNew || padLeftOld + padRightOld != padLeftNew + padRightNew)
invalidateHierarchy();
else if (padTopOld != padTopNew || padLeftOld != padLeftNew || padBottomOld != padBottomNew || padRightOld != padRightNew)
invalidate();
}
代码示例来源:origin: libgdx/libgdx
/** @param background May be null to clear the background. */
public void setBackground (Drawable background) {
if (this.background == background) return;
float padTopOld = getPadTop(), padLeftOld = getPadLeft(), padBottomOld = getPadBottom(), padRightOld = getPadRight();
this.background = background; // The default pad values use the background's padding.
float padTopNew = getPadTop(), padLeftNew = getPadLeft(), padBottomNew = getPadBottom(), padRightNew = getPadRight();
if (padTopOld + padBottomOld != padTopNew + padBottomNew || padLeftOld + padRightOld != padLeftNew + padRightNew)
invalidateHierarchy();
else if (padTopOld != padTopNew || padLeftOld != padLeftNew || padBottomOld != padBottomNew || padRightOld != padRightNew)
invalidate();
}
代码示例来源:origin: com.badlogicgames.gdx/gdx
/** @param background May be null to clear the background. */
public void setBackground (Drawable background) {
if (this.background == background) return;
float padTopOld = getPadTop(), padLeftOld = getPadLeft(), padBottomOld = getPadBottom(), padRightOld = getPadRight();
this.background = background; // The default pad values use the background's padding.
float padTopNew = getPadTop(), padLeftNew = getPadLeft(), padBottomNew = getPadBottom(), padRightNew = getPadRight();
if (padTopOld + padBottomOld != padTopNew + padBottomNew || padLeftOld + padRightOld != padLeftNew + padRightNew)
invalidateHierarchy();
else if (padTopOld != padTopNew || padLeftOld != padLeftNew || padBottomOld != padBottomNew || padRightOld != padRightNew)
invalidate();
}
代码示例来源:origin: jsjolund/GdxDemo3D
steerSettings.clearChildren();
steerSettings.add(humanSteerSettings);
steerSettings.invalidateHierarchy();
steerSettings.clearChildren();
steerSettings.add(dogSteerSettings);
steerSettings.invalidateHierarchy();
this.setVisible(false); // no controller for dogs
代码示例来源:origin: bladecoder/bladecoder-adventure-engine
@Override
public void sizeChanged() {
super.sizeChanged();
for(Actor a:arrowPanel.getChildren()) {
ImageButton b = (ImageButton)a;
float h = (getHeight() / 2) - style.infoLineLabelStyle.font.getLineHeight() / 2 - DPIUtils.getSpacing();
float ih = b.getImage().getDrawable().getMinHeight();
float iw = b.getImage().getDrawable().getMinWidth() * h / ih;
b.getImageCell().maxSize(iw, h);
}
arrowPanel.invalidateHierarchy();
}
内容来源于网络,如有侵权,请联系作者删除!