setCameraManipulatorOptions method

  1. @override
Future setCameraManipulatorOptions({
  1. ManipulatorMode mode = ManipulatorMode.ORBIT,
  2. double orbitSpeedX = 0.01,
  3. double orbitSpeedY = 0.01,
  4. double zoomSpeed = 0.01,
})
override

Sets the options for manipulating the camera via the viewport. ManipulatorMode.FREE_FLIGHT and ManipulatorMode.MAP are currently unsupported and will throw an exception.

Implementation

@override
Future setCameraManipulatorOptions(
    {ManipulatorMode mode = ManipulatorMode.ORBIT,
    double orbitSpeedX = 0.01,
    double orbitSpeedY = 0.01,
    double zoomSpeed = 0.01}) {
  // TODO: implement setCameraManipulatorOptions
  throw UnimplementedError();
}