directional light in three js
In three js there is an option to use directional light with is one of several types of light to choose from. A directional light is like ambient light in the sense that it is a good way to go about simulating day light, but it is not the same thing as the light is coming from a certain direction to a certain target location, rather than just a base light intensity for all materials in a scene as is the case with ambient light. A directional light is also like a spot light in the sense that it is coming from a certain location to a certain target location, but not in a cone like manner.
1 - Directional Light threejs example
So here we have a basic example of a directional light as a way to have some light in a scene that will work with a material that responds to light. To create an instance of directional light in three js I just need to call the THREE.DirectionalLight constructor. When calling the constructor I can pass a color as the fist argument, and an intensity level as a value between zero and one as the second argument.
|
|
By default the position of the directional light is 0,1,0 and the target of the directional light is the origin at 0,0,0.
2 - Moving a directional light
A directional light like most lights and objects that are placed in a scene in three js inherits from the object 3d class, so it has a position property than can be used to set the position of the directional light to a point other than that of the default position.
|
|
Changing the position of the directional light is just on f two points of interest when it comes to changing the direction of the light. The other point of interest is the target property of the directional light that can also be changed to something other than the default as well.