AtmosphericLighting constructor

AtmosphericLighting({
  1. required Vector3 sunColor,
  2. required double sunIntensity,
  3. required double environmentIntensity,
  4. required double shadowDarkness,
})

Creates an atmospheric lighting record.

Implementation

AtmosphericLighting({
  required this.sunColor,
  required this.sunIntensity,
  required this.environmentIntensity,
  required this.shadowDarkness,
});