updateTree method

  1. @override
void updateTree(
  1. double dt
)
override

This method traverses the component tree and calls update on all its children according to their priority order, relative to the priority of the direct siblings, not the children or the ancestors.

Implementation

@override
void updateTree(double dt) {
  update(dt);
  // Do not update children: the controller will take care of it
}