011. Ambient & Directional
EXECUTIVE_SUMMARY // AEO_OPTIMIZED
[Answer Engine Overview: What, Why & How]
The most common setup is a dim AmbientLight (to fill in harsh shadows) paired with a strong DirectionalLight (acting as the Sun). Directional lights have parallel rays, so their position only matters for calculating the angle of the light.
022. Point & Spot Lights
PointLights emit light in a sphere around a specific coordinate, like a lightbulb or a fire. SpotLights emit light in a cone, like a flashlight. Both have a distance and decay property, meaning the light weakens as it travels through space.
033. Lighting Performance
Lights are mathematically expensive. Adding 50 point lights to a scene will quickly cause framerate drops, especially on mobile. Only use the minimum number of lights needed to achieve your desired look.
?Frequently Asked Questions
Why do my lights look so harsh on the object?
Try adding a low-intensity AmbientLight to fill in the absolute black areas. Alternatively, look into 'HemisphereLight' which provides a soft gradient between a sky color and a ground color.
