use of org.pepsoft.worldpainter.importing.ImportMaskDialog in project WorldPainter by Captain-Chaos.
the class App method importMask.
private void importMask() {
List<Layer> allLayers = new ArrayList<>();
allLayers.add(Biome.INSTANCE);
allLayers.add(Annotations.INSTANCE);
allLayers.addAll(getAllLayers());
ImportMaskDialog dialog = new ImportMaskDialog(this, dimension, selectedColourScheme, allLayers);
dialog.setVisible(true);
}
Aggregations