Class BooleanInputType
java.lang.Object
com.pixelmonmod.pixelmon.api.ui.type.BooleanInputType
This input type represents a single boolean input from the user
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<BooleanInputType> protected net.minecraft.network.chat.Componentprotected net.minecraft.network.chat.Componentprotected net.minecraft.network.chat.Componentprotected boolean -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedBooleanInputType(boolean value, net.minecraft.network.chat.Component label, net.minecraft.network.chat.Component trueValue, net.minecraft.network.chat.Component falseValue) -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.MapCodec<? extends InputType<?>> codec()The codec used for encoding and decoding the data when transferring between the client and serverList<net.minecraft.client.gui.layouts.Layout> static BooleanInputTypeof(boolean value, net.minecraft.network.chat.Component label) static BooleanInputTypeof(boolean value, net.minecraft.network.chat.Component label, net.minecraft.network.chat.Component trueValue, net.minecraft.network.chat.Component falseValue) Creates a new boolean input typevoidSets the value of the inputInputElementType<? extends InputType<?>> type()value()The current value of the input
-
Field Details
-
CODEC
-
label
protected net.minecraft.network.chat.Component label -
trueValue
protected net.minecraft.network.chat.Component trueValue -
falseValue
protected net.minecraft.network.chat.Component falseValue -
value
protected boolean value
-
-
Constructor Details
-
BooleanInputType
protected BooleanInputType(boolean value, net.minecraft.network.chat.Component label, net.minecraft.network.chat.Component trueValue, net.minecraft.network.chat.Component falseValue)
-
-
Method Details
-
of
-
of
public static BooleanInputType of(boolean value, net.minecraft.network.chat.Component label, net.minecraft.network.chat.Component trueValue, net.minecraft.network.chat.Component falseValue) Creates a new boolean input type- Parameters:
value- The current valuelabel- The label to display- Returns:
- The new boolean input type
-
codec
Description copied from interface:InputTypeThe codec used for encoding and decoding the data when transferring between the client and server -
type
-
value
Description copied from interface:InputTypeThe current value of the input -
setValue
Description copied from interface:InputTypeSets the value of the input -
getWidget
-