PMREMGeneratorOptions constructor

PMREMGeneratorOptions({
  1. Vector3? position,
  2. int size = 256,
})

Implementation

PMREMGeneratorOptions({
  Vector3? position,
  this.size = 256,
}){
  this.position = position ?? _origin;
}