LightProbe constructor

LightProbe(
  1. dynamic sh,
  2. dynamic intensity
)

Implementation

LightProbe(sh, intensity) : super(null, intensity) {
  type = 'LightProbe';
  this.sh = (sh != null) ? sh : SphericalHarmonics3();
}