Uses of Interface
dev.wyck.wrapper.worldgen.stateproviders.NoiseParameters
Packages that use NoiseParameters
-
Uses of NoiseParameters in dev.wyck.wrapper.worldgen.stateproviders
Methods in dev.wyck.wrapper.worldgen.stateproviders that return NoiseParametersModifier and TypeMethodDescriptionNoiseParameters.Builder.build()Builds the NoiseParameters.BlockStateProvider.DualNoise.parameters()Returns the value of theparametersrecord component.BlockStateProvider.Noise.parameters()Returns the value of theparametersrecord component.BlockStateProvider.NoiseThreshold.parameters()Returns the value of theparametersrecord component.BlockStateProvider.DualNoise.slowNoise()Returns the value of theslowNoiserecord component.Methods in dev.wyck.wrapper.worldgen.stateproviders with parameters of type NoiseParametersModifier and TypeMethodDescriptionstatic BlockStateProviderBlockStateProvider.dualNoise(int varietyMin, int varietyMax, NoiseParameters slowNoise, float slowScale, long seed, NoiseParameters parameters, float scale, List<BlockData> states) static BlockStateProviderBlockStateProvider.noise(long seed, NoiseParameters parameters, float scale, List<BlockData> states) static BlockStateProviderBlockStateProvider.noiseThreshold(long seed, NoiseParameters parameters, float scale, float threshold, float highChance, BlockData defaultState, List<BlockData> lowStates, List<BlockData> highStates) Constructors in dev.wyck.wrapper.worldgen.stateproviders with parameters of type NoiseParametersModifierConstructorDescriptionDualNoise(int varietyMin, int varietyMax, NoiseParameters slowNoise, float slowScale, long seed, NoiseParameters parameters, float scale, List<BlockData> states) Creates an instance of aDualNoiserecord class.Noise(long seed, NoiseParameters parameters, float scale, List<BlockData> states) Creates an instance of aNoiserecord class.NoiseThreshold(long seed, NoiseParameters parameters, float scale, float threshold, float highChance, BlockData defaultState, List<BlockData> lowStates, List<BlockData> highStates) Creates an instance of aNoiseThresholdrecord class.