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

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

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

Table.isVisible介绍

暂无

代码示例

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

  1. public boolean touchDown(InputEvent event, float x, float y, int pointer, int button) {
  2. innerTable.setVisible(!innerTable.isVisible());
  3. return true;
  4. }
  5. });

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

  1. public boolean touchDown(InputEvent event, float x, float y, int pointer, int button) {
  2. innerTable.setVisible(!innerTable.isVisible());
  3. return true;
  4. }
  5. });

代码示例来源: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 float get (Actor actor) {
  3. if (actor instanceof Widget) {
  4. Widget widget = (Widget) actor;
  5. return widget.isVisible() ? widget.getPrefWidth() : 0;
  6. }
  7. if (actor instanceof Table) {
  8. Table table = (Table) actor;
  9. return table.isVisible() ? table.getPrefWidth() : 0;
  10. }
  11. throw new IllegalStateException("Unsupported actor type for PrefWidthIfVisibleValue: " + actor.getClass());
  12. }
  13. }

相关文章