PointLightHelper.d.ts 484 B

12345678910111213141516171819202122
  1. import { PointLight } from './../lights/PointLight';
  2. import { Color } from './../math/Color';
  3. import { Matrix4 } from './../math/Matrix4';
  4. import { Object3D } from './../core/Object3D';
  5. export class PointLightHelper extends Object3D {
  6. constructor(
  7. light: PointLight,
  8. sphereSize?: number,
  9. color?: Color | string | number
  10. );
  11. light: PointLight;
  12. color: Color | string | number | undefined;
  13. matrix: Matrix4;
  14. matrixAutoUpdate: boolean;
  15. dispose(): void;
  16. update(): void;
  17. }
粤ICP备19079148号