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

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

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

Table.getY介绍

暂无

代码示例

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

  1. private void drawDebugRects (ShapeRenderer shapes) {
  2. if (debugRects == null || !getDebug()) return;
  3. shapes.set(ShapeType.Line);
  4. shapes.setColor(getStage().getDebugColor());
  5. float x = 0, y = 0;
  6. if (!isTransform()) {
  7. x = getX();
  8. y = getY();
  9. }
  10. for (int i = 0, n = debugRects.size; i < n; i++) {
  11. DebugRect debugRect = debugRects.get(i);
  12. shapes.setColor(debugRect.color);
  13. shapes.rect(x + debugRect.x, y + debugRect.y, debugRect.width, debugRect.height);
  14. }
  15. }

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

  1. private void drawDebugRects (ShapeRenderer shapes) {
  2. if (debugRects == null || !getDebug()) return;
  3. shapes.set(ShapeType.Line);
  4. shapes.setColor(getStage().getDebugColor());
  5. float x = 0, y = 0;
  6. if (!isTransform()) {
  7. x = getX();
  8. y = getY();
  9. }
  10. for (int i = 0, n = debugRects.size; i < n; i++) {
  11. DebugRect debugRect = debugRects.get(i);
  12. shapes.setColor(debugRect.color);
  13. shapes.rect(x + debugRect.x, y + debugRect.y, debugRect.width, debugRect.height);
  14. }
  15. }

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. validate();
  3. if (isTransform()) {
  4. applyTransform(batch, computeTransform());
  5. drawBackground(batch, parentAlpha, 0, 0);
  6. if (clip) {
  7. batch.flush();
  8. float padLeft = this.padLeft.get(this), padBottom = this.padBottom.get(this);
  9. if (clipBegin(padLeft, padBottom, getWidth() - padLeft - padRight.get(this),
  10. getHeight() - padBottom - padTop.get(this))) {
  11. drawChildren(batch, parentAlpha);
  12. batch.flush();
  13. clipEnd();
  14. }
  15. } else
  16. drawChildren(batch, parentAlpha);
  17. resetTransform(batch);
  18. } else {
  19. drawBackground(batch, parentAlpha, getX(), getY());
  20. super.draw(batch, parentAlpha);
  21. }
  22. }

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. validate();
  3. if (isTransform()) {
  4. applyTransform(batch, computeTransform());
  5. drawBackground(batch, parentAlpha, 0, 0);
  6. if (clip) {
  7. batch.flush();
  8. float padLeft = this.padLeft.get(this), padBottom = this.padBottom.get(this);
  9. if (clipBegin(padLeft, padBottom, getWidth() - padLeft - padRight.get(this),
  10. getHeight() - padBottom - padTop.get(this))) {
  11. drawChildren(batch, parentAlpha);
  12. batch.flush();
  13. clipEnd();
  14. }
  15. } else
  16. drawChildren(batch, parentAlpha);
  17. resetTransform(batch);
  18. } else {
  19. drawBackground(batch, parentAlpha, getX(), getY());
  20. super.draw(batch, parentAlpha);
  21. }
  22. }

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

  1. topLeft.setSize(contWidth, contHeight);
  2. x = bottomLeft.getX();
  3. y = bottomLeft.getY() + bottomLeft.getHeight() + gap;
  4. topLeft.setPosition(x, y);
  5. stage.addActor(topLeft);
  6. topRight.setSize(contWidth, contHeight);
  7. x = bottomRight.getX();
  8. y = topLeft.getY();
  9. topRight.setPosition(x, y);
  10. stage.addActor(topRight);
  11. horizOnlyTop.setSize(contWidth, contHeight);
  12. x = topRight.getX();
  13. y = topRight.getY() + topRight.getHeight() + gap;
  14. horizOnlyTop.setPosition(x, y);
  15. stage.addActor(horizOnlyTop);
  16. horizOnlyBottom.setSize(contWidth, contHeight);
  17. x = topLeft.getX();
  18. y = topLeft.getY() + topLeft.getHeight() + gap;
  19. horizOnlyBottom.setPosition(x, y);
  20. stage.addActor(horizOnlyBottom);
  21. vertOnlyLeft.setSize(contWidth, contHeight);
  22. x = horizOnlyBottom.getX();
  23. y = horizOnlyBottom.getY() + horizOnlyBottom.getHeight() + gap;
  24. vertOnlyLeft.setPosition(x, y);
  25. stage.addActor(vertOnlyLeft);

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

  1. private void drawDebugRects (ShapeRenderer shapes) {
  2. if (debugRects == null || !getDebug()) return;
  3. shapes.set(ShapeType.Line);
  4. shapes.setColor(getStage().getDebugColor());
  5. float x = 0, y = 0;
  6. if (!isTransform()) {
  7. x = getX();
  8. y = getY();
  9. }
  10. for (int i = 0, n = debugRects.size; i < n; i++) {
  11. DebugRect debugRect = debugRects.get(i);
  12. shapes.setColor(debugRect.color);
  13. shapes.rect(x + debugRect.x, y + debugRect.y, debugRect.width, debugRect.height);
  14. }
  15. }

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. validate();
  3. if (isTransform()) {
  4. applyTransform(batch, computeTransform());
  5. drawBackground(batch, parentAlpha, 0, 0);
  6. if (clip) {
  7. batch.flush();
  8. float padLeft = this.padLeft.get(this), padBottom = this.padBottom.get(this);
  9. if (clipBegin(padLeft, padBottom, getWidth() - padLeft - padRight.get(this),
  10. getHeight() - padBottom - padTop.get(this))) {
  11. drawChildren(batch, parentAlpha);
  12. batch.flush();
  13. clipEnd();
  14. }
  15. } else
  16. drawChildren(batch, parentAlpha);
  17. resetTransform(batch);
  18. } else {
  19. drawBackground(batch, parentAlpha, getX(), getY());
  20. super.draw(batch, parentAlpha);
  21. }
  22. }

代码示例来源:origin: moribitotech/MTX

  1. table.setPosition(getStage().getWidth() + 50, table.getY());
  2. table.addAction(Actions.moveTo(getStage().getWidth() - 550, table.getY(), 0.9f));
  3. table.row();
  4. getStage().addActor(table);

相关文章