Module technology.sola.engine
Record Class CollisionEvent
java.lang.Object
java.lang.Record
technology.sola.engine.physics.event.CollisionEvent
- Record Components:
collisionManifold
- theCollisionManifold
for the collision that was detected
- All Implemented Interfaces:
Event
@NullMarked
public record CollisionEvent(CollisionManifold collisionManifold)
extends Record
implements Event
Event
that a collision happened that should be resolved by applying forces.-
Constructor Summary
ConstructorsConstructorDescriptionCollisionEvent
(CollisionManifold collisionManifold) Creates an instance of aCollisionEvent
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecollisionManifold
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
CollisionEvent
Creates an instance of aCollisionEvent
record class.- Parameters:
collisionManifold
- the value for thecollisionManifold
record component
-
-
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)
. -
collisionManifold
Returns the value of thecollisionManifold
record component.- Returns:
- the value of the
collisionManifold
record component
-