update method
This method is called periodically by the game engine to request that your component updates itself.
The time dt
in seconds (with microseconds precision provided by Flutter)
since the last update cycle.
This time can vary according to hardware capacity, so make sure to update
your state considering this.
All components in the tree are always updated by the same amount. The time
each one takes to update adds up to the next update cycle.
Implementation
@override
@mustCallSuper
void update(double dt) {
// Always set the camera's position to the following point.
position.setFrom(following);
// Compute the desired target to look at.
target.setFrom(position + _getForwardDirection());
}