@Environment(value=CLIENT) public static enum SkyProperties.SkyType extends Enum<SkyProperties.SkyType>
| Enum Constant and Description |
|---|
END
Signals the renderer to draw the end sky box over the sky (as in the vanilla End).
|
NONE
Signals the renderer not to render a sky.
|
NORMAL
Signals the renderer to render a normal sky (as in the vanilla Overworld).
|
| Modifier and Type | Method and Description |
|---|---|
static SkyProperties.SkyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SkyProperties.SkyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SkyProperties.SkyType NONE
public static final SkyProperties.SkyType NORMAL
public static final SkyProperties.SkyType END
public static SkyProperties.SkyType[] values()
for (SkyProperties.SkyType c : SkyProperties.SkyType.values()) System.out.println(c);
public static SkyProperties.SkyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null