| 12345678910111213141516171819202122232425262728293031323334353637 |
- import { Color } from '../math/Color.js';
- class Fog {
- constructor( color, near = 1, far = 1000 ) {
- this.isFog = true;
- this.name = '';
- this.color = new Color( color );
- this.near = near;
- this.far = far;
- }
- clone() {
- return new Fog( this.color, this.near, this.far );
- }
- toJSON( /* meta */ ) {
- return {
- type: 'Fog',
- color: this.color.getHex(),
- near: this.near,
- far: this.far
- };
- }
- }
- export { Fog };
|