IrradianceVolumeComponent constructor

IrradianceVolumeComponent({
  1. Vector3? extents,
  2. Vector3? resolution,
  3. double priority = 0.0,
  4. double? intensity,
  5. double? hysteresis,
  6. double? visibility,
  7. IrradianceFieldBake? bake,
})

Implementation

IrradianceVolumeComponent({
  Vector3? extents,
  Vector3? resolution,
  this.priority = 0.0,
  this.intensity,
  this.hysteresis,
  this.visibility,
  this.bake,
}) : extents = extents ?? Vector3.all(10.0),
     resolution = resolution ?? Vector3(16, 8, 16);