Is there a method I haven't discovered yet to adjust the light intensity of directional lights dynamically? What about ambient light?
ambientLight = new THREE.AmbientLight(0xffffff);
scene.add(ambientLight);
directionalLightL = new THREE.DirectionalLight(0xffffff, dLight, 0);
directionalLightL.position.set(dlpX, dlpY, dlpZ);
scene.add(directionalLightL);
This is set up initially for rendering, but how can I modify the intensity of just one specific light later on? Remove and add the light again? Locate it in the DOM and update it? Is there something in the API that I may have overlooked?