Buckets:
| import { Object3D } from '../core/Object3D.js'; | |
| import { Color } from '../math/Color.js'; | |
| class Light extends Object3D { | |
| constructor( color, intensity = 1 ) { | |
| super(); | |
| this.isLight = true; | |
| this.type = 'Light'; | |
| this.color = new Color( color ); | |
| this.intensity = intensity; | |
| } | |
| dispose() { | |
| // Empty here in base class; some subclasses override. | |
| } | |
| copy( source, recursive ) { | |
| super.copy( source, recursive ); | |
| this.color.copy( source.color ); | |
| this.intensity = source.intensity; | |
| return this; | |
| } | |
| toJSON( meta ) { | |
| const data = super.toJSON( meta ); | |
| data.object.color = this.color.getHex(); | |
| data.object.intensity = this.intensity; | |
| if ( this.groundColor !== undefined ) data.object.groundColor = this.groundColor.getHex(); | |
| if ( this.distance !== undefined ) data.object.distance = this.distance; | |
| if ( this.angle !== undefined ) data.object.angle = this.angle; | |
| if ( this.decay !== undefined ) data.object.decay = this.decay; | |
| if ( this.penumbra !== undefined ) data.object.penumbra = this.penumbra; | |
| if ( this.shadow !== undefined ) data.object.shadow = this.shadow.toJSON(); | |
| return data; | |
| } | |
| } | |
| export { Light }; | |
Xet Storage Details
- Size:
- 1.17 kB
- Xet hash:
- f5e18af0eec69653968152ca220a00a1e8fff5d41548614a799e88b0a130752d
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.