RectAreaLightHelper.d.ts 378 B

12345678910111213
  1. import { RectAreaLight } from './../lights/RectAreaLight';
  2. import { Color } from './../math/Color';
  3. //import { Matrix4 } from './../math/Matrix4';
  4. //import { Object3D } from './../core/Object3D';
  5. export class RectAreaLightHelper {
  6. constructor( light: RectAreaLight, color?: Color | string | number );
  7. light: RectAreaLight;
  8. color: Color | string | number | undefined;
  9. }
粤ICP备19079148号