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

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

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

Table.hit介绍

暂无

代码示例

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

  1. public Actor hit (float x, float y, boolean touchable) {
  2. if (!isVisible()) return null;
  3. Actor hit = super.hit(x, y, touchable);
  4. if (hit == null && isModal && (!touchable || getTouchable() == Touchable.enabled)) return this;
  5. float height = getHeight();
  6. if (hit == null || hit == this) return hit;
  7. if (y <= height && y >= height - getPadTop() && x >= 0 && x <= getWidth()) {
  8. // Hit the title bar, don't use the hit child if it is in the Window's table.
  9. Actor current = hit;
  10. while (current.getParent() != this)
  11. current = current.getParent();
  12. if (getCell(current) != null) return this;
  13. }
  14. return hit;
  15. }

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

  1. public Actor hit (float x, float y, boolean touchable) {
  2. if (!isVisible()) return null;
  3. Actor hit = super.hit(x, y, touchable);
  4. if (hit == null && isModal && (!touchable || getTouchable() == Touchable.enabled)) return this;
  5. float height = getHeight();
  6. if (hit == null || hit == this) return hit;
  7. if (y <= height && y >= height - getPadTop() && x >= 0 && x <= getWidth()) {
  8. // Hit the title bar, don't use the hit child if it is in the Window's table.
  9. Actor current = hit;
  10. while (current.getParent() != this)
  11. current = current.getParent();
  12. if (getCell(current) != null) return this;
  13. }
  14. return hit;
  15. }

代码示例来源:origin: manuelbua/uracer-kotd

  1. @Override
  2. public Actor hit (float x, float y, boolean touchable) {
  3. Actor hit = super.hit(x, y, touchable);
  4. if (hit == null && isModal && (!touchable || getTouchable() == Touchable.enabled)) return this;
  5. return hit;
  6. }

代码示例来源:origin: com.github.xaguzman/gamedevlib-libgdx

  1. public Actor hit (float x, float y, boolean touchable) {
  2. Actor hit = super.hit(x, y, touchable);
  3. if (hit == null && isModal && (!touchable || getTouchable() == Touchable.enabled)) return this;
  4. float height = getHeight();
  5. if (hit == null || hit == this) return hit;
  6. if (y <= height && y >= height - getPadTop() && x >= 0 && x <= getWidth()) {
  7. // Hit the title bar, don't use the hit child if it is in the Window's table.
  8. Actor current = hit;
  9. while (current.getParent() != this)
  10. current = current.getParent();
  11. if (getCell(current) != null) return this;
  12. }
  13. return hit;
  14. }

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

  1. public Actor hit (float x, float y, boolean touchable) {
  2. if (!isVisible()) return null;
  3. Actor hit = super.hit(x, y, touchable);
  4. if (hit == null && isModal && (!touchable || getTouchable() == Touchable.enabled)) return this;
  5. float height = getHeight();
  6. if (hit == null || hit == this) return hit;
  7. if (y <= height && y >= height - getPadTop() && x >= 0 && x <= getWidth()) {
  8. // Hit the title bar, don't use the hit child if it is in the Window's table.
  9. Actor current = hit;
  10. while (current.getParent() != this)
  11. current = current.getParent();
  12. if (getCell(current) != null) return this;
  13. }
  14. return hit;
  15. }

相关文章