PointLightHelper.d.ts 572 B

12345678910111213141516171819202122232425262728293031
  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. /**
  12. * @default 'PointLightHelper'
  13. */
  14. type: string;
  15. light: PointLight;
  16. color: Color | string | number | undefined;
  17. matrix: Matrix4;
  18. /**
  19. * @default false
  20. */
  21. matrixAutoUpdate: boolean;
  22. dispose(): void;
  23. update(): void;
  24. }
粤ICP备19079148号