Fog.js 231 B

123456789101112
  1. /**
  2. * @author mr.doob / http://mrdoob.com/
  3. * @author alteredq / http://alteredqualia.com/
  4. */
  5. THREE.Fog = function ( hex, near, far ) {
  6. this.color = new THREE.Color( hex );
  7. this.near = near || 1;
  8. this.far = far || 1000;
  9. };