Package net.minecraft.server.level
Record Class ServerPlayer.RespawnPosAngle
java.lang.Object
java.lang.Record
net.minecraft.server.level.ServerPlayer.RespawnPosAngle
- Enclosing class:
ServerPlayer
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionRespawnPosAngle(Vec3 position, float yaw) Creates an instance of aRespawnPosAnglerecord class. -
Method Summary
Modifier and TypeMethodDescriptionprivate static floatcalculateLookAtYaw(Vec3 p_348686_, BlockPos p_348467_) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static ServerPlayer.RespawnPosAngleposition()Returns the value of thepositionrecord component.final StringtoString()Returns a string representation of this record class.floatyaw()Returns the value of theyawrecord component.
-
Field Details
-
position
The field for thepositionrecord component. -
yaw
private final float yawThe field for theyawrecord component.
-
-
Constructor Details
-
RespawnPosAngle
Creates an instance of aRespawnPosAnglerecord class.- Parameters:
position- the value for thepositionrecord componentyaw- the value for theyawrecord component
-
-
Method Details
-
of
-
calculateLookAtYaw
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
position
Returns the value of thepositionrecord component.- Returns:
- the value of the
positionrecord component
-
yaw
public float yaw()Returns the value of theyawrecord component.- Returns:
- the value of the
yawrecord component
-