Light.is_scene_light#
Examples#
Download Python source code | Download Jupyter notebook
Verify that none of the lights of the default light kit are scene lights.
>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> lights = pl.renderer.lights
>>> [light.is_scene_light for light in lights]
[False, False, False, False, False]