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 SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionRespawnPosAngle(Vec3 position, float yaw) Creates an instance of aRespawnPosAnglerecord class.
- 
Method SummaryModifier and TypeMethodDescriptionprivate static floatcalculateLookAtYaw(Vec3 p_344384_, BlockPos p_344719_) 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- 
positionThe field for thepositionrecord component.
- 
yawprivate final float yawThe field for theyawrecord component.
 
- 
- 
Constructor Details- 
RespawnPosAngleRespawnPosAngle(Vec3 position, float yaw) Creates an instance of aRespawnPosAnglerecord class.- Parameters:
- position- the value for the- positionrecord component
- yaw- the value for the- yawrecord component
 
 
- 
- 
Method Details- 
of
- 
calculateLookAtYaw
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
positionReturns the value of thepositionrecord component.- Returns:
- the value of the positionrecord component
 
- 
yawpublic float yaw()Returns the value of theyawrecord component.- Returns:
- the value of the yawrecord component
 
 
-