/** * @author mr.doob / http://mrdoob.com/ * @author alteredq / http://alteredqualia.com/ */ THREE.Light = function ( hex ) { THREE.Object3D.call( this ); this.color = new THREE.Color( hex ); }; THREE.Light.prototype = new THREE.Object3D(); THREE.Light.prototype.constructor = THREE.Light; THREE.Light.prototype.supr = THREE.Object3D.prototype;