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

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

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

Table.<init>介绍

[英]Creates a table with a skin, which enables the #add(CharSequence) and #add(CharSequence,String) methods to be used.
[中]创建一个带有皮肤的表,该表支持使用#add(CharSequence)和#add(CharSequence,String)方法。

代码示例

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

  1. Table label (String text) {
  2. Table table = new Table().debug();
  3. table.add(new Label(text, skin)).fill().expand();
  4. return table;
  5. }

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

  1. public void create () {
  2. stage = new Stage();
  3. Gdx.input.setInputProcessor(stage);
  4. root = new Table();
  5. root.setFillParent(true);
  6. stage.addActor(root);
  7. skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  8. Table labels = new Table();
  9. root.add(new ScrollPane(labels, skin)).expand().fill();
  10. root.row();
  11. root.add(drawnLabel = new Label("", skin));
  12. for (int i = 0; i < count; i++) {
  13. labels.add(new Label("Label: " + i, skin) {
  14. public void draw (Batch batch, float parentAlpha) {
  15. super.draw(batch, parentAlpha);
  16. drawn++;
  17. }
  18. });
  19. labels.row();
  20. }
  21. }

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

  1. add(contentTable = new Table(skin)).expand().fill();
  2. row();
  3. add(buttonTable = new Table(skin)).fillX();

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

  1. add(contentTable = new Table(skin)).expand().fill();
  2. row();
  3. add(buttonTable = new Table(skin)).fillX();

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

  1. private void setupUI () {
  2. Skin skin = assets.get(DEFAULT_SKIN);
  3. Table table = new Table();
  4. table.setFillParent(true);
  5. table.top().left().add(new Label("FPS ", skin)).left();
  6. table.add(fpsLabel = new Label("", skin)).left().expandX().row();
  7. ui.addActor(table);
  8. }

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

  1. TextField addressText = new TextField("", skin);
  2. Table table = new Table();
  3. stage.addActor(table);
  4. table.setSize(260, 195);
  5. Table table2 = new Table();
  6. stage.addActor(table2);
  7. table2.setFillParent(true);

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

  1. @Override
  2. public void create () {
  3. skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  4. image2 = new TextureRegion(new Texture(Gdx.files.internal("data/badlogic.jpg")));
  5. ui = new Stage();
  6. Gdx.input.setInputProcessor(ui);
  7. root = new Table();
  8. root.setSize(Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
  9. ui.addActor(root);
  10. root.debug();
  11. Image image = new Image(image2);
  12. image.setScaling(Scaling.fill);
  13. root.add(image).width(image2.getRegionWidth()).height(image2.getRegionHeight());
  14. }

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

  1. @Override
  2. public void create () {
  3. batch = new SpriteBatch();
  4. skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  5. stage = new Stage();
  6. Gdx.input.setInputProcessor(stage);
  7. Table table = new Table();
  8. stage.addActor(table);
  9. table.setPosition(200, 65);
  10. Label label1 = new Label("This text is scaled 2x.", skin);
  11. label1.setFontScale(2);
  12. Label label2 = new Label(
  13. "This text is scaled. This text is scaled. This text is scaled. This text is scaled. This text is scaled. ", skin);
  14. label2.setWrap(true);
  15. label2.setFontScale(0.75f, 0.75f);
  16. table.debug();
  17. table.add(label1);
  18. table.row();
  19. table.add(label2).fill();
  20. table.pack();
  21. }

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

  1. private void setupUi () {
  2. // setup a tiny ui with a console and a clear button.
  3. skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  4. stage = new Stage();
  5. ui = new Table();
  6. ui.setSize(Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
  7. console = new List(skin);
  8. scrollPane = new ScrollPane(console);
  9. scrollPane.setScrollbarsOnTop(true);
  10. TextButton clear = new TextButton("Clear", skin);
  11. ui.add(scrollPane).expand(true, true).fill();
  12. ui.row();
  13. ui.add(clear).expand(true, false).fill();
  14. stage.addActor(ui);
  15. clear.addListener(new ClickListener() {
  16. @Override
  17. public void clicked (InputEvent event, float x, float y) {
  18. clear();
  19. }
  20. });
  21. Gdx.input.setInputProcessor(stage);
  22. }

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

  1. public void setupUI () {
  2. ui = new Stage();
  3. skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  4. TextButton reload = new TextButton("Reload Shaders", skin.get(TextButtonStyle.class));
  5. camera = new SelectBox(skin.get(SelectBoxStyle.class));
  6. camera.setItems("Camera", "Light");
  7. fps = new Label("fps: ", skin.get(LabelStyle.class));
  8. Table table = new Table();
  9. table.setFillParent(true);
  10. table.top().padTop(15);
  11. table.add(reload).spaceRight(5);
  12. table.add(camera).spaceRight(5);
  13. table.add(fps);
  14. ui.addActor(table);
  15. reload.addListener(new ClickListener() {
  16. public void clicked (InputEvent event, float x, float y) {
  17. ShaderProgram prog = new ShaderProgram(Gdx.files.internal("data/shaders/projtex-vert.glsl").readString(), Gdx.files
  18. .internal("data/shaders/projtex-frag.glsl").readString());
  19. if (prog.isCompiled() == false) {
  20. Gdx.app.log("GLSL ERROR", "Couldn't reload shaders:\n" + prog.getLog());
  21. } else {
  22. projTexShader.dispose();
  23. projTexShader = prog;
  24. }
  25. }
  26. });
  27. }

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

  1. skin.add("default", new BitmapFont(Gdx.files.internal("data/arial-32.fnt"), false));
  2. Table root = new Table();
  3. stage.addActor(root);
  4. root.setFillParent(true);
  5. Table column1 = new Table(skin);
  6. column1.add("WHITE", "default", Color.WHITE).row();
  7. column1.add("LIGHT_GRAY", "default", Color.LIGHT_GRAY).row();
  8. column1.add("TEAL", "default", Color.TEAL).row();
  9. Table column2 = new Table(skin);
  10. column2.add("GREEN", "default", Color.GREEN).row();
  11. column2.add("CHARTREUSE", "default", Color.CHARTREUSE).row();
  12. column2.add("FIREBRICK", "default", Color.FIREBRICK).row();
  13. Table column3 = new Table(skin);
  14. column3.add("RED", "default", Color.RED).row();
  15. column3.add("SCARLET", "default", Color.SCARLET).row();

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

  1. private void createUI () {
  2. skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  3. ui = new Stage();
  4. String[] filters = new String[TextureFilter.values().length];
  5. int idx = 0;
  6. for (TextureFilter filter : TextureFilter.values()) {
  7. filters[idx++] = filter.toString();
  8. }
  9. hwMipMap = new CheckBox("Hardware Mips", skin);
  10. minFilter = new SelectBox(skin);
  11. minFilter.setItems(filters);
  12. magFilter = new SelectBox(skin.get(SelectBoxStyle.class));
  13. magFilter.setItems("Nearest", "Linear");
  14. Table table = new Table();
  15. table.setSize(ui.getWidth(), 30);
  16. table.setY(ui.getHeight() - 30);
  17. table.add(hwMipMap).spaceRight(5);
  18. table.add(new Label("Min Filter", skin)).spaceRight(5);
  19. table.add(minFilter).spaceRight(5);
  20. table.add(new Label("Mag Filter", skin)).spaceRight(5);
  21. table.add(magFilter);
  22. ui.addActor(table);
  23. }

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

  1. private void setupUI () {
  2. ui = new Stage(new ExtendViewport(640, 480));
  3. Skin skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  4. skipCleanup = new CheckBox("Skip blend function clean-up", skin);
  5. skipCleanup.addListener(listener);
  6. logLabel = new Label("", skin.get(LabelStyle.class));
  7. clearEmitters = new TextButton("Clear screen", skin);
  8. clearEmitters.addListener(listener);
  9. scaleEffects = new TextButton("Scale existing effects", skin);
  10. scaleEffects.addListener(listener);
  11. Table table = new Table();
  12. table.setTransform(false);
  13. table.setFillParent(true);
  14. table.defaults().padTop(5).left();
  15. table.top().left().padLeft(5);
  16. table.add(skipCleanup).colspan(2).row();
  17. table.add(clearEmitters).spaceRight(10);
  18. table.add(scaleEffects).row();
  19. table.add(logLabel).colspan(2);
  20. ui.addActor(table);
  21. }

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

  1. public void create () {
  2. stage = new Stage();
  3. Gdx.input.setInputProcessor(stage);
  4. Skin skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  5. Table table = new Table();
  6. table.setFillParent(true);
  7. stage.addActor(table);
  8. final Tree tree = new Tree(skin);
  9. final Node moo1 = new Node(new TextButton("moo1", skin));
  10. final Node moo2 = new Node(new TextButton("moo2", skin));
  11. final Node moo3 = new Node(new TextButton("moo3", skin));
  12. final Node moo4 = new Node(new TextButton("moo4", skin));
  13. final Node moo5 = new Node(new TextButton("moo5", skin));
  14. tree.add(moo1);
  15. tree.add(moo2);
  16. moo2.add(moo3);
  17. moo3.add(moo4);
  18. tree.add(moo5);
  19. moo5.getActor().addListener(new ClickListener() {
  20. public void clicked (InputEvent event, float x, float y) {
  21. tree.remove(moo4);
  22. }
  23. });
  24. table.add(tree).fill().expand();
  25. }

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

  1. Table table = new Table();
  2. table.setFillParent(true);
  3. stage.addActor(table);

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

  1. public void create () {
  2. stage = new Stage();
  3. Skin skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  4. label = new Label("", skin);
  5. Table root = new Table(skin);
  6. root.setFillParent(true);
  7. root.setBackground(skin.getDrawable("default-pane"));
  8. root.debug().defaults().space(6);
  9. root.add(new TextButton("Button 1", skin));
  10. root.add(new TextButton("Button 2", skin)).row();
  11. root.add("Press spacebar to change the viewport:").colspan(2).row();
  12. root.add(label).colspan(2);
  13. stage.addActor(root);
  14. viewports = getViewports(stage.getCamera());
  15. names = getViewportNames();
  16. stage.setViewport(viewports.first());
  17. label.setText(names.first());
  18. Gdx.input.setInputProcessor(new InputMultiplexer(new InputAdapter() {
  19. public boolean keyDown (int keycode) {
  20. if (keycode == Input.Keys.SPACE) {
  21. int index = (viewports.indexOf(stage.getViewport(), true) + 1) % viewports.size;
  22. label.setText(names.get(index));
  23. Viewport viewport = viewports.get(index);
  24. stage.setViewport(viewport);
  25. resize(Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
  26. }
  27. return false;
  28. }
  29. }, stage));
  30. }

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

  1. Table table = new Table(skin);
  2. table.add(musicBox);
  3. table.add(btLoop);

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

  1. Table mytable = new Table();
  2. mytable.debug();
  3. mytable.add(new Image(new Texture("data/group-debug.png")));

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

  1. longButton.debug();
  2. Table root = new Table(skin);
  3. root.setFillParent(true);
  4. root.setBackground(skin.getDrawable("default-pane"));

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

  1. Gdx.files.internal("data/badlogic.jpg"))));
  2. Table root = new Table();
  3. root.setFillParent(true);
  4. root.debug().defaults().space(6).size(110);

相关文章