Scene constructor

Scene({
  1. Color backgroundColor = const Color(0xFF0A0A1A),
  2. Color ambientColor = const Color(0xFF202030),
  3. double fogDensity = 0,
  4. Color fogColor = const Color(0xFF000000),
})

Implementation

Scene({
  this.backgroundColor = const Color(0xFF0A0A1A),
  this.ambientColor = const Color(0xFF202030),
  this.fogDensity = 0,
  this.fogColor = const Color(0xFF000000),
});