Package com.badlogic.gdx.scenes.scene2d.utils

Examples of com.badlogic.gdx.scenes.scene2d.utils.ArraySelection


  public List (Skin skin, String styleName) {
    this(skin.get(styleName, ListStyle.class));
  }

  public List (ListStyle style) {
    selection = new ArraySelection(items);
    selection.setActor(this);
    selection.setRequired(true);

    setStyle(style);
    setSize(getPrefWidth(), getPrefHeight());
View Full Code Here


  public List (Skin skin, String styleName) {
    this(skin.get(styleName, ListStyle.class));
  }

  public List (ListStyle style) {
    selection = new ArraySelection(items);
    selection.setActor(this);
    selection.setRequired(true);

    setStyle(style);
    setSize(getPrefWidth(), getPrefHeight());
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.scenes.scene2d.utils.ArraySelection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.