I have obj loader with orbitcontrol , I do not need static lighting, so that the figure is lit as it is scrolled, and the other sides are darkened a little.
I tried this:
var ambient = new THREE.AmbientLight( 0x006400); scene.add( ambient ); var directionalLight = new THREE.DirectionalLight( 0xffeedd ); directionalLight.position.set( 5, 5, 5); scene.add( directionalLight ); 
