setCameraManipulatorOptions abstract method

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

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

Future setCameraManipulatorOptions(
    {ManipulatorMode mode = ManipulatorMode.ORBIT,
    double orbitSpeedX = 0.01,
    double orbitSpeedY = 0.01,
    double zoomSpeed = 0.01});