CameraControls constructor

CameraControls({
  1. bool zoom = true,
  2. bool panX = true,
  3. bool panY = true,
  4. bool orbitX = true,
  5. bool orbitY = true,
})

Implementation

CameraControls({
  this.zoom = true,
  this.panX = true,
  this.panY = true,
  this.orbitX = true,
  this.orbitY = true,
});