AmbientLight.js 197 B

1234567891011
  1. /**
  2. * @author mrdoob / http://mrdoob.com/
  3. */
  4. THREE.AmbientLight = function ( hex ) {
  5. THREE.Light.call( this, hex );
  6. };
  7. THREE.AmbientLight.prototype = Object.create( THREE.Light.prototype );
粤ICP备19079148号