features

fun features(index: GenerationStep.Decoration, vararg placedFeatures: PlacedFeature)

Adds multiple PlacedFeatures at the specified GenerationStep.Decoration to the list of features this BiomeInjection should add.


fun features(index: GenerationStep.Decoration, vararg placedFeatures: Holder<PlacedFeature>)

Adds multiple PlacedFeatures via Holders that either already contain a PlacedFeature, or are set later by the PlacedFeature Registry at the specified GenerationStep.Decoration to the list of features this BiomeInjection should add.

For more information on features, check out their docs page.


fun features(index: GenerationStep.Decoration, vararg placedFeatureIds: ResourceLocation)

Adds multiple PlacedFeatures to the list of features via their ResourceLocation to the list of features this BiomeInjection should add. If a PlacedFeature is not yet registered, an empty Holder will be created and the PlacedFeature will be set later by the PlacedFeature Registry.

For more information on features, check out their docs page.


fun features(index: GenerationStep.Decoration, vararg placedFeatureKeys: ResourceKey<PlacedFeature>)

Adds multiple PlacedFeatures to the list of features via their ResourceKey to the list of features this BiomeInjection should add. If a PlacedFeature is not yet registered, an empty Holder will be created and the PlacedFeature will be set later by the PlacedFeature Registry.

For more information on features, check out their docs page.