Example usage for com.badlogic.gdx.scenes.scene2d.ui CheckBox getImageCell

List of usage examples for com.badlogic.gdx.scenes.scene2d.ui CheckBox getImageCell

Introduction

In this page you can find the example usage for com.badlogic.gdx.scenes.scene2d.ui CheckBox getImageCell.

Prototype

public Cell getImageCell() 

Source Link

Usage

From source file:com.jmstudios.pointandhit.OptionsScreen.java

License:Open Source License

private CheckBox newRadioButton(String text) {
    CheckBox radioButton = new CheckBox(text, checkBoxStyle);
    radioButton.getImageCell().pad(20 * scale);
    radioButton.getImageCell().size(radioButton.getImageCell().getPrefWidth() * scale);
    return radioButton;
}