Example usage for com.badlogic.gdx.scenes.scene2d.utils BaseDrawable BaseDrawable

List of usage examples for com.badlogic.gdx.scenes.scene2d.utils BaseDrawable BaseDrawable

Introduction

In this page you can find the example usage for com.badlogic.gdx.scenes.scene2d.utils BaseDrawable BaseDrawable.

Prototype

public BaseDrawable() 

Source Link

Usage

From source file:io.piotrjastrzebski.sfg.screen.SkinSelectScreen.java

License:Open Source License

public SkinSelectScreen() {
    super();/*ww w  .ja  va 2  s.c om*/
    Gdx.input.setInputProcessor(new SkinSelectInputHandler(this).getIM());
    Gdx.input.setCatchBackKey(true);
    actionResolver.sendScreenView("SkinSelectScreen");
    skeletonRenderer = new SkeletonRenderer();
    background = new Background();
    select = new NinePatchDrawable(assets.getUiAtlas().createPatch("button_glow"));
    empty = new BaseDrawable();
    actionResolver.registerActionListener(this);
    initUI();
}