PointLight constructor

PointLight(
  1. String name,
  2. Vector3 pos,
  3. Vector3 colorDiffuse,
  4. Vector3 colorSpecular,
  5. double range,
)

Implementation

PointLight(String name, this.pos, VM.Vector3 colorDiffuse,
    VM.Vector3 colorSpecular, this.range)
    : super(name, lightTypePoint, colorDiffuse, colorSpecular);