48 lines
1.8 KiB
Java
48 lines
1.8 KiB
Java
package net.minecraft.world.level.biome;
|
|
|
|
import com.mojang.serialization.Codec;
|
|
import com.mojang.serialization.codecs.RecordCodecBuilder;
|
|
import com.mojang.serialization.codecs.RecordCodecBuilder.Instance;
|
|
import net.minecraft.core.Holder;
|
|
import net.minecraft.sounds.SoundEvent;
|
|
import net.minecraft.sounds.SoundEvents;
|
|
|
|
public class AmbientMoodSettings {
|
|
public static final Codec<AmbientMoodSettings> CODEC = RecordCodecBuilder.create(
|
|
p_47402_ -> p_47402_.group(
|
|
SoundEvent.CODEC.fieldOf("sound").forGetter(p_151650_ -> p_151650_.soundEvent),
|
|
Codec.INT.fieldOf("tick_delay").forGetter(p_151648_ -> p_151648_.tickDelay),
|
|
Codec.INT.fieldOf("block_search_extent").forGetter(p_151646_ -> p_151646_.blockSearchExtent),
|
|
Codec.DOUBLE.fieldOf("offset").forGetter(p_151644_ -> p_151644_.soundPositionOffset)
|
|
)
|
|
.apply(p_47402_, AmbientMoodSettings::new)
|
|
);
|
|
public static final AmbientMoodSettings LEGACY_CAVE_SETTINGS = new AmbientMoodSettings(SoundEvents.AMBIENT_CAVE, 6000, 8, 2.0);
|
|
private final Holder<SoundEvent> soundEvent;
|
|
private final int tickDelay;
|
|
private final int blockSearchExtent;
|
|
private final double soundPositionOffset;
|
|
|
|
public AmbientMoodSettings(Holder<SoundEvent> p_263350_, int p_263364_, int p_263333_, double p_263345_) {
|
|
this.soundEvent = p_263350_;
|
|
this.tickDelay = p_263364_;
|
|
this.blockSearchExtent = p_263333_;
|
|
this.soundPositionOffset = p_263345_;
|
|
}
|
|
|
|
public Holder<SoundEvent> getSoundEvent() {
|
|
return this.soundEvent;
|
|
}
|
|
|
|
public int getTickDelay() {
|
|
return this.tickDelay;
|
|
}
|
|
|
|
public int getBlockSearchExtent() {
|
|
return this.blockSearchExtent;
|
|
}
|
|
|
|
public double getSoundPositionOffset() {
|
|
return this.soundPositionOffset;
|
|
}
|
|
} |