run method

  1. @override
void run()
override

Run collision detection for the current state of items.

Implementation

@override
void run() {
  for (final hitbox in _scheduledUpdate) {
    broadphase.updateTransform(hitbox);
  }
  _scheduledUpdate.clear();
  super.run();
}