Actor.pickable#
Examples#
Download Python source code | Download Jupyter notebook
Create an actor using the pyvista.Plotter and then make the
actor unpickable.
>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> actor = pl.add_mesh(pv.Sphere())
>>> actor.pickable = False
>>> actor.pickable
False