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

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

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

Table.clearChildren介绍

[英]Removes all actors and cells from the table.
[中]从表中删除所有参与者和单元格。

代码示例

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

  1. /** Removes all actors and cells from the table (same as {@link #clearChildren()}) and additionally resets all table properties
  2. * and cell, column, and row defaults. */
  3. public void reset () {
  4. clearChildren();
  5. padTop = backgroundTop;
  6. padLeft = backgroundLeft;
  7. padBottom = backgroundBottom;
  8. padRight = backgroundRight;
  9. align = Align.center;
  10. debug(Debug.none);
  11. cellDefaults.reset();
  12. for (int i = 0, n = columnDefaults.size; i < n; i++) {
  13. Cell columnCell = columnDefaults.get(i);
  14. if (columnCell != null) cellPool.free(columnCell);
  15. }
  16. columnDefaults.clear();
  17. }

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

  1. /** Removes all actors and cells from the table (same as {@link #clearChildren()}) and additionally resets all table properties
  2. * and cell, column, and row defaults. */
  3. public void reset () {
  4. clearChildren();
  5. padTop = backgroundTop;
  6. padLeft = backgroundLeft;
  7. padBottom = backgroundBottom;
  8. padRight = backgroundRight;
  9. align = Align.center;
  10. debug(Debug.none);
  11. cellDefaults.reset();
  12. for (int i = 0, n = columnDefaults.size; i < n; i++) {
  13. Cell columnCell = columnDefaults.get(i);
  14. if (columnCell != null) cellPool.free(columnCell);
  15. }
  16. columnDefaults.clear();
  17. }

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

  1. /** Removes all actors and cells from the table (same as {@link #clearChildren()}) and additionally resets all table properties
  2. * and cell, column, and row defaults. */
  3. public void reset () {
  4. clearChildren();
  5. padTop = backgroundTop;
  6. padLeft = backgroundLeft;
  7. padBottom = backgroundBottom;
  8. padRight = backgroundRight;
  9. align = Align.center;
  10. debug(Debug.none);
  11. cellDefaults.reset();
  12. for (int i = 0, n = columnDefaults.size; i < n; i++) {
  13. Cell columnCell = columnDefaults.get(i);
  14. if (columnCell != null) cellPool.free(columnCell);
  15. }
  16. columnDefaults.clear();
  17. }

代码示例来源:origin: jsjolund/GdxDemo3D

  1. steerSettings.clearChildren();
  2. steerSettings.add(humanSteerSettings);
  3. steerSettings.invalidateHierarchy();
  4. steerSettings.clearChildren();
  5. steerSettings.add(dogSteerSettings);
  6. steerSettings.invalidateHierarchy();

相关文章