Uses of Class
dev.wyck.worldgen.carver.custom.CustomCarver
Packages that use CustomCarver
Package
Description
-
Uses of CustomCarver in dev.wyck.biome
Methods in dev.wyck.biome with parameters of type CustomCarverModifier and TypeMethodDescriptionBiomeGenerationSettings.Builder.carver(CustomCarver<C> carver, C config) Adds a custom carver to this biome's generation. -
Uses of CustomCarver in dev.wyck.registry.worldgen
Methods in dev.wyck.registry.worldgen with parameters of type CustomCarverModifier and TypeMethodDescriptionvoidCustomCarverRegistry.register(ResourceKey key, CustomCarver<?> carver) -
Uses of CustomCarver in dev.wyck.worldgen.carver
Methods in dev.wyck.worldgen.carver with parameters of type CustomCarverModifier and TypeMethodDescriptionstatic <C> CustomComposedCarver<C> ConfiguredWorldCarver.custom(CustomCarver<C> customCarver, C config) Composes a registered custom carver with a config instance. -
Uses of CustomCarver in dev.wyck.worldgen.carver.custom
Classes in dev.wyck.worldgen.carver.custom that implement interfaces with type arguments of type CustomCarverModifier and TypeClassDescriptionclassCustomCarver<C>Base class for an authored world carver with its own carving algorithm.Methods in dev.wyck.worldgen.carver.custom that return CustomCarverModifier and TypeMethodDescriptionprotected CustomCarver<C> CustomCarver.clone()Clones this carver.final CustomCarver<C> CustomCarver.register()Registers this carver into the CARVER registry under the key of this carver.static <C> CustomCarver<C> CustomCarver.register(ResourceKey key, CustomCarver<C> carver) Convenience method for registering a carver.Methods in dev.wyck.worldgen.carver.custom with parameters of type CustomCarverModifier and TypeMethodDescriptionstatic <C> CustomCarver<C> CustomCarver.register(ResourceKey key, CustomCarver<C> carver) Convenience method for registering a carver. -
Uses of CustomCarver in dev.wyck.worldgen.carver.types
Methods in dev.wyck.worldgen.carver.types that return CustomCarverMethods in dev.wyck.worldgen.carver.types with parameters of type CustomCarverModifier and TypeMethodDescriptionCustomComposedCarver.Builder.carver(CustomCarver<C> carver) Sets the custom carver.static <C> CustomComposedCarver<C> CustomComposedCarver.of(CustomCarver<C> carver, C config) Creates a new composed carver.