Record Class ClientPlayerRotationPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.client.play.ClientPlayerRotationPacket
- All Implemented Interfaces:
ClientPacket
public record ClientPlayerRotationPacket(float yaw, float pitch, byte flags)
extends Record
implements ClientPacket
-
Field Summary
-
Constructor Summary
ConstructorDescriptionClientPlayerRotationPacket
(float yaw, float pitch, boolean onGround, boolean horizontalCollision) ClientPlayerRotationPacket
(float yaw, float pitch, byte flags) Creates an instance of aClientPlayerRotationPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.byte
flags()
Returns the value of theflags
record component.final int
hashCode()
Returns a hash code value for this object.boolean
boolean
onGround()
float
pitch()
Returns the value of thepitch
record component.final String
toString()
Returns a string representation of this record class.float
yaw()
Returns the value of theyaw
record component.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
ClientPlayerRotationPacket
public ClientPlayerRotationPacket(float yaw, float pitch, boolean onGround, boolean horizontalCollision) -
ClientPlayerRotationPacket
public ClientPlayerRotationPacket(float yaw, float pitch, byte flags) Creates an instance of aClientPlayerRotationPacket
record class.- Parameters:
yaw
- the value for theyaw
record componentpitch
- the value for thepitch
record componentflags
- the value for theflags
record component
-
-
Method Details
-
onGround
public boolean onGround() -
horizontalCollision
public boolean horizontalCollision() -
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 '=='. -
yaw
public float yaw()Returns the value of theyaw
record component.- Returns:
- the value of the
yaw
record component
-
pitch
public float pitch()Returns the value of thepitch
record component.- Returns:
- the value of the
pitch
record component
-
flags
public byte flags()Returns the value of theflags
record component.- Returns:
- the value of the
flags
record component
-