LightNode constructor

const LightNode({
  1. String type = 'directional',
  2. double intensity = 100000.0,
  3. int color = 0xFFFFFFFF,
  4. double x = 0.0,
  5. double y = 4.0,
  6. double z = 0.0,
})

Implementation

const LightNode({
  this.type = 'directional',
  this.intensity = 100000.0,
  this.color = 0xFFFFFFFF,
  this.x = 0.0,
  this.y = 4.0,
  this.z = 0.0,
});