Module technology.sola.engine
Record Class EmissionDetails
java.lang.Object
java.lang.Record
technology.sola.engine.physics.component.particle.emitter.EmissionDetails
- Record Components:
position- the position of the particle to be emitteddirection- the direction of the particle to be emitted
Holds the position and direction details for a particle to be emitted.
-
Constructor Summary
ConstructorsConstructorDescriptionEmissionDetails(Vector2D position, Vector2D direction) Creates an instance of aEmissionDetailsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedirectionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.position()Returns the value of thepositionrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
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). -
position
Returns the value of thepositionrecord component.- Returns:
- the value of the
positionrecord component
-
direction
Returns the value of thedirectionrecord component.- Returns:
- the value of the
directionrecord component
-