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

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

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

Table.isTransform介绍

暂无

代码示例

代码示例来源: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 drawDebug (ShapeRenderer shapes) {
  2. if (isTransform()) {
  3. applyTransform(shapes, computeTransform());
  4. drawDebugRects(shapes);
  5. if (clip) {
  6. shapes.flush();
  7. float x = 0, y = 0, width = getWidth(), height = getHeight();
  8. if (background != null) {
  9. x = padLeft.get(this);
  10. y = padBottom.get(this);
  11. width -= x + padRight.get(this);
  12. height -= y + padTop.get(this);
  13. }
  14. if (clipBegin(x, y, width, height)) {
  15. drawDebugChildren(shapes);
  16. clipEnd();
  17. }
  18. } else
  19. drawDebugChildren(shapes);
  20. resetTransform(shapes);
  21. } else {
  22. drawDebugRects(shapes);
  23. super.drawDebug(shapes);
  24. }
  25. }

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

  1. public void drawDebug (ShapeRenderer shapes) {
  2. if (isTransform()) {
  3. applyTransform(shapes, computeTransform());
  4. drawDebugRects(shapes);
  5. if (clip) {
  6. shapes.flush();
  7. float x = 0, y = 0, width = getWidth(), height = getHeight();
  8. if (background != null) {
  9. x = padLeft.get(this);
  10. y = padBottom.get(this);
  11. width -= x + padRight.get(this);
  12. height -= y + padTop.get(this);
  13. }
  14. if (clipBegin(x, y, width, height)) {
  15. drawDebugChildren(shapes);
  16. clipEnd();
  17. }
  18. } else
  19. drawDebugChildren(shapes);
  20. resetTransform(shapes);
  21. } else {
  22. drawDebugRects(shapes);
  23. super.drawDebug(shapes);
  24. }
  25. }

代码示例来源: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: 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 drawDebug (ShapeRenderer shapes) {
  2. if (isTransform()) {
  3. applyTransform(shapes, computeTransform());
  4. drawDebugRects(shapes);
  5. if (clip) {
  6. shapes.flush();
  7. float x = 0, y = 0, width = getWidth(), height = getHeight();
  8. if (background != null) {
  9. x = padLeft.get(this);
  10. y = padBottom.get(this);
  11. width -= x + padRight.get(this);
  12. height -= y + padTop.get(this);
  13. }
  14. if (clipBegin(x, y, width, height)) {
  15. drawDebugChildren(shapes);
  16. clipEnd();
  17. }
  18. } else
  19. drawDebugChildren(shapes);
  20. resetTransform(shapes);
  21. } else {
  22. drawDebugRects(shapes);
  23. super.drawDebug(shapes);
  24. }
  25. }

代码示例来源: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. }

相关文章