Uses of Interface
com.bombinggames.wurfelengine.core.map.Generator
-
Packages that use Generator Package Description com.bombinggames.wurfelengine.core.map com.bombinggames.wurfelengine.core.map.Generators -
-
Uses of Generator in com.bombinggames.wurfelengine.core.map
Methods in com.bombinggames.wurfelengine.core.map that return Generator Modifier and Type Method Description static Generator
Map. getDefaultGenerator()
Get the default set generator.Generator
Map. getGenerator()
Methods in com.bombinggames.wurfelengine.core.map with parameters of type Generator Modifier and Type Method Description void
Chunk. fill(Generator generator)
Fills the chunk's block using a generator.static void
Map. setDefaultGenerator(Generator generator)
void
Map. setGenerator(Generator generator)
Set the generator used for generating mapsConstructors in com.bombinggames.wurfelengine.core.map with parameters of type Generator Constructor Description Chunk(Map map, java.io.File path, int coordX, int coordY, Generator generator)
Creates a chunk by trying to load and if this fails it generates a new one.ChunkLoader(Map map, java.io.File path, int coordX, int coordY, Generator generator)
Map(java.io.File name, int saveSlot, Generator generator)
Loads a map. -
Uses of Generator in com.bombinggames.wurfelengine.core.map.Generators
Classes in com.bombinggames.wurfelengine.core.map.Generators that implement Generator Modifier and Type Class Description class
AirGenerator
A simple generator who returns only air.class
BlockTestGenerator
A generator which uses every block at the bottom layer.class
FullMapGenerator
Fills the complete map with a block of a specific id.class
IslandGenerator
Fenerates islands
-