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

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

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

Table.draw介绍

[英]Called to draw the background, before clipping is applied (if enabled). Default implementation draws the background drawable.
[中]调用以在应用剪裁之前绘制背景(如果启用)。默认实现可绘制背景。

代码示例

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. if (drawTitleTable) super.draw(batch, parentAlpha);
  3. }
  4. };

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

  1. protected void drawBackground (Batch batch, float parentAlpha, float x, float y) {
  2. super.drawBackground(batch, parentAlpha, x, y);
  3. // Manually draw the title table before clipping is done.
  4. titleTable.getColor().a = getColor().a;
  5. float padTop = getPadTop(), padLeft = getPadLeft();
  6. titleTable.setSize(getWidth() - padLeft - getPadRight(), padTop);
  7. titleTable.setPosition(padLeft, getHeight() - padTop);
  8. drawTitleTable = true;
  9. titleTable.draw(batch, parentAlpha);
  10. drawTitleTable = false; // Avoid drawing the title table again in drawChildren.
  11. }

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. if (drawTitleTable) super.draw(batch, parentAlpha);
  3. }
  4. };

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

  1. protected void drawBackground (Batch batch, float parentAlpha, float x, float y) {
  2. super.drawBackground(batch, parentAlpha, x, y);
  3. // Manually draw the title table before clipping is done.
  4. titleTable.getColor().a = getColor().a;
  5. float padTop = getPadTop(), padLeft = getPadLeft();
  6. titleTable.setSize(getWidth() - padLeft - getPadRight(), padTop);
  7. titleTable.setPosition(padLeft, getHeight() - padTop);
  8. drawTitleTable = true;
  9. titleTable.draw(batch, parentAlpha);
  10. drawTitleTable = false; // Avoid drawing the title table again in drawChildren.
  11. }

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. super.draw(batch, parentAlpha);
  3. }
  4. };

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

  1. protected void drawBackground (Batch batch, float parentAlpha, float x, float y) {
  2. super.drawBackground(batch, parentAlpha, x, y);
  3. // Manually draw the title table before clipping is done.
  4. titleTable.getColor().a = getColor().a;
  5. float padTop = getPadTop(), padLeft = getPadLeft();
  6. titleTable.setSize(getWidth() - padLeft - getPadRight(), padTop);
  7. titleTable.setPosition(padLeft, getHeight() - padTop);
  8. drawTitleTable = true;
  9. titleTable.draw(batch, parentAlpha);
  10. drawTitleTable = false; // Avoid drawing the title table again in drawChildren.
  11. }

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. Stage stage = getStage();
  3. if (stage.getKeyboardFocus() == null) stage.setKeyboardFocus(this);
  4. keepWithinStage();
  5. if (style.stageBackground != null) {
  6. stageToLocalCoordinates(tmpPosition.set(0, 0));
  7. stageToLocalCoordinates(tmpSize.set(stage.getWidth(), stage.getHeight()));
  8. drawStageBackground(batch, parentAlpha, getX() + tmpPosition.x, getY() + tmpPosition.y, getX() + tmpSize.x,
  9. getY() + tmpSize.y);
  10. }
  11. super.draw(batch, parentAlpha);
  12. }

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

  1. protected void drawBackground (Batch batch, float parentAlpha, float x, float y) {
  2. super.drawBackground(batch, parentAlpha, x, y);
  3. // Manually draw the title table before clipping is done.
  4. titleTable.getColor().a = getColor().a;
  5. float padTop = getPadTop(), padLeft = getPadLeft();
  6. titleTable.setSize(getWidth() - padLeft - getPadRight(), padTop);
  7. titleTable.setPosition(padLeft, getHeight() - padTop);
  8. drawTitleTable = true;
  9. titleTable.draw(batch, parentAlpha);
  10. drawTitleTable = false; // Avoid drawing the title table again in drawChildren.
  11. }

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. Stage stage = getStage();
  3. if (stage.getKeyboardFocus() == null) stage.setKeyboardFocus(this);
  4. keepWithinStage();
  5. if (style.stageBackground != null) {
  6. stageToLocalCoordinates(tmpPosition.set(0, 0));
  7. stageToLocalCoordinates(tmpSize.set(stage.getWidth(), stage.getHeight()));
  8. drawStageBackground(batch, parentAlpha, getX() + tmpPosition.x, getY() + tmpPosition.y, getX() + tmpSize.x,
  9. getY() + tmpSize.y);
  10. }
  11. super.draw(batch, parentAlpha);
  12. }

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

  1. for (int i = 0; i < children.size; i++)
  2. children.get(i).moveBy(offsetX, offsetY);
  3. super.draw(batch, parentAlpha);
  4. for (int i = 0; i < children.size; i++)
  5. children.get(i).moveBy(-offsetX, -offsetY);

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

  1. for (int i = 0; i < children.size; i++)
  2. children.get(i).moveBy(offsetX, offsetY);
  3. super.draw(batch, parentAlpha);
  4. for (int i = 0; i < children.size; i++)
  5. children.get(i).moveBy(-offsetX, -offsetY);

代码示例来源:origin: Var3D/var3dframe

  1. @Override
  2. public void draw(Batch batch, float parentAlpha)
  3. {
  4. super.draw(batch, parentAlpha);
  5. }
  6. public void setActor(Actor actor)

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. if (drawTitleTable) super.draw(batch, parentAlpha);
  3. }
  4. };

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

  1. @Override
  2. public void draw (Batch batch, float parentAlpha) {
  3. super.draw(batch, parentAlpha);
  4. if (style.border != null) style.border.draw(batch, getX(), getY(), getWidth(), getHeight());
  5. }

代码示例来源:origin: langurmonkey/gaiasky

  1. @Override
  2. public void draw(Batch batch, float parentAlpha) {
  3. super.draw(batch, parentAlpha);
  4. if (style.border != null)
  5. style.border.draw(batch, getX(), getY(), getWidth(), getHeight());
  6. }

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

  1. @Override
  2. public void draw(SpriteBatch batch, float parentAlpha) {
  3. // First draw bg
  4. if(textureBackground != null && isBackgroundTextureActive){
  5. batch.draw(textureBackground, getX(), getY(), getWidth(), getHeight());
  6. }
  7. // Then draw child actors over bg
  8. super.draw(batch, parentAlpha);
  9. }
  10. }

代码示例来源:origin: crashinvaders/gdx-texture-packer-gui

  1. @Override
  2. public void draw(Batch batch, float parentAlpha) {
  3. super.draw(batch, parentAlpha);
  4. if (focused && focusBorderEnabled && style.focusBorder != null) {
  5. Color color = getColor();
  6. batch.setColor(color.r, color.g, color.b, color.a * parentAlpha);
  7. style.focusBorder.draw(batch, getX(), getY(), getWidth(), getHeight());
  8. }
  9. }

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

  1. @Override
  2. public void draw(SpriteBatch batch, float parentAlpha) {
  3. // Then draw child actors over bg
  4. super.draw(batch, parentAlpha);
  5. // First draw bg
  6. if (textureBackground != null && isBackgroundTextureActive) {
  7. batch.draw(textureBackground, getX(), getY(), getOriginX(),
  8. getOriginY(), getWidth(), getHeight(), getScaleX(),
  9. getScaleY(), getRotation());
  10. }
  11. }
  12. }

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. Stage stage = getStage();
  3. if (stage.getKeyboardFocus() == null) stage.setKeyboardFocus(this);
  4. keepWithinStage();
  5. if (style.stageBackground != null) {
  6. stageToLocalCoordinates(tmpPosition.set(0, 0));
  7. stageToLocalCoordinates(tmpSize.set(stage.getWidth(), stage.getHeight()));
  8. drawStageBackground(batch, parentAlpha, getX() + tmpPosition.x, getY() + tmpPosition.y, getX() + tmpSize.x,
  9. getY() + tmpSize.y);
  10. }
  11. super.draw(batch, parentAlpha);
  12. }

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

  1. public void draw (Batch batch, float parentAlpha) {
  2. Stage stage = getStage();
  3. if (stage.getKeyboardFocus() == null) stage.setKeyboardFocus(this);
  4. keepWithinStage();
  5. if (style.stageBackground != null) {
  6. stageToLocalCoordinates(tmpPosition.set(0, 0));
  7. stageToLocalCoordinates(tmpSize.set(stage.getWidth(), stage.getHeight()));
  8. drawStageBackground(batch, parentAlpha, getX() + tmpPosition.x, getY() + tmpPosition.y, getX() + tmpSize.x, getY()
  9. + tmpSize.y);
  10. }
  11. super.draw(batch, parentAlpha);
  12. }

相关文章