# Examples from pyvista.examples.downloads.download_cubemap_park
# ==============================================================

from pyvista import examples
import pyvista as pv
pl = pv.Plotter(lighting=None)
dataset = examples.download_cubemap_park()
_ = pl.add_actor(dataset.to_skybox())
pl.set_environment_texture(dataset, is_srgb=True)
pl.camera_position = 'xy'
pl.camera.zoom(0.4)
_ = pl.add_mesh(pv.Sphere(), pbr=True, roughness=0.1, metallic=0.5)
pl.show()

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code
