Package net.minecraft.util
Record Class PlayerInput
java.lang.Object
java.lang.Record
net.minecraft.util.PlayerInput
- Record Components:
forward
-backward
-left
-right
-jump
-sneak
-sprint
-
public record PlayerInput(boolean forward, boolean backward, boolean left, boolean right, boolean jump, boolean sneak, boolean sprint)
extends Record
- Mappings:
Namespace Name named net/minecraft/util/PlayerInput
intermediary net/minecraft/class_10185
official cpu
named forward
intermediary comp_3159
official c
named backward
intermediary comp_3160
official d
named left
intermediary comp_3161
official e
named right
intermediary comp_3162
official f
named jump
intermediary comp_3163
official g
named sneak
intermediary comp_3164
official h
named sprint
intermediary comp_3165
official i
-
Field Summary
Modifier and TypeFieldDescriptionprivate final boolean
The field for thebackward
record component.private static final byte
static PlayerInput
private final boolean
The field for theforward
record component.private static final byte
private final boolean
The field for thejump
record component.private static final byte
private final boolean
The field for theleft
record component.private static final byte
static final PacketCodec
<PacketByteBuf, PlayerInput> private final boolean
The field for theright
record component.private static final byte
private final boolean
The field for thesneak
record component.private static final byte
private final boolean
The field for thesprint
record component.private static final byte
-
Constructor Summary
ConstructorDescriptionPlayerInput
(boolean bool, boolean bool2, boolean bool3, boolean bool4, boolean bool5, boolean bool6, boolean bool7) -
Method Summary
Modifier and TypeMethodDescriptionboolean
backward()
Returns the value of thebackward
record component.final boolean
Indicates whether some other object is "equal to" this one.boolean
forward()
Returns the value of theforward
record component.final int
hashCode()
Returns a hash code value for this object.boolean
jump()
Returns the value of thejump
record component.boolean
left()
Returns the value of theleft
record component.boolean
right()
Returns the value of theright
record component.boolean
sneak()
Returns the value of thesneak
record component.boolean
sprint()
Returns the value of thesprint
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
forward
private final boolean forwardThe field for theforward
record component. -
backward
private final boolean backwardThe field for thebackward
record component. -
left
private final boolean leftThe field for theleft
record component. -
right
private final boolean rightThe field for theright
record component. -
jump
private final boolean jumpThe field for thejump
record component. -
sneak
private final boolean sneakThe field for thesneak
record component. -
sprint
private final boolean sprintThe field for thesprint
record component. -
FORWARD
private static final byte FORWARD- See Also:
- Mappings:
Namespace Name Mixin selector named FORWARD
Lnet/minecraft/util/PlayerInput;FORWARD:B
intermediary field_54099
Lnet/minecraft/class_10185;field_54099:B
official j
Lcpu;j:B
-
BACKWARD
private static final byte BACKWARD- See Also:
- Mappings:
Namespace Name Mixin selector named BACKWARD
Lnet/minecraft/util/PlayerInput;BACKWARD:B
intermediary field_54100
Lnet/minecraft/class_10185;field_54100:B
official k
Lcpu;k:B
-
LEFT
private static final byte LEFT- See Also:
- Mappings:
Namespace Name Mixin selector named LEFT
Lnet/minecraft/util/PlayerInput;LEFT:B
intermediary field_54101
Lnet/minecraft/class_10185;field_54101:B
official l
Lcpu;l:B
-
RIGHT
private static final byte RIGHT- See Also:
- Mappings:
Namespace Name Mixin selector named RIGHT
Lnet/minecraft/util/PlayerInput;RIGHT:B
intermediary field_54102
Lnet/minecraft/class_10185;field_54102:B
official m
Lcpu;m:B
-
JUMP
private static final byte JUMP- See Also:
- Mappings:
Namespace Name Mixin selector named JUMP
Lnet/minecraft/util/PlayerInput;JUMP:B
intermediary field_54103
Lnet/minecraft/class_10185;field_54103:B
official n
Lcpu;n:B
-
SNEAK
private static final byte SNEAK- See Also:
- Mappings:
Namespace Name Mixin selector named SNEAK
Lnet/minecraft/util/PlayerInput;SNEAK:B
intermediary field_54104
Lnet/minecraft/class_10185;field_54104:B
official o
Lcpu;o:B
-
SPRINT
private static final byte SPRINT- See Also:
- Mappings:
Namespace Name Mixin selector named SPRINT
Lnet/minecraft/util/PlayerInput;SPRINT:B
intermediary field_54105
Lnet/minecraft/class_10185;field_54105:B
official p
Lcpu;p:B
-
PACKET_CODEC
- Mappings:
Namespace Name Mixin selector named PACKET_CODEC
Lnet/minecraft/util/PlayerInput;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_54097
Lnet/minecraft/class_10185;field_54097:Lnet/minecraft/class_9139;
official a
Lcpu;a:Lzt;
-
DEFAULT
- Mappings:
Namespace Name Mixin selector named DEFAULT
Lnet/minecraft/util/PlayerInput;DEFAULT:Lnet/minecraft/util/PlayerInput;
intermediary field_54098
Lnet/minecraft/class_10185;field_54098:Lnet/minecraft/class_10185;
official b
Lcpu;b:Lcpu;
-
-
Constructor Details
-
PlayerInput
public PlayerInput(boolean bool, boolean bool2, boolean bool3, boolean bool4, boolean bool5, boolean bool6, boolean bool7)
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
forward
public boolean forward()Returns the value of theforward
record component.- Returns:
- the value of the
forward
record component
-
backward
public boolean backward()Returns the value of thebackward
record component.- Returns:
- the value of the
backward
record component
-
left
public boolean left()Returns the value of theleft
record component.- Returns:
- the value of the
left
record component
-
right
public boolean right()Returns the value of theright
record component.- Returns:
- the value of the
right
record component
-
jump
public boolean jump()Returns the value of thejump
record component.- Returns:
- the value of the
jump
record component
-
sneak
public boolean sneak()Returns the value of thesneak
record component.- Returns:
- the value of the
sneak
record component
-
sprint
public boolean sprint()Returns the value of thesprint
record component.- Returns:
- the value of the
sprint
record component
-