use of com.talosvfx.talos.editor.dialogs.BatchConvertDialog in project talos by rockbite.
the class UIStage method init.
public void init() {
fullScreenTable = new Table();
fullScreenTable.setFillParent(true);
stage.addActor(fullScreenTable);
defaults();
constructMenu();
constructTabPane();
constructSplitPanes();
initFileChoosers();
batchConvertDialog = new BatchConvertDialog();
settingsDialog = new SettingsDialog();
newProjectDialog = new NewProjectDialog();
FileHandle list = Gdx.files.internal("modules.xml");
XmlReader xmlReader = new XmlReader();
XmlReader.Element root = xmlReader.parse(list);
WrapperRegistry.map.clear();
moduleListPopup = new ModuleListPopup(root);
colorPicker = new ColorPicker();
colorPicker.padTop(32);
colorPicker.padLeft(16);
colorPicker.setHeight(330);
colorPicker.setWidth(430);
colorPicker.padRight(26);
}
Aggregations