onCollisionStart method
onCollisionStart is called in the first tick when this object starts
colliding with other
.
Implementation
@mustCallSuper
void onCollisionStart(Set<Vector2> intersectionPoints, T other) {
activeCollisions.add(other);
onCollisionStartCallback?.call(intersectionPoints, other);
}