enterOverTheShoulderMode method
- RaliPosition position,
- double bearing
//////////// //////////// Enters over-the-shoulder view mode
Implementation
// I.D - Camera Mode Methods
///////////////
/// Enters over-the-shoulder view mode
Future<void> enterOverTheShoulderMode(RaliPosition position, double bearing) async {
// Clear animation state
_isCameraAnimating = false;
await flyToLocationWithBearing(
position,
bearing: bearing,
zoom: _otsZoom,
pitch: _otsPitch,
);
}