ModificationPhase

public enum ModificationPhase

To achieve a predictable order for biome modifiers, and to aid with mod compatibility, modifiers need to declare the phase in which they will be applied.

This will result in the following order:

  1. Additions to biomes
  2. Removals from biomes
  3. Replacements (removal + add) in biomes
  4. Generic post-processing of biomes

Experimental feature, may be removed or changed without further notice.

Entries

ADDITIONS
Link copied to clipboard
ADDITIONS
The appropriate phase for enriching biomes by adding to them without relying onother information in the biome, or removing other features.
REMOVALS
Link copied to clipboard
REMOVALS
The appropriate phase for modifiers that remove features or other aspects of biomes (i.e.
REPLACEMENTS
Link copied to clipboard
REPLACEMENTS
The appropriate phase for modifiers that replace existing features with modified features.
POST_PROCESSING
Link copied to clipboard
POST_PROCESSING
The appropriate phase for modifiers that perform wide-reaching biome postprocessing.

Functions

describeConstable
Link copied to clipboard
abstract Optional<? extends ConstantDescdescribeConstable()
valueOf
Link copied to clipboard
static ModificationPhase valueOf(String name)
values
Link copied to clipboard
static Array<ModificationPhasevalues()

Sources

jvm source
Link copied to clipboard