/** * @author mr.doob / http://mrdoob.com/ */ THREE.AmbientLight = function ( hex ) { THREE.Light.call( this, hex ); }; THREE.AmbientLight.prototype = new THREE.Light(); THREE.AmbientLight.prototype.constructor = THREE.AmbientLight;