handleCollisionEnd method

void handleCollisionEnd(
  1. PositionComponent other
)

Implementation

void handleCollisionEnd(PositionComponent other) {
  if (other is T) {
    for (final callback in _onContactExitCallbacks) {
      callback(other);
    }
  }
}