update method

void update(
  1. double delta
)

Render all the UpdateSystems.

Implementation

void update(double delta) {
  for (final system in systemManager.updateSystems) {
    system.update(delta);
  }
  entityManager.processRemovedEntities();
  entityManager.processRemovedComponents();
}