pyvista.Property.lighting# property Property.lighting: bool[source]# Return or set view direction lighting. Examples Get the default lighting and visualize it >>> import pyvista as pv >>> prop = pv.Property() >>> prop.lighting True >>> prop.plot() Static Scene Interactive Scene Visualize disabled lighting. >>> prop.lighting = False >>> prop.plot() Static Scene Interactive Scene