fromJSON method

LightProbe fromJSON(
  1. dynamic json
)

Implementation

LightProbe fromJSON(json) {
  intensity = json.intensity; // TODO: Move this bit to Light.fromJSON();
  sh!.fromArray(json.sh);

  return this;
}