void tick(double deltaTime)

Used for operations which need to be done in short intervals where deltaTime specifies the time since the last tick

Source

void tick(double deltaTime) {
   this.actors.forEach((actor) => actor.tick(deltaTime));
    }