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