GazePointer constructor

GazePointer({
  1. required CameraRig cameraRig,
  2. double dwellDuration = 2.0,
  3. void onDwellSelect(
    1. String nodeId
    )?,
  4. void onGazeEnter(
    1. String nodeId
    )?,
  5. void onGazeExit(
    1. String nodeId
    )?,
})

Implementation

GazePointer({
  required this.cameraRig,
  this.dwellDuration = 2.0,
  this.onDwellSelect,
  this.onGazeEnter,
  this.onGazeExit,
});