Package net.minecraft
Record Class class_11661.class_11667
java.lang.Object
java.lang.Record
net.minecraft.class_11661.class_11667
- Record Components:
pose-entityRenderState-hitboxesRenderState-
- Enclosing class:
class_11661
@Environment(CLIENT)
public static record class_11661.class_11667(Matrix4f pose, EntityRenderState entityRenderState, EntityHitboxAndView hitboxesRenderState)
extends Record
- Mappings:
Namespace Name named net/minecraft/class_11661$class_11667intermediary net/minecraft/class_11661$class_11667official hbe$fnamed poseintermediary comp_4495official anamed entityRenderStateintermediary comp_4496official bnamed hitboxesRenderStateintermediary comp_4497official c
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final EntityRenderStateThe field for theentityRenderStaterecord component.private final EntityHitboxAndViewThe field for thehitboxesRenderStaterecord component.private final Matrix4fThe field for theposerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionclass_11667(Matrix4f matrix4f, EntityRenderState entityRenderState, EntityHitboxAndView entityHitboxAndView) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theentityRenderStaterecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thehitboxesRenderStaterecord component.pose()Returns the value of theposerecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
pose
The field for theposerecord component. -
entityRenderState
The field for theentityRenderStaterecord component. -
hitboxesRenderState
The field for thehitboxesRenderStaterecord component.
-
-
Constructor Details
-
class_11667
public class_11667(Matrix4f matrix4f, EntityRenderState entityRenderState, EntityHitboxAndView entityHitboxAndView)
-
-
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 withObjects::equals(Object,Object). -
pose
Returns the value of theposerecord component.- Returns:
- the value of the
poserecord component
-
entityRenderState
Returns the value of theentityRenderStaterecord component.- Returns:
- the value of the
entityRenderStaterecord component
-
hitboxesRenderState
Returns the value of thehitboxesRenderStaterecord component.- Returns:
- the value of the
hitboxesRenderStaterecord component
-