web3d / node_modules /three /src /lights /HemisphereLight.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
311 Bytes
import { Color } from './../math/Color';
import { Light } from './Light';
export class HemisphereLight extends Light {
constructor(
skyColor?: Color | string | number,
groundColor?: Color | string | number,
intensity?: number
);
skyColor: Color;
groundColor: Color;
intensity: number;
}