Record Class BreastArmorTexture
java.lang.Object
java.lang.Record
com.wildfire.api.impl.BreastArmorTexture
- All Implemented Interfaces:
IBreastArmorTexture
public record BreastArmorTexture(org.joml.Vector2ic textureSize, UVMap uvs)
extends Record
implements IBreastArmorTexture
Default record implementation of
IBreastArmorTexture used for resource pack entries- See Also:
-
Field Summary
Fields inherited from interface IBreastArmorTexture
CODEC, DEFAULT, DEFAULT_DIMENSIONS, DEFAULT_LEFT_UV, DEFAULT_RIGHT_UV, DEFAULT_TEXTURE_SIZE, DEFAULT_UVS -
Constructor Summary
ConstructorsConstructorDescriptionBreastArmorTexture(org.joml.Vector2ic textureSize, UVMap uvs) Creates an instance of aBreastArmorTexturerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.org.joml.Vector2icReturns the value of thetextureSizerecord component.final StringtoString()Returns a string representation of this record class.uvs()Returns the value of theuvsrecord component.Methods inherited from interface IBreastArmorTexture
dimensions, leftUv, rightUv
-
Constructor Details
-
BreastArmorTexture
Creates an instance of aBreastArmorTexturerecord class.- Parameters:
textureSize- the value for thetextureSizerecord componentuvs- the value for theuvsrecord component
-
-
Method Details
-
toString
-
hashCode
-
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). -
textureSize
public org.joml.Vector2ic textureSize()Returns the value of thetextureSizerecord component.- Specified by:
textureSizein interfaceIBreastArmorTexture- Returns:
- the value of the
textureSizerecord component
-
uvs
Returns the value of theuvsrecord component.- Specified by:
uvsin interfaceIBreastArmorTexture- Returns:
- the value of the
uvsrecord component
-