1
0

FogExp2.js 247 B

1234567891011
  1. /**
  2. * @author mr.doob / http://mrdoob.com/
  3. * @author alteredq / http://alteredqualia.com/
  4. */
  5. THREE.FogExp2 = function ( hex, density ) {
  6. this.color = new THREE.Color( hex );
  7. this.density = ( density !== undefined ) ? density : 0.00025;
  8. };
粤ICP备19079148号