Source code for blenderproc.python.modules.loader.HavenEnvironmentLoaderModule

import os

from blenderproc.python.modules.loader.LoaderInterface import LoaderInterface
from blenderproc.python.loader.HavenEnvironmentLoader import set_world_background_hdr_img, get_random_world_background_hdr_img_path_from_haven


[docs]class HavenEnvironmentLoaderModule(LoaderInterface): """ This module can load hdr images as background images, which will replace the default grey background. **Configuration**: .. list-table:: :widths: 25 100 10 :header-rows: 1 * - Parameter - Description - Type * - data_path - Path to the data folder, if this was downloaded via the script without changing the output folder, \ then it is not necessary to add this value. Default: "resources/haven". - string """ def __init__(self, config): LoaderInterface.__init__(self, config)
[docs] def run(self): haven_hdri_path = get_random_world_background_hdr_img_path_from_haven( self.config.get_string("data_path", os.path.join("resources", "haven"))) set_world_background_hdr_img(haven_hdri_path)