HemisphereLight.d.ts 311 B

1234567891011121314
  1. import { Color } from './../math/Color';
  2. import { Light } from './Light';
  3. export class HemisphereLight extends Light {
  4. constructor(
  5. skyColor?: Color | string | number,
  6. groundColor?: Color | string | number,
  7. intensity?: number
  8. );
  9. skyColor: Color;
  10. groundColor: Color;
  11. intensity: number;
  12. }