List of usage examples for com.badlogic.gdx.scenes.scene2d.ui CheckBox getImageCell
public Cell getImageCell()
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; }