Buckets:
| import { Light } from './Light.js'; | |
| import { Color } from '../math/Color.js'; | |
| import { Object3D } from '../core/Object3D.js'; | |
| class HemisphereLight extends Light { | |
| constructor( skyColor, groundColor, intensity ) { | |
| super( skyColor, intensity ); | |
| this.isHemisphereLight = true; | |
| this.type = 'HemisphereLight'; | |
| this.position.copy( Object3D.DEFAULT_UP ); | |
| this.updateMatrix(); | |
| this.groundColor = new Color( groundColor ); | |
| } | |
| copy( source, recursive ) { | |
| super.copy( source, recursive ); | |
| this.groundColor.copy( source.groundColor ); | |
| return this; | |
| } | |
| } | |
| export { HemisphereLight }; | |
Xet Storage Details
- Size:
- 605 Bytes
- Xet hash:
- c4a319afa03ae696490614f735edc556b631e4d9cf7f1768ace5a63a87fb4006
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.