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

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

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

Table.addActor介绍

暂无

代码示例

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

  1. /** Sets the actor in this cell and adds the actor to the cell's table. If null, removes any current actor. */
  2. public <A extends Actor> Cell<A> setActor (A newActor) {
  3. if (actor != newActor) {
  4. if (actor != null && actor.getParent() == table) actor.remove();
  5. actor = newActor;
  6. if (newActor != null) table.addActor(newActor);
  7. }
  8. return (Cell<A>)this;
  9. }

代码示例来源:origin: 121077313/cocostudio-ui-libgdx

  1. continue;
  2. table.addActor(childrenActor);

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

  1. /** Sets the actor in this cell and adds the actor to the cell's table. If null, removes any current actor. */
  2. public <A extends Actor> Cell<A> setActor (A newActor) {
  3. if (actor != newActor) {
  4. if (actor != null && actor.getParent() == table) actor.remove();
  5. actor = newActor;
  6. if (newActor != null) table.addActor(newActor);
  7. }
  8. return (Cell<A>)this;
  9. }

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

  1. if (actor != null) addActor(actor);

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

  1. if (actor != null) addActor(actor);

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

  1. /** Sets the actor in this cell and adds the actor to the cell's table. If null, removes any current actor. */
  2. public <A extends Actor> Cell<A> setActor (A newActor) {
  3. if (actor != newActor) {
  4. if (actor != null && actor.getParent() == table) actor.remove();
  5. actor = newActor;
  6. if (newActor != null) table.addActor(newActor);
  7. }
  8. return (Cell<A>)this;
  9. }

代码示例来源:origin: 121077313/cocostudio-ui-libgdx

  1. @Override
  2. public Group groupChildrenParse(CocoCreatorUIEditor editor,
  3. ObjectData widget, Group parent, Actor actor) {
  4. ScrollPane scrollPane = (ScrollPane) actor;
  5. Table table = new Table();
  6. for (ObjectData childrenWidget : widget.getChildren()) {
  7. Actor childrenActor = editor.parseWidget(table, childrenWidget);
  8. if (childrenActor == null) {
  9. continue;
  10. }
  11. table.setSize(Math.max(table.getWidth(), childrenActor.getRight()),
  12. Math.max(table.getHeight(), childrenActor.getTop()));
  13. table.addActor(childrenActor);
  14. }
  15. sort(widget, table);
  16. //
  17. scrollPane.setWidget(table);
  18. return scrollPane;
  19. }

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

  1. if (actor != null) addActor(actor);

代码示例来源:origin: 121077313/cocostudio-ui-libgdx

  1. table.addActor(bg);

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

  1. root.addActor(bg);

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

  1. root.addActor(bg);

相关文章