Package net.minecraft.server.network
Record Class ServerPlayerEntity.RespawnPos
java.lang.Object
java.lang.Record
net.minecraft.server.network.ServerPlayerEntity.RespawnPos
- Record Components:
pos-yaw-pitch-
- Enclosing class:
ServerPlayerEntity
private static record ServerPlayerEntity.RespawnPos(Vec3d pos, float yaw, float pitch)
extends Record
- Mappings:
Namespace Name named net/minecraft/server/network/ServerPlayerEntity$RespawnPosintermediary net/minecraft/class_3222$class_9773official awy$bnamed posintermediary comp_2811official anamed yawintermediary comp_2812official bnamed pitchintermediary comp_4914official c
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.fromCurrentPos(Vec3d respawnPos, BlockPos currentPos, float float2) private static floatfinal inthashCode()Returns a hash code value for this object.floatpitch()Returns the value of thepitchrecord component.pos()Returns the value of theposrecord component.final StringtoString()Returns a string representation of this record class.floatyaw()Returns the value of theyawrecord component.
-
Field Details
-
Constructor Details
-
RespawnPos
RespawnPos(Vec3d vec3d, float float2, float float3)
-
-
Method Details
-
fromCurrentPos
public static ServerPlayerEntity.RespawnPos fromCurrentPos(Vec3d respawnPos, BlockPos currentPos, float float2) - Mappings:
Namespace Name Mixin selector named fromCurrentPosLnet/minecraft/server/network/ServerPlayerEntity$RespawnPos;fromCurrentPos(Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/math/BlockPos;F)Lnet/minecraft/server/network/ServerPlayerEntity$RespawnPos;intermediary method_60595Lnet/minecraft/class_3222$class_9773;method_60595(Lnet/minecraft/class_243;Lnet/minecraft/class_2338;F)Lnet/minecraft/class_3222$class_9773;official aLawy$b;a(Lfoh;Lja;F)Lawy$b;
-
getYaw
- Mappings:
Namespace Name Mixin selector named getYawLnet/minecraft/server/network/ServerPlayerEntity$RespawnPos;getYaw(Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/math/BlockPos;)Fintermediary method_60596Lnet/minecraft/class_3222$class_9773;method_60596(Lnet/minecraft/class_243;Lnet/minecraft/class_2338;)Fofficial aLawy$b;a(Lfoh;Lja;)F
-
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 '=='. -
pos
Returns the value of theposrecord component.- Returns:
- the value of the
posrecord component
-
yaw
public float yaw()Returns the value of theyawrecord component.- Returns:
- the value of the
yawrecord component
-
pitch
public float pitch()Returns the value of thepitchrecord component.- Returns:
- the value of the
pitchrecord component
-