27 lines
602 B
Java
27 lines
602 B
Java
package net.minecraft.world.level.block.state.properties;
|
|
|
|
import net.minecraft.util.StringRepresentable;
|
|
|
|
public enum Tilt implements StringRepresentable {
|
|
NONE("none", true),
|
|
UNSTABLE("unstable", false),
|
|
PARTIAL("partial", true),
|
|
FULL("full", true);
|
|
|
|
private final String name;
|
|
private final boolean causesVibration;
|
|
|
|
private Tilt(final String name, final boolean causesVibration) {
|
|
this.name = name;
|
|
this.causesVibration = causesVibration;
|
|
}
|
|
|
|
@Override
|
|
public String getSerializedName() {
|
|
return this.name;
|
|
}
|
|
|
|
public boolean causesVibration() {
|
|
return this.causesVibration;
|
|
}
|
|
}
|