com.badlogic.gdx.scenes.scene2d.ui.Table.getPrefHeight()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(5.1k)|赞(0)|评价(0)|浏览(263)

本文整理了Java中com.badlogic.gdx.scenes.scene2d.ui.Table.getPrefHeight()方法的一些代码示例,展示了Table.getPrefHeight()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.getPrefHeight()方法的具体详情如下:
包路径:com.badlogic.gdx.scenes.scene2d.ui.Table
类名称:Table
方法名:getPrefHeight

Table.getPrefHeight介绍

暂无

代码示例

代码示例来源:origin: libgdx/libgdx

  1. public float getPrefHeight () {
  2. float height = super.getPrefHeight();
  3. if (style.up != null) height = Math.max(height, style.up.getMinHeight());
  4. if (style.down != null) height = Math.max(height, style.down.getMinHeight());
  5. if (style.checked != null) height = Math.max(height, style.checked.getMinHeight());
  6. return height;
  7. }

代码示例来源:origin: libgdx/libgdx

  1. public float getPrefHeight () {
  2. float height = super.getPrefHeight();
  3. if (style.up != null) height = Math.max(height, style.up.getMinHeight());
  4. if (style.down != null) height = Math.max(height, style.down.getMinHeight());
  5. if (style.checked != null) height = Math.max(height, style.checked.getMinHeight());
  6. return height;
  7. }

代码示例来源:origin: libgdx/libgdx

  1. table2.setTransform(true);
  2. table2.setScaleX(1.5f);
  3. table2.setOrigin(table2.getPrefWidth() / 2, table2.getPrefHeight() / 2);

代码示例来源:origin: mbrlabs/Mundus

  1. @Override
  2. public float getPrefHeight() {
  3. if (table == null) return 0;
  4. if (actionRunning == false) {
  5. if (collapsed)
  6. return 0;
  7. else
  8. return table.getPrefHeight();
  9. }
  10. return currentHeight;
  11. }

代码示例来源:origin: kotcrab/vis-ui

  1. @Override
  2. public float getPrefHeight () {
  3. if (table == null) return 0;
  4. if (actionRunning == false) {
  5. if (collapsed)
  6. return 0;
  7. else
  8. return table.getPrefHeight();
  9. }
  10. return currentHeight;
  11. }

代码示例来源:origin: kotcrab/vis-ui

  1. @Override
  2. public float getPrefHeight () {
  3. return table == null ? 0 : table.getPrefHeight();
  4. }

代码示例来源:origin: jsjolund/GdxDemo3D

  1. public float getPrefHeight() {
  2. return super.getPrefHeight() * scale;
  3. }
  4. };

代码示例来源:origin: kotcrab/vis-ui

  1. @Override
  2. public boolean act (float delta) {
  3. if (collapsed) {
  4. currentHeight -= delta * 1000;
  5. if (currentHeight <= 0) {
  6. currentHeight = 0;
  7. collapsed = true;
  8. actionRunning = false;
  9. }
  10. } else {
  11. currentHeight += delta * 1000;
  12. if (currentHeight > table.getPrefHeight()) {
  13. currentHeight = table.getPrefHeight();
  14. collapsed = false;
  15. actionRunning = false;
  16. }
  17. }
  18. invalidateHierarchy();
  19. return !actionRunning;
  20. }
  21. }

代码示例来源:origin: kotcrab/vis-ui

  1. @Override
  2. public void layout () {
  3. if (table == null) return;
  4. table.setBounds(0, 0, table.getPrefWidth(), table.getPrefHeight());
  5. if (actionRunning == false) {
  6. if (collapsed)
  7. currentHeight = 0;
  8. else
  9. currentHeight = table.getPrefHeight();
  10. }
  11. }

代码示例来源:origin: mbrlabs/Mundus

  1. @Override
  2. public boolean act(float delta) {
  3. if (collapsed) {
  4. currentHeight -= delta * 1000;
  5. if (currentHeight <= 0) {
  6. currentHeight = 0;
  7. collapsed = true;
  8. actionRunning = false;
  9. }
  10. } else {
  11. currentHeight += delta * 1000;
  12. if (currentHeight > table.getPrefHeight()) {
  13. currentHeight = table.getPrefHeight();
  14. collapsed = false;
  15. actionRunning = false;
  16. }
  17. }
  18. invalidateHierarchy();
  19. return !actionRunning;
  20. }
  21. }

代码示例来源:origin: dsaltares/libgdx-cookbook

  1. public float getPrefHeight () {
  2. float height = super.getPrefHeight();
  3. if (style.background != null) height = Math.max(height, style.background.getMinHeight());
  4. return height;
  5. }

代码示例来源:origin: com.badlogicgames.gdx/gdx

  1. public float getPrefHeight () {
  2. float height = super.getPrefHeight();
  3. if (style.up != null) height = Math.max(height, style.up.getMinHeight());
  4. if (style.down != null) height = Math.max(height, style.down.getMinHeight());
  5. if (style.checked != null) height = Math.max(height, style.checked.getMinHeight());
  6. return height;
  7. }

代码示例来源:origin: kotcrab/vis-ui

  1. @Override
  2. public float get (Actor actor) {
  3. if (actor instanceof Widget) {
  4. Widget widget = (Widget) actor;
  5. return widget.isVisible() ? widget.getPrefHeight() : 0;
  6. }
  7. if (actor instanceof Table) {
  8. Table table = (Table) actor;
  9. return table.isVisible() ? table.getPrefHeight() : 0;
  10. }
  11. throw new IllegalStateException("Unsupported actor type for PrefHeightIfVisibleValue: " + actor.getClass());
  12. }
  13. }

代码示例来源:origin: kotcrab/vis-ui

  1. @Override
  2. public void layout () {
  3. if (table == null) return;
  4. table.setBounds(0, 0, table.getPrefWidth(), table.getPrefHeight());
  5. if (actionRunning == false) {
  6. if (collapsed)
  7. currentWidth = 0;
  8. else
  9. currentWidth = table.getPrefWidth();
  10. }
  11. }

代码示例来源:origin: mbrlabs/Mundus

  1. @Override
  2. public void layout() {
  3. if (table == null) return;
  4. table.setBounds(0, 0, getWidth(), getHeight());
  5. if (actionRunning == false) {
  6. if (collapsed)
  7. currentHeight = 0;
  8. else
  9. currentHeight = table.getPrefHeight();
  10. }
  11. }

代码示例来源:origin: kotcrab/vis-ui

  1. public void setCollapsed (boolean collapse, boolean withAnimation) {
  2. this.collapsed = collapse;
  3. updateTouchable();
  4. if (table == null) return;
  5. actionRunning = true;
  6. if (withAnimation) {
  7. addAction(collapseAction);
  8. } else {
  9. if (collapse) {
  10. currentHeight = 0;
  11. collapsed = true;
  12. } else {
  13. currentHeight = table.getPrefHeight();
  14. collapsed = false;
  15. }
  16. actionRunning = false;
  17. invalidateHierarchy();
  18. }
  19. }

代码示例来源:origin: mbrlabs/Mundus

  1. public void setCollapsed(boolean collapse, boolean withAnimation) {
  2. this.collapsed = collapse;
  3. updateTouchable();
  4. if (table == null) return;
  5. actionRunning = true;
  6. if (withAnimation) {
  7. addAction(collapseAction);
  8. } else {
  9. if (collapse) {
  10. currentHeight = 0;
  11. collapsed = true;
  12. } else {
  13. currentHeight = table.getPrefHeight();
  14. collapsed = false;
  15. }
  16. actionRunning = false;
  17. invalidateHierarchy();
  18. }
  19. }

代码示例来源:origin: jsjolund/GdxDemo3D

  1. bottomRightTable.add(speedController);
  2. bottomRightTable.setTransform(true);
  3. bottomRightTable.setOrigin(bottomRightTable.getPrefWidth() * scale, bottomRightTable.getPrefHeight() * scale);
  4. bottomRightTable.setScale(scale);
  5. rootTable.add(bottomRightTable).width(bottomRightTable.getPrefWidth()).height(bottomRightTable.getPrefHeight()).bottom().right();

相关文章